上一課學習了LAMP架構,如今流行LNMP架構;他們的區別就是提供web服務爲apache和nginx,目前nginx發展迅速,取代apache指日可待。javascript
- LAMP=linux+apache+mysql+php
- LNMP=linux+nginx+mysql+php
當咱們講LAMP的時候PHP是做爲一個模塊在Apache中,可是在LNMP中,PHP是一個服務,當用戶請求的時候nginx會把它交給php 而後對mysql進行交互!像這種靜態的,例如圖片或者html,nginx會直接處理,從而加快訪問速度! 談到速度,其實若是一個普通的站點你是看不到什麼效果的,可是若是要是訪問一個純靜態站點,nginx就能體現出它的優點!nginx的另一個優點得益於它的高併發支持!php
和LAMP不一樣的是,提供web服務的是Nginx 而且php是做爲一個獨立服務存在的,這個服務叫作php-fpm Nginx直接處理靜態請求,動態請求會轉發給php-fpmcss
不管LAMP和LNMP架構中,M表明MySQL,都是獨立存在於架構中;所以LNMP的MySQL安裝步驟和LAMP同樣的;html
詳細查看:Linux 第17課 3、MySQL安裝java
這裏的PHP安裝和LAMP安裝PHP方法有差異,須要開啓php-fpm服務node
首先把以前編譯過的php配置刪除;刪除後就至關於php包剛解壓的時候;mysql
[root@ying01 ~]# cd /usr/local/src/ [root@ying01 src]# ls apr-1.6.3 nginx-1.4.7 apr-1.6.3.tar.gz nginx-1.4.7.tar.gz apr-util-1.6.1 php-5.6.32 apr-util-1.6.1.tar.bz2 php-5.6.32.tar.bz2 httpd-2.4.33 php-7.1.6 httpd-2.4.33.tar.gz php-7.1.6.tar.bz2 httpd-2.4.33.tar.gz.1 phpredis-develop mariadb-10.2.6-linux-glibc_214-x86_64.tar.gz phpredis-develop.zip mysql-5.6.36-linux-glibc2.5-x86_64.tar.gz [root@ying01 src]# cd php-5.6.32/ [root@ying01 php-5.6.32]# make clean find . -name \*.gcno -o -name \*.gcda | xargs rm -f find . -name \*.lo -o -name \*.o | xargs rm -f find . -name \*.la -o -name \*.a | xargs rm -f find . -name \*.so | xargs rm -f find . -name .libs -a -type d|xargs rm -rf rm -f libphp5.la sapi/cli/php sapi/cgi/php-cgi libphp5.la modules/* libs/*
此時的php-5.6.32目錄,如同剛解壓的時候時候;此時經過**./configure**進行定製相關功能,使其生成makefile;linux
[root@ying01 php-5.6.32]# ./configure --prefix=/usr/local/php-fpm --with-config-file-path=/usr/local/php-fpm/etc --enable-fpm --with-fpm-user=php-fpm --with-fpm-group=php-fpm --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-pdo-mysql=/usr/local/mysql --with-mysql-sock=/tmp/mysql.sock --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-ftp --enable-mbstring --enable-exif --with-pear --with-curl --with-openssl
相關名稱釋義:nginx
- --prefix=指定安裝位置
- --with-config-file-path=指定配置文件目錄
- --enable-fpm=啓動fpm服務
- --with-fpm-user=指定用戶
- --with-fpm-group=指定用戶組
- --with-mysql=指定mysql的路徑
自動檢查過程當中,出現如下報錯:web
configure: error: Please reinstall the libcurl distribution - easy.h should be in <curl-dir>/include/curl/
需安裝devel安裝包,安裝完從新加載配置文件;
[root@ying01 php-5.6.32]# yum install libcurl-devel
開始編譯
[root@ying01 php-5.6.32]# make
編譯完成後,開始安裝
[root@ying01 php-5.6.32]# make install
此時會在/usr/local目錄下,生成了php-fpm新目錄;
[root@ying01 php-5.6.32]# ls /usr/local/php-fpm/ //比以前的php多了sbin和var目錄 bin etc include lib php sbin var [root@ying01 php-5.6.32]# ls /usr/local/php bin etc include lib php [root@ying01 php-5.6.32]# ls /usr/local/php-fpm/sbin/ //sbin下有php-fpm php-fpm [root@ying01 php-5.6.32]# ls /usr/local/php-fpm/var/ //var下有log日誌目錄和PID目錄 log run
安裝下來以後咱們發現其實比以前安裝PHP要多了兩個目錄 sbin 和 var
- sbin:實際上就是啓動php-fpm服務的目錄
- var:實際上就是存放PHP日誌的,固然這個咱們能夠指定的
- log: php日誌目錄;
- run:進程PID目錄
php-fpm 選項參數用法:-i -m -t
[root@ying01 php-5.6.32]# /usr/local/php-fpm/sbin/php-fpm -i //查看PHP信息 [root@ying01 php-5.6.32]# /usr/local/php-fpm/sbin/php-fpm -m //查看PHP模塊 [root@ying01 php-5.6.32]# /usr/local/php-fpm/sbin/php-fpm -t //測試PHP配置語法
php解壓目錄中的php.ini-production文件複製到php-fpm/etc/目錄中,而且重命名爲php.ini
[root@ying01 php-5.6.32]# ls /usr/local/php-fpm/etc/ pear.conf php-fpm.conf.default [root@ying01 php-5.6.32]# cp php.ini-production /usr/local/php-fpm/etc/php.ini [root@ying01 php-5.6.32]# cd /usr/local/php-fpm/etc/ [root@ying01 etc]# ls pear.conf php-fpm.conf.default php.ini //複製成功
在php-fpm/etc/下有默認的php-fpm.conf.default配置文件,如今咱們須要從新複製一份,方便試驗操做;
[root@ying01 etc]# vi php-fpm.conf //新建立 ....... 如下爲配置文件內容 [global] pid = /usr/local/php-fpm/var/run/php-fpm.pid error_log = /usr/local/php-fpm/var/log/php-fpm.log [www] listen = /tmp/php-fcgi.sock #listen =127.0.0.1:9000 listen.mode = 666 user = php-fpm group = php-fpm pm = dynamic pm.max_children = 50 pm.start_servers = 20 pm.min_spare_servers = 5 pm.max_spare_servers = 35 pm.max_requests = 500 rlimit_files = 1024 ......
相關名詞釋義
- [global]=定義全局參數
- [www]=自定義模塊
- listen = 監聽的地址
- 或者可使用這樣的方式↓
- listen = 127.0.0.1:9000 (port默認爲9000,也能夠更改)
- listen.mode = 666 用來定義listen = /tmp/php-fcgi.sock的權限,只有這個sock打開的狀況下才生效!
把解壓目錄下的腳本sapi/fpm/init.d.php-fpm 複製到/etc/init.d下
[root@ying01 etc]# cd /usr/local/src/php-5.6.32/ [root@ying01 php-5.6.32]# ls sapi/ aolserver apache2handler cgi embed litespeed phpdbg roxen tux apache apache_hooks cli fpm milter phttpd tests webjames apache2filter caudium continuity isapi nsapi pi3web thttpd [root@ying01 php-5.6.32]# cp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
而後給予755權限,增長開機服務等操做
[root@ying01 php-5.6.32]# chmod 755 /etc/init.d/php-fpm //給予755權限 [root@ying01 php-5.6.32]# chkconfig --add php-fpm //增長服務 [root@ying01 php-5.6.32]# chkconfig php-fpm on [root@ying01 php-5.6.32]# service php-fpm start //開啓php-fpm服務 Starting php-fpm done
查看php-fpm啓動信息
[root@ying01 php-5.6.32]# ps aux |grep php-fpm root 60635 0.0 0.2 123652 4940 ? Ss 16:10 0:00 php-fpm: master process (/usr/local/php-fpm/etc/php-fpm.conf) php-fpm 60636 0.0 0.2 123652 4704 ? S 16:10 0:00 php-fpm: pool www php-fpm 60637 0.0 0.2 123652 4704 ? S 16:10 0:00 php-fpm: pool www php-fpm 60638 0.0 0.2 123652 4704 ? S 16:10 0:00 php-fpm: pool www php-fpm 60639 0.0 0.2 123652 4704 ? S 16:10 0:00 php-fpm: pool www php-fpm 60640 0.0 0.2 123652 4708 ? S 16:10 0:00 php-fpm: pool www php-fpm 60641 0.0 0.2 123652 4708 ? S 16:10 0:00 php-fpm: pool www php-fpm 60642 0.0 0.2 123652 4708 ? S 16:10 0:00 php-fpm: pool www php-fpm 60643 0.0 0.2 123652 4708 ? S 16:10 0:00 php-fpm: pool www php-fpm 60644 0.0 0.2 123652 4708 ? S 16:10 0:00 php-fpm: pool www php-fpm 60645 0.0 0.2 123652 4712 ? S 16:10 0:00 php-fpm: pool www php-fpm 60646 0.0 0.2 123652 4712 ? S 16:10 0:00 php-fpm: pool www php-fpm 60647 0.0 0.2 123652 4712 ? S 16:10 0:00 php-fpm: pool www php-fpm 60648 0.0 0.2 123652 4712 ? S 16:10 0:00 php-fpm: pool www php-fpm 60649 0.0 0.2 123652 4712 ? S 16:10 0:00 php-fpm: pool www php-fpm 60650 0.0 0.2 123652 4712 ? S 16:10 0:00 php-fpm: pool www php-fpm 60651 0.0 0.2 123652 4712 ? S 16:10 0:00 php-fpm: pool www php-fpm 60652 0.0 0.2 123652 4712 ? S 16:10 0:00 php-fpm: pool www php-fpm 60653 0.0 0.2 123652 4712 ? S 16:10 0:00 php-fpm: pool www php-fpm 60654 0.0 0.2 123652 4712 ? S 16:10 0:00 php-fpm: pool www php-fpm 60655 0.0 0.2 123652 4712 ? S 16:10 0:00 php-fpm: pool www root 60663 0.0 0.0 112724 984 pts/0 S+ 16:11 0:00 grep --color=auto php-fpm [root@ying01 php-5.6.32]# ls -l /tmp/php-fcgi.sock //sock的權限符合配置賦予的權限666 srw-rw-rw- 1 root root 0 7月 3 16:10 /tmp/php-fcgi.sock
由於nginx處理靜態文件的能力要比apache好不少,因此不少企業在建站的時候通常都是用java寫的,而後會選擇tomcat,可是tomcat處理靜態文件的能力不是太好就會疊加選擇nginx。
nginx特色:
- 體積小
- 處理能力強
- 併發高
- 可擴展性好
Nginx應用場景:web服務、反向代理、負載均衡
Nginx著名分支,淘寶基於Nginx開發的Tengine,使用上和Nginx一致,服務名,配置文件名都同樣,和Nginx的最大區別在於Tenging增長了一些定製化模塊,在安全限速方面表現突出,另外它支持對js,css合併 Nginx核心+lua(開發語言)相關的組件和模塊組成了一個支持lua的高性能web容器openresty,參考http://jinnianshilongnian.iteye.com/blog/2280928
下載配置安裝Nginx,並解壓
[root@ying01 php-5.6.32]# cd /usr/local/src/ [root@ying01 src]# wget http://nginx.org/download/nginx-1.4.7.tar.gz --2018-07-03 16:51:10-- http://nginx.org/download/nginx-1.4.7.tar.gz 正在解析主機 nginx.org (nginx.org)... 95.211.80.227, 206.251.255.63, 2606:7100:1:69::3f, ... 正在鏈接 nginx.org (nginx.org)|95.211.80.227|:80... 已鏈接。 已發出 HTTP 請求,正在等待迴應... 200 OK 長度:769153 (751K) [application/octet-stream] 正在保存至: 「nginx-1.4.7.tar.gz」 100%[===============================================>] 769,153 34.6KB/s 用時 11s 2018-07-01 16:51:21 (68.8 KB/s) - 已保存 「nginx-1.4.7.tar.gz」 [769153/769153]) [root@ying01 src]# ls apr-1.6.3 mysql-5.6.36-linux-glibc2.5-x86_64.tar.gz apr-1.6.3.tar.gz nginx-1.4.7.tar.gz apr-util-1.6.1 php-5.6.32 apr-util-1.6.1.tar.bz2 php-5.6.32.tar.bz2 httpd-2.4.33 php-7.1.6 httpd-2.4.33.tar.gz php-7.1.6.tar.bz2 httpd-2.4.33.tar.gz.1 phpredis-develop mariadb-10.2.6-linux-glibc_214-x86_64.tar.gz phpredis-develop.zip [root@ying01 src]# tar zxf nginx-1.4.7.tar.gz //解壓
進入解壓目錄,進行./configure定製服務,使其生成makefile文件;
[root@ying01 src]# cd nginx-1.4.7/ [root@ying01 nginx-1.4.7]# ./configure --prefix=/usr/local/nginx
編譯生成的makefile文件
[root@ying01 nginx-1.4.7]# make
開始安裝
[root@ying01 nginx-1.4.7]# make install
打開各層目錄,查看相關子目錄
[root@ying01 nginx-1.4.7]# ls /usr/local/nginx/ conf html logs sbin [root@ying01 nginx-1.4.7]# ls /usr/local/nginx/conf/ fastcgi.conf fastcgi_params koi-utf mime.types nginx.conf scgi_params uwsgi_params win-utf fastcgi.conf.default fastcgi_params.default koi-win mime.types.default nginx.conf.default scgi_params.default uwsgi_params.default [root@ying01 nginx-1.4.7]# ls /usr/local/nginx/html/ 50x.html index.html [root@ying01 nginx-1.4.7]# ls /usr/local/nginx/logs/ [root@ying01 nginx-1.4.7]# ls /usr/local/nginx/sbin/ nginx [root@ying01 nginx-1.4.7]# ls /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx
/usr/local/nginx目錄下的子目錄:
子目錄 釋義 conf nginx配置文件 html 主頁樣例文件 logs 站點日誌 sbin 核心進程文件
nginx -t 選項: 測試配置語法錯誤
[root@ying01 nginx-1.4.7]# /usr/local/nginx/sbin/nginx -t nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
在init.d目錄下,新建nginx腳本文件
[root@ying01 nginx-1.4.7]# vim /etc/init.d/nginx 如下爲腳本內容..... #!/bin/bash # chkconfig: - 30 21 # description: http service. # Source Function Library . /etc/init.d/functions # Nginx Settings NGINX_SBIN="/usr/local/nginx/sbin/nginx" NGINX_CONF="/usr/local/nginx/conf/nginx.conf" NGINX_PID="/usr/local/nginx/logs/nginx.pid" RETVAL=0 prog="Nginx" start() { echo -n $"Starting $prog: " mkdir -p /dev/shm/nginx_temp daemon $NGINX_SBIN -c $NGINX_CONF RETVAL=$? echo return $RETVAL } stop() { echo -n $"Stopping $prog: " killproc -p $NGINX_PID $NGINX_SBIN -TERM rm -rf /dev/shm/nginx_temp RETVAL=$? echo return $RETVAL } reload() { echo -n $"Reloading $prog: " killproc -p $NGINX_PID $NGINX_SBIN -HUP RETVAL=$? echo return $RETVAL } restart() { stop start } configtest() { $NGINX_SBIN -c $NGINX_CONF -t return 0 } case "$1" in start) start ;; stop) stop ;; reload) reload ;; restart) restart ;; configtest) configtest ;; *) echo $"Usage: $0 {start|stop|reload|restart|configtest}" RETVAL=1 esac exit $RETVAL
而後增長權限,以及啓動服務;
[root@ying01 nginx-1.4.7]# chmod 755 /etc/init.d/nginx [root@ying01 nginx-1.4.7]# chkconfig --add nginx [root@ying01 nginx-1.4.7]# chkconfig nginx on
進入nginx/conf/目錄下,把默認的配置文件做爲備份;
[root@ying01 nginx-1.4.7]# cd /usr/local/nginx/conf/ [root@ying01 conf]# ls fastcgi.conf koi-utf nginx.conf uwsgi_params fastcgi.conf.default koi-win nginx.conf.default uwsgi_params.default fastcgi_params mime.types scgi_params win-utf fastcgi_params.default mime.types.default scgi_params.default [root@ying01 conf]# mv nginx.conf nginx.conf.1 //把原配置文件做爲備份 [root@ying01 conf]# ls fastcgi.conf koi-utf nginx.conf.1 uwsgi_params fastcgi.conf.default koi-win nginx.conf.default uwsgi_params.default fastcgi_params mime.types scgi_params win-utf fastcgi_params.default mime.types.default scgi_params.default
新建nginx.conf配置文件,並按下面寫入內容
[root@ying01 conf]# vim nginx.conf 如下爲配置內容..... user nobody nobody; worker_processes 2; error_log /usr/local/nginx/logs/nginx_error.log crit; pid /usr/local/nginx/logs/nginx.pid; worker_rlimit_nofile 51200; events { use epoll; worker_connections 6000; } http { include mime.types; default_type application/octet-stream; server_names_hash_bucket_size 3526; server_names_hash_max_size 4096; log_format combined_realip '$remote_addr $http_x_forwarded_for [$time_local]' ' $host "$request_uri" $status' ' "$http_referer" "$http_user_agent"'; sendfile on; tcp_nopush on; keepalive_timeout 30; client_header_timeout 3m; client_body_timeout 3m; send_timeout 3m; connection_pool_size 256; client_header_buffer_size 1k; large_client_header_buffers 8 4k; request_pool_size 4k; output_buffers 4 32k; postpone_output 1460; client_max_body_size 10m; client_body_buffer_size 256k; client_body_temp_path /usr/local/nginx/client_body_temp; proxy_temp_path /usr/local/nginx/proxy_temp; fastcgi_temp_path /usr/local/nginx/fastcgi_temp; fastcgi_intercept_errors on; tcp_nodelay on; gzip on; gzip_min_length 1k; gzip_buffers 4 8k; gzip_comp_level 5; gzip_http_version 1.1; gzip_types text/plain application/x-javascript text/css text/htm application/xml; server { listen 80; server_name localhost; index index.html index.htm index.php; root /usr/local/nginx/html; location ~ \.php$ { include fastcgi_params; fastcgi_pass unix:/tmp/php-fcgi.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /usr/local/nginx/html$fastcgi_script_name; } } }
相關名詞,釋義
- user nobody nobody; 運行服務的用戶是誰
- worker_processes 2;定義子進程的數量
- worker_rlimit_nofile
- 51200;最多能夠打開多少個文件
- worker_connections 6000;容許最大的鏈接數
- server; 下面對應的就是虛擬主機配置
- server_name localhost;定義網站的域名
- root /usr/local/nginx/html;定義網站的根目錄
- location ~ .php$;配置解析PHP
- fastcgi_pass unix:/tmp/php-fcgi.sock;監聽端口或者監聽socket,經過此命令去執行
- fastcgi_pass 127.0.0.1:9000;(或者攜程這種方式,服務器IP地址+端口)
[root@ying01 conf]# /usr/local/nginx/sbin/nginx -t nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful [root@ying01 conf]# /etc/init.d/nginx start //開啓服務 Starting nginx (via systemctl): [ 肯定 ] [root@ying01 conf]# ps aux |grep nginx //查看相關服務 root 63447 0.0 0.0 24844 784 ? Ss 17:20 0:00 nginx: master process /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf nobody 63448 0.0 0.1 27148 3356 ? S 17:20 0:00 nginx: worker process nobody 63449 0.0 0.1 27148 3356 ? S 17:20 0:00 nginx: worker process root 63451 0.0 0.0 112720 980 pts/0 S+ 17:20 0:00 grep --color=auto nginx [root@ying01 conf]#
[root@ying01 conf]# curl localhost <!DOCTYPE html> <html> <head> <title>Welcome to nginx!</title> <style> body { width: 35em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; } </style> </head> <body> <h1>Welcome to nginx!</h1> <p>If you see this page, the nginx web server is successfully installed and working. Further configuration is required.</p> <p>For online documentation and support please refer to <a href="http://nginx.org/">nginx.org</a>.<br/> Commercial support is available at <a href="http://nginx.com/">nginx.com</a>.</p> <p><em>Thank you for using nginx.</em></p> </body> </html>
[root@ying01 conf]# vim /usr/local/nginx/html/1.php //新建1.php頁面,寫入如下內容 如下爲1.php內容... <?php echo "hello world";
測試解析PHP
[root@ying01 conf]# curl localhost/1.php //進行測試,成功解析 hello world[root@ying01 conf]#