nginx (「エンジン x」) は、高性能の http およびリバース プロキシ サーバー、および imap/pop3/smtp プロキシ サーバーです。 nginx は、ロシアで 2 番目にアクセス数の多いサイトである rambler.ru のために igor sysoev によって開発され、2 年半以上運営されています。 igor は、BSD のようなライセンスに基づいてソース コードをリリースします。 nginx はまだベータ版ですが、その安定性、豊富な機能セット、サンプル構成ファイル、およびシステム リソースの消費量の少なさですでに知られています。
1. php5.2.9
tar zxvf libiconv-1.13.tar.gz## に必要なサポート ライブラリをコンパイルしてインストールします。 # cd libiconv-1.13/
./configure --prefix=/usr/local
make
make install
cd ../
cd libmcrypt-2.5.8/
./configure
make
make install
/sbin/ldconfig
cd libltdl/
./configure --enable - ltdl-install
make
make install
cd ../../
cd mhash-0.9.9.9/
./configure
make
make install
cd ../
ln -s /usr/local/lib/libmcrypt.so /usr/lib/libmcrypt.so
ln -s /usr/local/lib/libmcrypt.so.4 /usr/lib/libmcrypt.so。 4
ln -s /usr/local/lib/libmcrypt.so.4.4.8 /usr/lib/libmcrypt.so.4.4.8
ln -s /usr/local/lib/libmhash.a / usr /lib/libmhash.a
ln -s /usr/local/lib/libmhash.la /usr/lib/libmhash.la
ln -s /usr/local/lib/libmhash.so /usr/lib / libmhash.so
ln -s /usr/local/lib/libmhash.so.2 /usr/lib/libmhash.so.2
ln -s /usr/local/lib/libmhash.so.2.0 . 1 /usr/lib/libmhash.so.2.0.1
cd mcrypt-2.6.8/
/sbin/ldconfig
./configure
make
make install
cd ../
2. mysql 5.1.34 拡張ライブラリ ## をコンパイルしてインストールします。 ## /usr/sbin/groupadd mysql/usr/sbin/useradd -g mysql mysql
cd mysql-5.1.34/
。 /configure --prefix=/usr/local/webserver/mysql/ --enable-assembler --with-extra-charsets=complex --enable-thread-safe-client --with-big-tables --with-readline -- with-ssl --with-embedded-server --enable-local-infile --with-plugins=innobase
make && make install
chmod w /usr/local/webserver/mysql
chown -r mysql:mysql /usr/local/webserver/mysql
cd ../
mysql のインストールはここでは省略します
tar zxvf php-5.2.9.tar.gzgzip -cd php-5.2.9-fpm-0.5.10.diff.gz | patch -d php-5.2 .9 -p1
./configure --prefix=/usr/local/webserver/php --with-config-file-path=/usr/local/ webserver/php /etc --with-mysql=/usr/local/webserver/mysql --with-mysqli=/usr/local/webserver/mysql/bin/mysql_config --with-iconv-dir=/usr/local - -with- freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-discard -path - -enable-safe-mode --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --with-curlwrappers --enable-mbregex --enable- fastcgi --enable-fpm --enable-force-cgi-redirect --enable-mbstring --with-mcrypt --with-gd --enable-gd-native-ttf --with-openssl --with-mhash - -enable- pcntl --enable-sockets --with-ldap --with-ldap-sasl
make zend_extra_libs='-liconv'
make install
cp php.ini-dist /usr/local/ webserver/php /etc/php.ini
cd ../
rm -f / usr/local/webserver/php/etc/php-fpm.confvi /usr/local/webserver/php/etc/php-fpm.conf
次のように入力します。
<値の名前="緊急再起動しきい値">10値>
<値の名前="緊急再起動間隔"> 1m
< /value>
<値の名前="rlimit_files">51200値>
<値の名前="rlimit_core">0値>
<値の名前="chroot">値>
<値の名前="chdir">値>
<値の名前="catch_workers_output">はい値>
<値の名前="max_requests">500< /value>
5、创建www用户组およびwww用户
/usr/sbin/groupadd www
/usr/sbin/useradd -g www wwwwww
六、编译インストールnginx
tar zxvf nginx-0.6.35.tar.gz
cd nginx-0.6.35/
默认インストール:
./configure
make && make install
默认情况以下、nginx は /usr/local/nginx にインストールされます。この設定は、セッション選択を設定することで変更できます。
例:
./configure --user= www --group=www --prefix=/usr/local/webserver/nginx --with-http_stub_status_module --with-http_ssl_module
make && make install
cd ../
# #七、创建fcgi.conf文件
rm -f /usr/local/webserver/nginx/conf/fcgi.confvi /usr/local/webserver/nginx/conf/fcgi .conf
fastcgi_param ゲートウェイ インターフェイス cgi/1.1;
fastcgi_param サーバー_ソフトウェア nginx;
fastcgi_param クエリ文字列 $query_string;
fastcgi_param request_method $request_method;
fastcgi_param content_type $content_type;
fastcgi_param content_length $content_length ;
fastcgi_param スクリプト ファイル名 $document_root$fastcgi_script_name;
fastcgi_param スクリプト名 $fastcgi_script_name;
fastcgi_param request_uri $request_uri;
fastcgi_param document_uri $document_uri;
fastcgi_param document_root $document_root;
fastcgi_paramサーバープロトコル $server_protocol;
fastcgi_param リモートアドレス $remote_addr;
fastcgi_param リモートポート $remote_port;
fastcgi_param サーバーアドレス $server_addr;
fastcgi_param サーバーポート $server_port;
fastcgi_param サーバー名 $server_name;
# php のみ。php が --enable-force-cgi-redirect でビルドされた場合に必要です。
fastcgi_param redirect_status 200;
八、nginx 構成文件
rm -f /usr/local/webserver/nginx/conf/nginx.conf
vi /usr/local/webserver/nginx/conf/nginx.conf
以下の内容に入る:
ユーザー www www;
worker_processes 8;
error_log /usr/local/webserver/nginx/logs/logs/nginx_error.log crit;
pid /usr/local/webserver/ nginx/logs/nginx.pid;
worker_rlimit_nofile 51200;
events {
epoll を使用;
worker_connections 51200;
}
http {
mime.types を含める;
default_type application/octet-stream;
charset utf-8;
server_names_hash_bucket_size 128;
client_header_buffer_size 32k;
large_client_header_buffers 4 32k;
client_max_body_size 8m;
sendfile オン;
tcp_nopush オン;
keepalive_timeout 60;
tcp_nolay on;
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
fastcgi_buffer_size 64k ;
fastcgi_buffers 8 64k;
fastcgi_busy_buffers_size 128k;
fastcgi_temp_file_write_size 128k;
gzip on;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_http_version 1.0;
gzip_comp_level 2;
gzip_types text/plain application/x-javascript text/css application/xml;
gzip_vary on;
#多个站点設置,ステーションポイント文件夹はnginxのhtml目录に公開する必要があり、そうでない場合は多ステーションポイント
server {
listen 80;
server_name www.v-ec.com;
root /usr/local/webserver /nginx/html/www.v-ec.com;
indexindex.phpindex.html;
#fastcgi_pass unix :/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_indexindex.php;
include fcgi.conf;
}
location ~ .* \.(gif|jpg|jpeg|png|bmp|swf)$ {
有効期限は 30 日;
}
有効期限は 6 時間です;
}
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent " $http_x_forwarded_for';
access_log logs/vec.log veclog;
}
#多站点設置、站点文件夹必须放在nginx的html目录、否多站点
server {
listen 80;
server_name www.w3cgroup.com;
root /usr/local/webserver/nginx/html/www.w3cgroup.com;
indexindex.phpindex.html;
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index インデックス。 php;
include fcgi.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
有効期限は 30 日;
}
expires 6h;
}
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" $http_x_forwarded_for';
access_log logs/w3c.log w3clog;
}
}
九、構成开机自動启动nginx php
vi /etc/rc.local在末尾增以下の内容:ulimit -shn 51200/usr/local/webserver/php/sbin/php-fpm start
/usr/local/webserver/nginx/sbin/nginx
十、拡張linux内核パラメータ
net. ipv4.tcp_keepalive_time = 300
net.ipv4.tcp_syncookies = 1
net.ipv4.tcp_tw_reuse = 1
net.ipv4.tcp_tw_recycle = 1
ここに到達すると、linux を再起動できます。予想外のメッセージが表示されます。nginx
平滑重启nginxps 補助 | grep nginx nginx のマスター プロセスに到達します。例: 5800、その後 kill
kill –hup 5800
以上がLinux+Nginx+Phpで高性能WEBサーバーを構築する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。