Lnmp 源碼編譯安裝、常見錯誤整理

来源:http://www.cnblogs.com/wangxiaoqiangs/archive/2016/03/30/5336180.html
-Advertisement-
Play Games

簡介: Lnmp 環境的搭建還是非常簡單的,之前由於博客遷移等原因,導致丟失了好多博文,這次重新整理記錄一下。 Lnmp 即:Linux 、Nginx 、Mysql 、PHP Lnmp 是一套 Web 環境,Linux 作為底層操作系統,Nginx 提供 web 服務,Mysql 提供資料庫服務,P ...



簡介:

Lnmp 環境的搭建還是非常簡單的,之前由於博客遷移等原因,導致丟失了好多博文,這次重新整理記錄一下。

Lnmp 即:Linux 、Nginx 、Mysql 、PHP

Lnmp 是一套 Web 環境,Linux 作為底層操作系統,Nginx 提供 web 服務,Mysql 提供資料庫服務,PHP 負責解析 PHP 代碼。

強烈建議宿主機記憶體大於、等於 1G ,否則建議還是安裝低版本的 Mysql 跟 PHP !!!

一、Nginx

下載地址:http://nginx.org/download/nginx-1.8.0.tar.gz # 現在最新穩定版已經發展到了 1.8.0

shell > yum -y install gcc gcc-c++ make wget zlib-devel pcre-devel openssl-devel

shell > wget http://nginx.org/download/nginx-1.8.0.tar.gz

shell > tar zxf nginx-1.8.0.tar.gz
shell > cd nginx-1.8.0
shell > ./configure --prefix=/usr/local/nginx ; make ; make install # --prefix 參數指定 Nginx 安裝路徑

shell > /usr/local/nginx/sbin/nginx # 啟動 Nginx
shell > netstat -anpt | grep nginx # 確認是否啟動
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 7520/nginx

shell > curl -I http://127.0.0.1 # 訪問成功
HTTP/1.1 200 OK
Server: nginx/1.8.0
Date: Fri, 07 Aug 2015 12:08:14 GMT
Content-Type: text/html
Content-Length: 612
Last-Modified: Fri, 07 Aug 2015 12:04:38 GMT
Connection: keep-alive
ETag: "55c49ed6-264"
Accept-Ranges: bytes

shell > iptables -I INPUT -p tcp --dport 80 -j ACCEPT
shell > service iptables save

## 至此 Nginx 就可以外網通過瀏覽器訪問了

二、Mysql ( 傳送門:http://www.cnblogs.com/wangxiaoqiangs/p/5336048.html )

三、PHP

下載地址:http://cn2.php.net/distributions/php-5.6.11.tar.gz

shell > yum -y install epel-release
shell > yum -y install gd-devel libtool libjpeg-devel libpng-devel freetype-devel libxml2-devel zlib-devel bzip2-devel libcurl-devel libxslt-devel openssl-devel glibc-devel glib2-devel libmcrypt-devel

shell > wget http://cn2.php.net/distributions/php-5.6.11.tar.gz

shell > tar zxf php-5.6.11.tar.gz
shell > cd php-5.6.11
shell > ./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php \
--with-mysql=/usr/local/mysql/ --with-mysqli=/usr/local/mysql/bin/mysql_config \
--with-gd --with-xsl --with-bz2 --with-zlib --with-curl --with-pear --without-iconv --with-mcrypt \
--with-gettext --with-openssl --with-libxml-dir --with-png-dir --with-jpeg-dir --with-freetype-dir \
--with-libdir=lib64 --enable-ftp --enable-fpm --enable-exif --enable-soap --enable-bcmath --enable-calendar \
--enable-sockets --enable-mbstring --enable-gd-native-ttf --disable-rpath --disable-debug

# 這堆參數怎麼說呢: 你也不必太在意,能解決大多數需求,有幾個需要解釋一下
# --prefix= 指定安裝路徑
# --with-config-file-path 指定 php.ini 存放位置
# --with-mysql 指定 Mysql 安裝路徑
# --enable-fpm Nginx 連接 php 全靠這個東西,如果沒有它,你的 Nginx 就不能解析 php

shell > make ; make install

shell > cp /usr/local/src/php-5.6.11/php.ini-production /usr/local/php/php.ini

shell > cp /usr/local/src/php-5.6.11/sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
shell > chmod a+x /etc/init.d/php-fpm

shell > cat /usr/local/php/etc/php-fpm.conf.default > /usr/local/php/etc/php-fpm.conf

shell > chkconfig --add php-fpm # 加入開機啟動
shell > chkconfig --level 35 php-fpm on

shell > service php-fpm start # 啟動 php-fpm
shell > netstat -anpt | grep php-fpm
tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN 71992/php-fpm

四、讓 Nginx 支持 PHP

shell > vim /usr/local/nginx/conf/nginx.conf # 修改配置文件,使其可以解析 PHP

server {
listen 80;
server_name localhost;

location / {
root html;
index index.php index.html index.htm; # 加入 index.php
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}

location ~ \.php$ { # 整段註釋去掉
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/local/nginx/html$fastcgi_script_name; # 修改為自己的根目錄
include fastcgi_params;
}
}

# 當然,這隻是讓 Nginx 支持 PHP 而已,實際工作中可以還有更多的配置

## 創建測試頁面 ( echo "<?php phpinfo(); ?>" > /usr/local/nginx/html/info.php ) , 重啟 Nginx 、php-fpm 放問測試!( 好久前測試記得需要 iptables -I INPUT -i io -j ACCEPT )

五、報錯彙總:( 記錄一些常見的錯誤及解決方法 )

1、沒有安裝 gcc 導致報錯 ( yum -y install gcc )

checking for OS
+ Linux 2.6.32-504.el6.x86_64 x86_64
checking for C compiler ... not found

./configure: error: C compiler cc is not found

 

2、沒有安裝 pcre-devel 導致報錯 ( yum -y install pcre-devel )

./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre=<path> option.

3、沒有安裝 zlib-devel 導致報錯 ( yum -y install zlib-devel )

./configure: error: the HTTP gzip module requires the zlib library.
You can either disable the module by using --without-http_gzip_module
option, or install the zlib library into the system, or build the zlib library
statically from the source with nginx by using --with-zlib=<path> option.

# 上面是關於 Nginx 的報錯

4、沒有安裝 gcc-c++ 導致報錯 ( yum -y install gcc-c++ )

CMake Error: your CXX compiler: "CMAKE_CXX_COMPILER-NOTFOUND" was not found. Please set CMAKE_CXX_COMPILER to a valid compiler path or name.

# 上面是關於 Mysql 的報錯

5、沒有安裝 libxml2-devel 導致報錯 ( yum -y install libxml2-devel )

configure: error: xml2-config not found. Please check your libxml2 installation.

6、沒有安裝 bzip2-devel 導致報錯 ( yum -y install bzip2-devel )

configure: error: Please reinstall the BZip2 distribution

7、沒有安裝 libcurl-devel 導致報錯 ( yum -y install libcurl-devel )

configure: error: Please reinstall the libcurl distribution -
easy.h should be in <curl-dir>/include/curl/

8、沒有安裝 libjpeg-devel 導致報錯 ( yum -y install libjpeg-devel )

configure: error: jpeglib.h not found.

9、沒有安裝 libpng-devel 導致報錯 ( yum -y install libpng-devel )

configure: error: png.h not found.

10、沒有安裝 freetype-devel 導致報錯 ( yum -y install freetype-devel )

configure: error: freetype-config not found.

11、沒有安裝 libmcrypt-devel 導致報錯 ( yum -y install epel-release ; yum -y install libmcrypt-devel )

configure: error: mcrypt.h not found. Please reinstall libmcrypt.

12、找不到 libmysqlclient.so.18 導致報錯 ( ln -s /usr/local/mysql/lib /usr/local/mysql/lib64 )

configure: error: Cannot find libmysqlclient under /usr/local/mysql/.
Note that the MySQL client library is not bundled anymore!

13、跟上一個錯誤有連帶性,我猜的 ( ln -s /usr/local/mysql/lib/libmysqlclient.so.18 /usr/lib64/ )

configure: error: Don't know how to define struct flock on this system, set --enable-opcache=no

14、沒有安裝 libxslt-devel 導致報錯 ( yum -y install libxslt-devel )

configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 問題: 有時候,我們在將excel表格中數據導入資料庫中時,對於表格中的數字會預設為float的數據類型,這個時候導入到資料庫中的這個表的值是正常顯示的; 然而如果你要把導入到資料庫中的表,再插入到另一個表中,並且對應的欄位如果是char、varchar或者是nvarchar等類型時,並且對應的數據 ...
  • 在mysql裡面利用str_to_date()把字元串轉換為日期 此處以表T_TGS_ALARMED的BJSJ為例,查詢當前時間在此範圍之內的數據。 insert into T_TGS_ALARMED (XH, HPZL, HPHM, BJSJ, BJLX, BJYY, KKID, DDBH, FX ...
  • 環境是阿裡雲的CentOS7.0,更新了yum源(更新yum源請參考https://help.aliyun.com/knowledge_detail/5974184.html)之後先是嘗試安裝了MySQL5.7,但是折騰了一下午沒有解決初始密碼的問題。項目進度很緊,索性推倒重來上MySQL5.7。今 ...
  • 1、squid透明代理(一臺網站伺服器和squid代理伺服器) vim /etc/squid/squid.conf http_port 3128 transparent # 透明代理關鍵字 visible_hostname 主機名 #如果主機名是預設的,沒被修改則不需要,反之則需要添加 cache_ ...
  • 簡述: 今天來研究一下 Zabbix 的主動註冊功能。 當你有十臺機器需要監控時,你手動去添加是沒有問題的。但是當你有五十臺、上百台或更多伺服器要監控時,你會怎麼做 ? Active Agent Auto-Registration 主要用於 Agent 主動且自動向 Server 註冊。很好的解決了 ...
  • 簡介: 目前流行的版本控制軟體中,SVN ( 集中式版本控制 ) 算是使用範圍更廣、且使用時間更早的一款了,現在 git ( 分散式版本控制 ) 更火爆一點。 以前寫的 SVN 文檔丟失了,簡單整理一遍。 一、SVN 的安裝 ( CentOS ) 二、SVN 基本步驟 1、創建工作目錄、版本庫 2、 ...
  • 簡介: 之前研究了 Git 單機版 ( 單兵作戰 ),今天來研究一下 Git 聯機版 ( 團隊協作 )! GitHub 是一個開源的代碼托管平臺,可以分享自己的代碼到該平臺上,讓大家參與開發或供大家使用,等。( 也可以搭建自己的 Git 倉庫,相關產品:gitlab 、coding.net ) 一、 ...
  • 簡介: Zabbix 分散式監控系統,源碼編譯安裝記錄 ( 記不得是第多少次了 ) 下載地址:http://jaist.dl.sourceforge.net/project/zabbix/ZABBIX%20Latest%20Stable/2.4.5/zabbix-2.4.5.tar.gz Lnmp ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...