轉自 http://www.osyunwei.com/archives/9757.html 系統運維 » CentOS 7.2.1511編譯安裝Nginx1.10.1+MySQL5.7.14+PHP7.0.11
1.軟件清單、軟件包存放位置。
軟件存放位置為:/usr/local/src
軟件安裝位置為:/usr/local/softname
1、下載nginx
http://nginx.org/download/nginx-1.10.1.tar.gz
2、下載MySQL
http://cdn.mysql.com/Downloads/MySQL-5.6/mysql-5.6.33.tar.gz
3、下載php
http://cn2.php.net/distributions/php-5.6.26.tar.gz
4、下載cmake(MySQL編譯工具)
https://cmake.org/files/v3.6/cmake-3.6.2.tar.gz
5、下載pcre (支持nginx偽靜態)
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.39.tar.gz
6、下載openssl(nginx擴展)
https://www.openssl.org/source/openssl-1.0.2j.tar.gz
7、下載zlib(nginx擴展)
http://zlib.net/zlib-1.2.8.tar.gz
8、下載libmcrypt(php擴展)
http://nchc.dl.sourceforge.net/project/mcrypt/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.gz
9、下載yasm(php擴展)
http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz
10、t1lib(php擴展)
ftp://sunsite.unc.edu/pub/Linux/libs/graphics/t1lib-5.1.2.tar.gz
11、下載gd庫安裝包
https://bitbucket.org/libgd/gd-libgd/downloads/libgd-2.1.1.tar.gz
12、libvpx(gd庫需要)
http://ftp.osuosl.org/pub/blfs/conglomeration/libvpx/libvpx-1.6.0.tar.bz2
13、tiff(gd庫需要)
http://download.osgeo.org/libtiff/tiff-4.0.6.tar.gz
14、libpng(gd庫需要)
ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng16/libpng-1.6.25.tar.gz
15、freetype(gd庫需要)
http://download.savannah.gnu.org/releases/freetype/freetype-2.7.tar.gz
16、jpegsrc(gd庫需要)
http://www.ijg.org/files/jpegsrc.v9b.tar.gz
17、Boost(編譯mysql需要)
http://nchc.dl.sourceforge.net/project/boost/boost/1.59.0/boost_1_59_0.tar.gz
安裝編譯工具及庫文件(使用yum命令安裝)
yum install -y apr* autoconf automake bison bzip2 bzip2* cloog-ppl compat* cpp curl curl-devel fontconfig fontconfig-devel freetype freetype* freetype-devel gcc gcc-c++ gtk+-devel gd gettext gettext-devel glibc kernel kernel-headers keyutils keyutils-libs-devel krb5-devel libcom_err-devel libpng libpng-devel libjpeg* libsepol-devel libselinux-devel libstdc++-devel libtool* libgomp libxml2 libxml2-devel libXpm* libxml* libtiff libtiff* make mpfr ncurses* ntp openssl openssl-devel patch pcre-devel perl php-common php-gd policycoreutils telnet t1lib t1lib* nasm nasm* wget zlib-devel
關閉防火牆:
systemctl stop firewalld #關閉防火牆
syemctl disable firewalld #禁止開機自啟
一.安裝軟件
一、安裝MySQL 5.6以后My SQL要用cmake來編譯了。所以先裝cmake
1、安裝cmake
cd /usr/local/src tar zxvf cmake-3.6.2.tar.gz #解壓cmake cd cmake-3.6.2 #進入程序安裝目錄 ./configure #生成makefile文件 make #編寫安裝過程中的配置 make install #根據makefile文件進行安裝。
2、編譯安裝MySQL (轉自 wendi_0506 http://blog.csdn.net/wendi_0506/article/details/39478369/)
groupadd mysql #添加mysql組
useradd -g mysql mysql -s /bin/false #創建用戶mysql並加入到mysql組,不允許mysql用戶直接登錄系統
mkdir -p /soft_data/mysql/data/mysql #創建MySQL數據庫存放目錄
chown -R mysql:mysql /soft_data/mysql/data/mysql #設置MySQL數據庫存放目錄權限
mkdir -p /usr/local/mysql #創建MySQL安裝目錄
cd /usr/local/src #進入軟件包存放目錄
cd mysql-5.7.14 #進入目錄
- cmake \
- -DCMAKE_INSTALL_PREFIX=/usr/local/mysql \
- -DMYSQL_UNIX_ADDR=/usr/local/mysql/mysql.sock \
- -DDEFAULT_CHARSET=utf8 \
- -DDEFAULT_COLLATION=utf8_general_ci \
- -DWITH_INNOBASE_STORAGE_ENGINE=1 \
- -DWITH_ARCHIVE_STORAGE_ENGINE=1 \
- -DWITH_BLACKHOLE_STORAGE_ENGINE=1 \
- -DMYSQL_DATADIR=/soft_data/mysql/data/mysqldb \
- -DMYSQL_TCP_PORT=3306 \
- -DENABLE_DOWNLOADS=1
make
make install
| DCMAKE_INSTALL_PREFIX=dir_name | 設置mysql安裝目錄 |
| -DMYSQL_UNIX_ADDR=file_name | 設置監聽套接字路徑,這必須是一個絕對路徑名。默認為/tmp/mysql.sock |
| -DDEFAULT_CHARSET=charset_name | 設置服務器的字符集。 缺省情況下,MySQL使用latin1的(CP1252西歐)字符集。cmake/character_sets.cmake文件包含允許的字符集名稱列表。 |
| -DDEFAULT_COLLATION=collation_name | 設置服務器的排序規則。 |
| -DWITH_INNOBASE_STORAGE_ENGINE=1 -DWITH_ARCHIVE_STORAGE_ENGINE=1 -DWITH_BLACKHOLE_STORAGE_ENGINE=1 -DWITH_PERFSCHEMA_STORAGE_ENGINE=1 |
存儲引擎選項: MyISAM,MERGE,MEMORY,和CSV引擎是默認編譯到服務器中,並不需要明確地安裝。 靜態編譯一個存儲引擎到服務器,使用-DWITH_engine_STORAGE_ENGINE= 1 可用的存儲引擎值有:ARCHIVE, BLACKHOLE, EXAMPLE, FEDERATED, INNOBASE (InnoDB), PARTITION (partitioning support), 和PERFSCHEMA (Performance Schema) |
| -DMYSQL_DATADIR=dir_name | 設置mysql數據庫文件目錄 |
| -DMYSQL_TCP_PORT=port_num | 設置mysql服務器監聽端口,默認為3306 |
| -DENABLE_DOWNLOADS=bool | 是否要下載可選的文件。例如,啟用此選項(設置為1),cmake將下載谷歌所使用的測試套件運行單元測試。 |
添加mysql到環境變量
echo 'export PATH=$PATH:/usr/local/mysql/bin' >>/etc/profile #將mysql添加到shell的環境變量中 source /etc/profile #重新載入配置文件 echo $PATH #查看mysql是否加入環境變量 /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin:/usr/local/mysql/bin OK!
初始化mysql數據庫
cd /usr/local/mysql
scripts/mysql_install_db --user=mysql --datadir=/data/mysqldb
復制mysql服務啟動配置文件
cp /usr/local/mysql/support-files/my-default.cnf /etc/my.cnf 如果存在就覆蓋
復制Mysql啟動腳本
cd /usr/local/mysql/
cp support-files/mysql.server /etc/init.d/mysqld
啟動mysql服務並加入開機自啟動(可選這個步驟,以后可以自己啟動的)
service mysqld start chkconfig --level 35 mysqld on
查看一下mysql是否開啟成功
tcp6 0 0 :::3306 :::* LISTEN 25830/mysqld OK!
修改mysql root用戶密碼:
mysqladmin -u root password '123456'
下面這兩行把myslq的庫文件鏈接到系統默認的位置,這樣你在編譯類似PHP等軟件時可以不用指定mysql的庫文件地址。
ln -s /usr/local/mysql/lib/mysql /usr/lib/mysql ln -s /usr/local/mysql/include/mysql /usr/include/mysql
可能會出現的錯誤.
1、問題: Starting MySQL..The server quit without updating PID file ([FAILED]/mysql/Server03.mylinux.com.pid). 解決: 修改/etc/my.cnf 中datadir,指向正確的mysql數據庫文件目錄
2、問題:
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)
解決: 新建一個鏈接或在mysql中加入-S參數,直接指出mysql.sock位置。
ln -s /usr/local/mysql/data/mysql.sock /tmp/mysql.sock
/usr/local/mysql/bin/mysql -u root -S /usr/local/mysql/data/mysql.sock
3、問題:
MySQL問題解決:-bash:mysql:command not found
原因: 因為mysql命令的路徑在/usr/local/mysql/bin下面,所以你直接使用mysql命令時,
系統在/usr/bin下面查此命令,所以找不到了
解決辦法是: ln -s /usr/local/mysql/bin/mysql /usr/bin 做個鏈接即可
那么到此mysql就安裝、配置完了。
二、安裝Nginx
1、安裝pcre
cd /usr/local/src mkdir /usr/local/pcre tar zxvf pcre-8.39.tar.gz cd pcre-8.39 ./configure --prefix=/usr/local/pcre make make install
2、安裝openssl
cd /usr/local/src mkdir /usr/local/openssl tar zxvf openssl-1.0.2j.tar.gz cd openssl-1.0.2j ./config --prefix=/usr/local/openssl make make install
echo 'export PATH=$PATH:/usr/local/openssl/bin'>>/etc/profile source /etc/profile
3.安裝zilb
cd /usr/local/src mkdir /usr/local/zlib tar -zxf zlib-1.2.11.tar.gz cd zlib-1.2.11 ./configure --prefix=/usr/local/zlib make make install
4、安裝Nginx
groupadd www #創建一個www組 useradd -g www www -s /bin/false 同上添加一個www用戶,加入www組,不允許登錄系統 cd /usr/local/src tar zxvf nginx-1.8.0.tar.gz cd nginx-1.8.0 ./configure --prefix=/usr/local/nginx
--user=www --group=www
--with-http_stub_status_module
--with-http_ssl_module
--with-http_gzip_static_module
--with-openssl=/usr/local/src/openssl-1.0.2j --with-zlib=/usr/local/src/zlib-1.2.11 --with-pcre=/usr/local/src/pcre-8.39
注意此處的zlib和pcre是你解壓源碼包后的地址而不是安裝地址。否則會報錯
make
make install
/usr/local/nginx/sbin/nginx 啟動nginx
由於編譯安裝,沒有啟動腳本需要編寫啟動腳本放入/etc/rc.d/init.d/中 將其命名為nginx.
############################################################
#!/bin/sh
#
# nginx - this script starts and stops the nginx daemon
#
# chkconfig: - 85 15
# description: Nginx is an HTTP(S) server, HTTP(S) reverse \
# proxy and IMAP/POP3 proxy server
# processname: nginx
# config: /etc/nginx/nginx.conf
# config: /usr/local/nginx/conf/nginx.conf
# pidfile: /usr/local/nginx/logs/nginx.pid
# Source function library.
. /etc/rc.d/init.d/functions
# Source networking configuration.
. /etc/sysconfig/network
# Check that networking is up.
[ "$NETWORKING" = "no" ] && exit 0
nginx="/usr/local/nginx/sbin/nginx"
prog=$(basename $nginx)
NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf"
[ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx
lockfile=/var/lock/subsys/nginx
make_dirs() {
# make required directories
user=`$nginx -V 2>&1 | grep "configure arguments:" | sed 's/[^*]*--user=\([^ ]*\).*/\1/g' -`
if [ -z "`grep $user /etc/passwd`" ]; then
useradd -M -s /bin/nologin $user
fi
options=`$nginx -V 2>&1 | grep 'configure arguments:'`
for opt in $options; do
if [ `echo $opt | grep '.*-temp-path'` ]; then
value=`echo $opt | cut -d "=" -f 2`
if [ ! -d "$value" ]; then
# echo "creating" $value
mkdir -p $value && chown -R $user $value
fi
fi
done
}
start() {
[ -x $nginx ] || exit 5
[ -f $NGINX_CONF_FILE ] || exit 6
make_dirs
echo -n $"Starting $prog: "
daemon $nginx -c $NGINX_CONF_FILE
retval=$?
echo
[ $retval -eq 0 ] && touch $lockfile
return $retval
}
stop() {
echo -n $"Stopping $prog: "
killproc $prog -QUIT
retval=$?
echo
[ $retval -eq 0 ] && rm -f $lockfile
return $retval
}
restart() {
#configtest || return $?
stop
sleep 1
start
}
reload() {
#configtest || return $?
echo -n $"Reloading $prog: "
killproc $nginx -HUP
RETVAL=$?
echo
}
force_reload() {
restart
}
configtest() {
$nginx -t -c $NGINX_CONF_FILE
}
rh_status() {
status $prog
}
rh_status_q() {
rh_status >/dev/null 2>&1
}
case "$1" in
start)
rh_status_q && exit 0
$1
;;
stop)
rh_status_q || exit 0
$1
;;
restart|configtest)
$1
;;
reload)
rh_status_q || exit 7
$1
;;
force-reload)
force_reload
;;
status)
rh_status
;;
condrestart|try-restart)
rh_status_q || exit 0
;;
*)
echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"
exit 2
esac
############################################################
chmod 775 /etc/rc.d/init.d/nginx #賦予文件執行權限
systemctl enable nginx #開機自啟nginx
在瀏覽器中輸入服務器IP地址,會看到下面的界面,說明Nginx安裝成功。
三、安裝php
1、安裝yasm
cd /usr/local/src tar zxvf yasm-1.3.0.tar.gz cd yasm-1.3.0 ./configure make make install
2、安裝libmcrypt
cd /usr/local/src tar zxvf libmcrypt-2.5.8.tar.gz cd libmcrypt-2.5.8 ./configure make make install
3、安裝libvpx
cd /usr/local/src tar xvf libvpx-1.6.0.tar.bz2 cd libvpx-1.6.0 ./configure --prefix=/usr/local/libvpx --enable-shared --enable-vp9 make make install
4、安裝tiff
cd /usr/local/src tar zxvf tiff-4.0.6.tar.gz cd tiff-4.0.6 ./configure --prefix=/usr/local/tiff --enable-shared make make install
5、安裝libpng
cd /usr/local/src tar zxvf libpng-1.6.25.tar.gz cd libpng-1.6.25 ./configure --prefix=/usr/local/libpng --enable-shared make make install
6、安裝freetype
cd /usr/local/src tar zxvf freetype-2.7.tar.gz cd freetype-2.7 ./configure --prefix=/usr/local/freetype --enable-shared make make install
7、安裝jpeg
cd /usr/local/src tar zxvf jpegsrc.v9b.tar.gz cd jpeg-9b ./configure --prefix=/usr/local/jpeg --enable-shared make make install
8、安裝libgd (我就使用默認的)
cd /usr/local/src tar zxvf libgd-2.1.1.tar.gz cd libgd-2.1.1 ./configure --prefix=/usr/local/libgd
--enable-shared --with-jpeg=/usr/local/jpeg
--with-png=/usr/local/libpng
--with-freetype=/usr/local/freetype
--with-fontconfig=/usr/local/freetype
--with-xpm=/usr/
--with-tiff=/usr/local/tiff
--with-vpx=/usr/local/libvpx make make install
如果libgd編譯失敗,可以先跳過,直接使用系統默認的2.1.0版本,在編譯php的時候把參數--with-gd=/usr/local/libgd修改為--with-gd即可。
9、安裝t1lib
cd /usr/local/src tar zxvf t1lib-5.1.2.tar.gz cd t1lib-5.1.2 ./configure --prefix=/usr/local/t1lib --enable-shared make without_doc make install
10、安裝php
注意:如果系統是64位,請執行以下命令,否則安裝php會出錯!
\cp -frp /usr/lib64/libltdl.so* /usr/lib/ \cp -frp /usr/lib64/libXpm.so* /usr/lib/
cd /usr/local/src tar -zvxf php-7.0.11.tar.gz cd php-7.0.11 export LD_LIBRARY_PATH=/usr/local/libgd/lib #如果你安裝好了libgd你就寫這條 不然肯定沒意義。
./configure --prefix=/usr/local/php
--with-config-file-path=/usr/local/php/etc
--with-mysqli=/usr/local/mysql/bin/mysql_config
--with-mysql-sock=/tmp/mysql.sock (這里我的Mysql、是雙實例的和這不一樣所以要根據自己的來)
--with-pdo-mysql=/usr/local/mysql
--with-gd(這里的我的沒安裝好所以就選這個了)
--with-png-dir=/usr/local/libpng
--with-jpeg-dir=/usr/local/jpeg
--with-freetype-dir=/usr/local/freetype
--with-xpm-dir=/usr/lib64
--with-zlib-dir=/usr/local/zlib
--with-iconv
--enable-libxml
--enable-xml
--enable-bcmath
--enable-shmop
--enable-sysvsem
--enable-inline-optimization
--enable-opcache
--enable-mbregex
--enable-fpm
--enable-mbstring
--enable-ftp
--enable-gd-native-ttf
--with-openssl
--enable-pcntl
--enable-sockets
--with-xmlrpc
--enable-zip --enable-soap --without-pear --with-gettext --enable-session --with-mcrypt --with-curl --enable-ctype --enable-mysqlnd
make
make install
11、配置php
cp php.ini-production /usr/local/php/etc/php.ini #復制php配置文件到安裝目錄 rm -rf /etc/php.ini #刪除系統自帶配置文件 ln -s /usr/local/php/etc/php.ini /etc/php.ini #添加軟鏈接到 /etc目錄 cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf #拷貝模板文件為php-fpm配置文件 ln -s /usr/local/php/etc/php-fpm.conf /etc/php-fpm.conf #添加軟連接到 /etc目錄 vim /usr/local/php/etc/php-fpm.conf #編輯 pid = run/php-fpm.pid #取消前面的分號
user = www
group = www
:wq! #保存退出 cp /usr/local/php/etc/php-fpm.d/www.conf.default /usr/local/php/etc/php-fpm.d/www.conf vim /usr/local/php/etc/php-fpm.d/www.conf #編輯 user = www #設置php-fpm運行賬號為www group = www #設置php-fpm運行組為www 設置 php-fpm開機啟動 cp /usr/local/src/php-7.0.11/sapi/fpm/init.d.php-fpm /etc/rc.d/init.d/php-fpm #拷貝php-fpm到啟動目錄 chmod +x /etc/rc.d/init.d/php-fpm #添加執行權限 chkconfig php-fpm on #設置開機啟動 vi /usr/local/php/etc/php.ini #編輯配置文件 找到:disable_functions =
修改為:disable_functions = passthru,exec,system,chroot,scandir,chgrp,chown,
shell_exec,proc_open,proc_get_status,ini_alter,ini_alter,ini_restore,dl,
openlog,syslog,readlink,symlink,popepassthru,stream_socket_server,escapeshellcmd,
dll,popen,disk_free_space,checkdnsrr,checkdnsrr,getservbyname,
getservbyport,disk_total_space,posix_ctermid,posix_get_last_error,posix_getcwd,
posix_getegid,posix_geteuid,posix_getgid, posix_getgrgid,posix_getgrnam,posix_getgroups,
posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid, posix_getppid,posix_getpwnam,posix_getpwuid,
posix_getrlimit, posix_getsid,posix_getuid,posix_isatty, posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,
posix_setgid, posix_setpgid,posix_setsid,posix_setuid,posix_strerror,posix_times,posix_ttyname,posix_uname #列出PHP可以禁用的函數,如果某些程序需要用到這個函數,可以刪除,取消禁用。 找到:;date.timezone = 修改為:date.timezone = PRC #設置時區 找到:expose_php = On 修改為:expose_php = Off #禁止顯示php版本的信息 找到:short_open_tag = Off 修改為:short_open_tag = ON #支持php短標簽 找到opcache.enable=0 修改為opcache.enable=1 #php支持opcode緩存 找到:;opcache.enable_cli=1 #php支持opcode緩存 修改為:opcache.enable_cli=0 在最后一行添加:zend_extension=opcache.so #開啟opcode緩存功能 :wq! #保存退出
12、配置nginx支持php
vim /usr/local/nginx/conf/nginx.conf 修改/usr/local/nginx/conf/nginx.conf 配置文件,需做如下修改 user www www; #首行user去掉注釋,修改Nginx運行組為www www;必須與/usr/local/php/etc/php-fpm.conf中的user,group配置相同,否則php運行出錯
找到以下行,將location到大括號的#都刪掉同時修改SCRIPT_FILENAME后面的路徑。
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
/etc/init.d/nginx restart #重啟nginx
/etc/init.d/php-fpm restart #重啟php-fpm
終篇、測試結果
在/usr/local/nginx/html下
vim index.php <?php phpinfo(); ?> :x
chown www.www /usr/local/nginx/html/ -R #設置目錄所有者
chmod 700 /usr/local/nginx/html/ -R #設置目錄權限
在瀏覽器中打開服務器IP/index.php地址,會看到下面的界面 那么就恭喜你大功告成了!

