CentOS 7.0コンパイルインストールNginx 1.6.0+MySQL5.6.19+PHP5.5.14
21102 ワード
準備編:CentOS 7.0システムインストール構成図解チュートリアルhttp://www.osyunwei.com/archives/7829.html一、ファイアウォールを構成し、80ポート、3306ポートCentOS 7.0を開いてデフォルトでfirewallをファイアウォールとして使用しているが、ここではiptablesファイアウォールに変更する.1、firewallを閉じる:systemctl stop firewalld.サービス停止サービス#firewall起動禁止
2、iptablesファイアウォールyum install iptables-services#インストールvi/etc/sysconfig/iptables#ファイアウォールプロファイルの編集
:wq! #システムctl restartを終了するiptablesを保存する.サービス#最後にファイアウォールを再起動して構成を有効にする(古いコマンド:サービスiptables start)systemctl enable iptables.Services#ファイアウォールの起動設定(旧コマンド:chkconfig iptables on)
二、SELINUX vi/etc/selinux/config#SELINUX=enforcing#注釈消#SELINUXTYPE=targeted#注釈消SELINUX=disabled#増加:wq!#終了setenforce 0を保存して、構成をすぐに有効にします.
三、システム約定ソフトウェアソースパッケージ保管場所:/usr/local/srcソースパッケージコンパイルインストール場所:/usr/local/ソフトウェア名前
四、ダウンロードパッケージ1、ダウンロードnginx(現在の安定版)http://nginx.org/download/nginx-1.6.0.tar.gz 2、ダウンロードMySQL http://cdn.mysql.com/Downloads/MySQL-5.6/mysql-5.6.19.tar.gz 3、ダウンロードphp http://cn2.php.net/distributions/php-5.5.14.tar.gz 4、ダウンロードpcre(nginx擬似静的をサポート)ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.35.tar.gz 5、ダウンロードopenssl(nginx拡張)http://www.openssl.org/source/openssl-1.0.1h.tar.gz 6、ダウンロードzlib(nginx拡張)http://zlib.net/zlib-1.2.8.tar.gz 7、ダウンロードcmake(MySQLコンパイルツール)http://www.cmake.org/files/v2.8/cmake-2.8.11.2.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.2.0.tar.gz 10、t 1 lib(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.0.tar.gz 12、libvpx(gdライブラリ必要)https://webm.googlecode.com/files/libvpx-v1.3.0.tar.bz2,113、tiff(gdライブラリ必要)http://download.osgeo.org/libtiff/tiff-4.0.3.tar.gz,114、libpng(gdライブラリ必要)ftp://ftp.simplesystems.org/pub/png/src/libpng16/libpng-1.6.12.tar.gz,115、freetype(gdライブラリ必要)http://download.savannah.gnu.org/releases/freetype/ft2demos-2.5.3.tar.gz,116、jpegsrc(gdライブラリ必要)http://www.ijg.org/files/jpegsrc.v9a.tar.gz
以上のパッケージはWinSCPツールを使用して/usr/local/srcディレクトリ5にアップロードされます.コンパイルツールおよびライブラリファイルのインストール(yumコマンドを使用してインストール)yum install-y apr*autoconf automake bison bzip 2 bzip 2*cloog-ppl compat*cpp curl-devel fontconfig fontconfig-devel freetype freetype*freetype-develgcc-c++gk+-develgd getext getext-devel glibc kernel-headers keyutils keyutils-libs-devel krb 5-devel kkkkb 5-devel vel libcom_err-devel libpng libpng-devel libjpeg*libsepol-devel libselinux-devel libstdc++-devel libtool* libgomp libxml2 libxml2-devel libXpm* 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
インストール編以下はputtyツールでサーバにリモートログインし、コマンドラインの下で操作する一、MySQL 1のインストール、cmakeのインストール
2、MySQLのインストール
rootアカウントへのリモートアクセス権の設定:
[root@d ~]# mysql -h localhost -uroot -p mysql> Grant all privileges on *.* to 'root'@'%' identified by '68320618' with grant option; mysql> flush privileges;
二、インストールNginx 1、インストールpcre
2、Opensslのインストール
3、zlibを取り付ける
4、インストールNginx
/usr/local/nginx/sbin/nginx#Nginx vi/etc/rcを起動します.d/init.d/nginx#編集起動ファイルに次の内容を追加
:wq! #終了chmod 775/etc/rcを保存する.d/init.d/nginx#ファイル実行権限chkconfig nginx on#設定起動/etc/rc.d/init.d/nginx restart#ブラウザでサーバーIPアドレスを開くと、次のインタフェースが表示され、Nginxのインストールに成功したことを示します.3、php 1のインストール、yasmのインストール
2、libmcryptのインストール
3、libvpxをインストールする
4、インストールtiff
5、libpngのインストール
6、freetypeを取り付ける
7、jpegのインストール
8、libgdを取り付ける
9、t 1 libを取り付ける
10、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ディレクトリに追加
vi/usr/local/php/etc/php-fpm.conf#編集
:wq! #終了設定php-fpm起動cp/usr/local/src/php-5.5を保存します.14/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!#保存終了
構成nginxはphp vi/usr/local/nginx/conf/nginxをサポートする.conf修正/usr/local/nginx/conf/nginx.confプロファイルは、user www www www wwwを以下のように修正する必要があります.#最初の行userはコメントを削除し、Nginx実行グループをwww wwwに変更します./usr/local/php/etc/php-fpmとconfのuser、groupの構成は同じです.そうしないとphpはindex indexを実行しません.html index.htm index.php; #indexを追加します.php # 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; } #FastCGI serverセクションlocationのコメントをキャンセルし、fastcgi_に注意param行のパラメータを$document_に変更root$fastcgi_script_name、または絶対パスを使用
/etc/init.d/nginx restart#nginx service php-fpm start#を再起動php-fpmを起動
テスト編cd/usr/local/nginx/html/#nginxデフォルトサイトルートディレクトリrm-rf/usr/local/nginx/html/*#削除デフォルトテストページ
vi index.php#新規index.phpファイル :wq! #保存終了
chown www.www.www/usr/local/nginx/html/-R#設定ディレクトリ所有者chmod 700/usr/local/nginx/html/-R#設定ディレクトリ権限ブラウザでサーバIPアドレスを開くと、次のインタフェースが表示され、CentOS 7.0がインストールNginx 1をコンパイルする.6.0+MySQL5.6.19+PHP5.5.14チュートリアルが完了しました.
2、iptablesファイアウォールyum install iptables-services#インストールvi/etc/sysconfig/iptables#ファイアウォールプロファイルの編集
# Firewall configuration written by system-config-firewall
# Manual customization of this file is not recommended.
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
-A INPUT -p icmp -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
-A INPUT -j REJECT --reject-with icmp-host-prohibited
-A FORWARD -j REJECT --reject-with icmp-host-prohibited
COMMIT
:wq! #システムctl restartを終了するiptablesを保存する.サービス#最後にファイアウォールを再起動して構成を有効にする(古いコマンド:サービスiptables start)systemctl enable iptables.Services#ファイアウォールの起動設定(旧コマンド:chkconfig iptables on)
二、SELINUX vi/etc/selinux/config#SELINUX=enforcing#注釈消#SELINUXTYPE=targeted#注釈消SELINUX=disabled#増加:wq!#終了setenforce 0を保存して、構成をすぐに有効にします.
三、システム約定ソフトウェアソースパッケージ保管場所:/usr/local/srcソースパッケージコンパイルインストール場所:/usr/local/ソフトウェア名前
四、ダウンロードパッケージ1、ダウンロードnginx(現在の安定版)http://nginx.org/download/nginx-1.6.0.tar.gz 2、ダウンロードMySQL http://cdn.mysql.com/Downloads/MySQL-5.6/mysql-5.6.19.tar.gz 3、ダウンロードphp http://cn2.php.net/distributions/php-5.5.14.tar.gz 4、ダウンロードpcre(nginx擬似静的をサポート)ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.35.tar.gz 5、ダウンロードopenssl(nginx拡張)http://www.openssl.org/source/openssl-1.0.1h.tar.gz 6、ダウンロードzlib(nginx拡張)http://zlib.net/zlib-1.2.8.tar.gz 7、ダウンロードcmake(MySQLコンパイルツール)http://www.cmake.org/files/v2.8/cmake-2.8.11.2.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.2.0.tar.gz 10、t 1 lib(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.0.tar.gz 12、libvpx(gdライブラリ必要)https://webm.googlecode.com/files/libvpx-v1.3.0.tar.bz2,113、tiff(gdライブラリ必要)http://download.osgeo.org/libtiff/tiff-4.0.3.tar.gz,114、libpng(gdライブラリ必要)ftp://ftp.simplesystems.org/pub/png/src/libpng16/libpng-1.6.12.tar.gz,115、freetype(gdライブラリ必要)http://download.savannah.gnu.org/releases/freetype/ft2demos-2.5.3.tar.gz,116、jpegsrc(gdライブラリ必要)http://www.ijg.org/files/jpegsrc.v9a.tar.gz
以上のパッケージはWinSCPツールを使用して/usr/local/srcディレクトリ5にアップロードされます.コンパイルツールおよびライブラリファイルのインストール(yumコマンドを使用してインストール)yum install-y apr*autoconf automake bison bzip 2 bzip 2*cloog-ppl compat*cpp curl-devel fontconfig fontconfig-devel freetype freetype*freetype-develgcc-c++gk+-develgd getext getext-devel glibc kernel-headers keyutils keyutils-libs-devel krb 5-devel kkkkb 5-devel vel libcom_err-devel libpng libpng-devel libjpeg*libsepol-devel libselinux-devel libstdc++-devel libtool* libgomp libxml2 libxml2-devel libXpm* 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
インストール編以下はputtyツールでサーバにリモートログインし、コマンドラインの下で操作する一、MySQL 1のインストール、cmakeのインストール
cd /usr/local/src
tar zxvf cmake-2.8.11.2.tar.gz
cd cmake-2.8.11.2
./configure
make && make install
2、MySQLのインストール
groupadd mysql # mysql
useradd -g mysql mysql -s /bin/false # mysql mysql , mysql
mkdir -p /data/mysql # MySQL
chown -R mysql:mysql /data/mysql # MySQL
mkdir -p /usr/local/mysql # MySQL
cd /usr/local/src #
tar zxvf mysql-5.6.19.tar.gz #
cd mysql-5.6.19 #
cmake . -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DMYSQL_DATADIR=/data/mysql -DSYSCONFDIR=/etc #
make && make install #
rm -rf /etc/my.cnf # ( )
cd /usr/local/mysql # MySQL
./scripts/mysql_install_db --user=mysql --basedir=/usr/local/mysql --datadir=/data/mysql # mysql
ln -s /usr/local/mysql/my.cnf /etc/my.cnf # /etc
cp ./support-files/mysql.server /etc/rc.d/init.d/mysqld # Mysql
chmod 755 /etc/init.d/mysqld #
chkconfig mysqld on #
vi /etc/rc.d/init.d/mysqld #
basedir=/usr/local/mysql #MySQL datadir=/data/mysql #MySQl
:wq! #
service mysqld start #
vi /etc/profile # mysql :
export PATH=$PATH:/usr/local/mysql/bin
:wq! #
source /etc/profile #
myslq , PHP mysql 。
ln -s /usr/local/mysql/lib/mysql /usr/lib/mysql
ln -s /usr/local/mysql/include/mysql /usr/include/mysql
mkdir /var/lib/mysql #
ln -s /tmp/mysql.sock /var/lib/mysql/mysql.sock #
mysql_secure_installation # Mysql , Y 2
rootアカウントへのリモートアクセス権の設定:
[root@d ~]# mysql -h localhost -uroot -p mysql> Grant all privileges on *.* to 'root'@'%' identified by '68320618' with grant option; mysql> flush privileges;
二、インストールNginx 1、インストールpcre
cd /usr/local/src
mkdir /usr/local/pcre
tar zxvf pcre-8.35.tar.gz
cd pcre-8.35
./configure --prefix=/usr/local/pcre
make && make install
2、Opensslのインストール
cd /usr/local/src
mkdir /usr/local/openssl
tar zxvf openssl-1.0.1h.tar.gz
cd openssl-1.0.1h
./config --prefix=/usr/local/openssl
make && make install
vi /etc/profile
export PATH=$PATH:/usr/local/openssl/bin
:wq!
source /etc/profile
3、zlibを取り付ける
cd /usr/local/src
mkdir /usr/local/zlib
tar zxvf zlib-1.2.8.tar.gz
cd zlib-1.2.8
./configure --prefix=/usr/local/zlib
make && make install
4、インストールNginx
groupadd www
useradd -g www www -s /bin/false
cd /usr/local/src
tar zxvf nginx-1.6.0.tar.gz
cd nginx-1.6.0
./configure --prefix=/usr/local/nginx --without-http_memcached_module --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.1h --with-zlib=/usr/local/src/zlib-1.2.8 --with-pcre=/usr/local/src/pcre-8.35
:--with-openssl=/usr/local/src/openssl-1.0.1h --with-zlib=/usr/local/src/zlib-1.2.8 --with-pcre=/usr/local/src/pcre-8.35 , ,
make && make install
/usr/local/nginx/sbin/nginx#Nginx vi/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
############################################################
:wq! #終了chmod 775/etc/rcを保存する.d/init.d/nginx#ファイル実行権限chkconfig nginx on#設定起動/etc/rc.d/init.d/nginx restart#ブラウザでサーバーIPアドレスを開くと、次のインタフェースが表示され、Nginxのインストールに成功したことを示します.3、php 1のインストール、yasmのインストール
cd /usr/local/src
tar zxvf yasm-1.2.0.tar.gz
cd yasm-1.2.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-v1.3.0.tar.bz2
cd libvpx-v1.3.0
./configure --prefix=/usr/local/libvpx --enable-shared --enable-vp9
make && make install
4、インストールtiff
cd /usr/local/src
tar zxvf tiff-4.0.3.tar.gz
cd tiff-4.0.3
./configure --prefix=/usr/local/tiff --enable-shared
make && make install
5、libpngのインストール
cd /usr/local/src
tar zxvf libpng-1.6.12.tar.gz
cd libpng-1.6.12
./configure --prefix=/usr/local/libpng --enable-shared
make && make install
6、freetypeを取り付ける
cd /usr/local/src
tar zxvf freetype-2.5.3.tar.gz
(bz2 :tar jxvf freetype-2.5.3.tar.bz2)
cd freetype-2.5.3
./configure --prefix=/usr/local/freetype --enable-shared
make && make install #
7、jpegのインストール
cd /usr/local/src
tar zxvf jpegsrc.v9a.tar.gz
cd jpeg-9a
./configure --prefix=/usr/local/jpeg --enable-shared
make && make install #
8、libgdを取り付ける
cd /usr/local/src
tar zxvf libgd-2.1.0.tar.gz #
cd libgd-2.1.0 #
./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 #
9、t 1 libを取り付ける
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 (32 ), :[b@002 ~]$ getconf LONG_BIT
ln -s /usr/lib64/libltdl.so /usr/lib/libltdl.so
\cp -frp /usr/lib64/libXpm.so* /usr/lib/
cd /usr/local/src
tar -zvxf php-5.5.14.tar.gz
cd php-5.5.14
export LD_LIBRARY_PATH=/usr/local/libgd/lib
./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-mysql-sock=/tmp/mysql.sock --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/ --with-vpx-dir=/usr/local/libvpx/ --with-zlib-dir=/usr/local/zlib --with-t1lib=/usr/local/t1lib --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 #
make && make install #
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ディレクトリに追加
vi/usr/local/php/etc/php-fpm.conf#編集
user = www # php-fpm www
group = www # php-fpm www
pid = run/php-fpm.pid #
:wq! #終了設定php-fpm起動cp/usr/local/src/php-5.5を保存します.14/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!#保存終了
構成nginxはphp vi/usr/local/nginx/conf/nginxをサポートする.conf修正/usr/local/nginx/conf/nginx.confプロファイルは、user www www www wwwを以下のように修正する必要があります.#最初の行userはコメントを削除し、Nginx実行グループをwww wwwに変更します./usr/local/php/etc/php-fpmとconfのuser、groupの構成は同じです.そうしないとphpはindex indexを実行しません.html index.htm index.php; #indexを追加します.php # 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; } #FastCGI serverセクションlocationのコメントをキャンセルし、fastcgi_に注意param行のパラメータを$document_に変更root$fastcgi_script_name、または絶対パスを使用
/etc/init.d/nginx restart#nginx service php-fpm start#を再起動php-fpmを起動
テスト編cd/usr/local/nginx/html/#nginxデフォルトサイトルートディレクトリrm-rf/usr/local/nginx/html/*#削除デフォルトテストページ
vi index.php#新規index.phpファイル :wq! #保存終了
chown www.www.www/usr/local/nginx/html/-R#設定ディレクトリ所有者chmod 700/usr/local/nginx/html/-R#設定ディレクトリ権限ブラウザでサーバIPアドレスを開くと、次のインタフェースが表示され、CentOS 7.0がインストールNginx 1をコンパイルする.6.0+MySQL5.6.19+PHP5.5.14チュートリアルが完了しました.