環(huán)境
1始藕、[tomcat(jvm) ]匙赞、resin. jboss, Weblogic
配合nginx proxy_pass代理功能
2靠瞎、Python web環(huán)境
配合nginx uwsgi_pass代理功能
3肖卧、PHP web環(huán)境(也會用志笼,二三四五線城市)
配合nginx fastcgi_pass代理功能
4、GO語言環(huán)境
LUMP工作原理
當(dāng)LNMP組合工作時,首先是用戶通過瀏覽器輸入域名請求Nginx Web服務(wù),如果請求是靜態(tài)的資源,則由Nginx解析返回給用戶,如果是動態(tài)請求(.php結(jié)尾) ,那么Nginx就會把它通過Fastcgi接口(生產(chǎn)常用方法)發(fā)送給PHP引擎服務(wù)(Fastcgi進(jìn)程php-fpm)進(jìn)行解析,如果這個動態(tài)請求要讀取數(shù)據(jù)庫數(shù)據(jù),那么PHP就會繼續(xù)向后請求MySQL數(shù)據(jù)庫,以讀取需要的數(shù)據(jù),并最終通過Nginx服務(wù)把獲取的數(shù)據(jù)返回給用戶,這就是LNMP環(huán)境的基本請求順序流程(如圖6-1和圖6-2所示) ,這個請求流程是企業(yè)使用LNMP環(huán)境痊土。
MysQL 數(shù)據(jù)介紹
MySQL是互聯(lián)網(wǎng)領(lǐng)域里非常重要的肄扎、深受廣大用戶歡迎的一款開源關(guān)系型數(shù)據(jù)庫軟件,由瑞典MySQL AB公司開發(fā)與維護(hù)。2006年, MySQL AB公司被SUN公司收購, 2008年, SUN公司又被傳統(tǒng)數(shù)據(jù)數(shù)據(jù)庫領(lǐng)域大佬甲骨文(oracle)公司收購赁酝。因此, MySQL數(shù)據(jù)庫軟件目前屬于Oracle公司,但仍是開源的, Oracle公司收購MySQL的戰(zhàn)略意圖顯而易見,其自身的Oracle數(shù)據(jù)庫繼續(xù)服務(wù)于傳統(tǒng)大中型企業(yè),而利用收購的MySQL搶占互聯(lián)網(wǎng)領(lǐng)域數(shù)據(jù)庫份額,完成其戰(zhàn)略布局犯祠。
數(shù)據(jù)庫產(chǎn)品:MySQL(maradb),Ooracle, SQL SERVER, PGSQL
MySQL特點
性能卓越,服務(wù)穩(wěn)定,很少出現(xiàn)異常宕機(jī)。
開放源代碼且無版權(quán)制約, 自主性強(qiáng),使用成本低酌呆。
歷史悠久,社區(qū)及用戶罪澈庠兀活躍,遇到問題,可以很快獲取到幫助》舅瘢口軟件體積小,安裝使用簡單,并且易于維護(hù),安裝及維護(hù)成本低月劈。
支持多種操作系統(tǒng),提供多種API接口,支持多種開發(fā)語言,特別對流行的PHP語言無縫支持。
品牌口碑效應(yīng),使得企業(yè)無需考慮就直接用之藤乙。
單機(jī)安裝LNMP
MySQL5.7 #壓縮包下載
先裝數(shù)據(jù)庫:
1猜揪、[root@web02 ~]#useradd mysql -s /sbin/nologin -M #創(chuàng)建用戶
2、[root@web02 ~]# cd /server/tools/
[root@web02 /server/tools]# #上傳軟件到指定的目錄
3坛梁、[root@web02 /server/tools]# tar xf mysql-5.7.26-linux-glibc2.12-x86_64.tar.gz #解壓
4而姐、[root@web02 /server/tools]# mv mysql-5.7.26-linux-glibc2.12-x86_64 /application/mysql-5.7.26 #移動
5、[root@web02 /server/tools]# ln -s /application/mysql-5.7.26/ /application/mysql #做軟連接
###配置配置文件
1划咐、[root@web02 /server/tools]# rpm -e --nodeps mariadb-libs #卸載mariadb庫拴念,防止沖突
2、[root@web02 /server/tools]# vim /etc/my.cnf #編輯配置文件
3褐缠、[root@web02 /server/tools]# rpm -qa mariadb-libs
[root@web02 /server/tools]# yum install libaio-devel -y ##安裝依賴包
4政鼠、[root@web02 /server/tools]# mkdir -p /application/mysql/data #創(chuàng)建mysql數(shù)據(jù)目錄
[root@web02 /server/tools]# chown -R mysql.mysql /application/mysql/ #授權(quán)
5、[root@web02 /server/tools]# /application/mysql/bin/mysqld --initialize-insecure --user=mysql --basedir=/application/mysql/ --datadir=/application/mysql/data
#初始化數(shù)據(jù)庫
6队魏、[root@web02 /application/mysql/support-files]# cat /etc/systemd/system/mysqld.service #配置啟動服務(wù)
[Unit]
Description=MySQL Server by oldboy
Documentation=man:mysqld(8)
Documentation=http://dev.mysql.com/doc/refman/en/using-systemd.html
After=network.target
After=syslog.target
[Install]
WantedBy=multi-user.target
[Service]
User=mysql
Group=mysql
ExecStart=/application/mysql/bin/mysqld --defaults-file=/etc/my.cnf
LimitNOFILE = 5000
7公般、配置環(huán)境變量登錄
[root@web02 /application/mysql/support-files]# echo 'export PATH=/application/mysql/bin:$PATH' >>/etc/profile
[root@web02 /application/mysql/support-files]# tail -1 /etc/profile
export PATH=/application/mysql/bin:$PATH
[root@web02 /application/mysql/support-files]# . /etc/profile
[root@web02 /application/mysql/support-files]# echo $PATH
/application/mysql/bin:/application/nginx/sbin:/application/nginx/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin
[root@web02 /application/mysql/support-files]# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.26 MySQL Community Server (GPL)
Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
oldboy [(none)]>
日志文件 cat /application/mysql/data/oldboy_mysql.err
8吠架、[root@web02 /application/mysql]# mysqladmin -u root password '*******'
# 修改密碼
9厦酬、[root@web02 /application/mysql]# mysql -uroot -p #非交互式登錄,交互式登錄在-p后面加上密碼
PHP服務(wù)
什么是FastCGI
FastCGI是一個可伸縮地荣赶、高速地在HTTP服務(wù)器和動態(tài)腳本語言間通信的接口
FastCGI特點
HTTP服務(wù)器和動態(tài)腳本語言間通信的接口或者工具!
可把動態(tài)語言解析和HTTP服務(wù)器分離開來!
Nginx, Apache, Lighttpd以及多數(shù)動態(tài)語言都支持FastCGI.
FastCGI接口方式采用C/S結(jié)構(gòu),分為客戶端(HTTP服務(wù)器)和服務(wù)端(動態(tài)語言解析服務(wù)器)昧谊。
PHP動態(tài)語言服務(wù)端可以啟動多個FastCGI的守護(hù)進(jìn)程(例如: php-fpm(fcgiprocess mangement))
http服務(wù)器通過(例如: Nginx fastcgi pass) FastCGI客戶端和動態(tài)語言FastCGI服務(wù)端通信(例如: php-fpm)刽虹。
Nginx FastCGI的運行原理
Nginx不支持對外部動態(tài)程序的直接調(diào)用或者解析,所有的外部程序(包括PHP)必須通過FastCGI接口來調(diào)用。FastCGI接口在Linux下是socket,為了調(diào)用CGI程序,還需要一個FastCGI的wrapper (可以理解為用于啟動另一個程序的程序) ,這個wrapper綁定在某個固定的socket上,如端口或文件socket呢诬。當(dāng)Nginx將CGI請求發(fā)送給這個socket的時候,通過FastCGI接口, wrapper接收到請求,然后派生出一個新的線程,這個線程調(diào)用解釋器或外部程序處理腳本來讀取返回的數(shù)據(jù);接著, wrapper再將返回的數(shù)據(jù)通過FastCGI接口,沿著固定的socket傳遞給Nginx;最后, Nginx將返回的數(shù)據(jù)發(fā)送給客戶端,這就是Nginx+FastCGI的整個運作過程涌哲。
安裝
安裝PHP:
yum安裝:簡單、高效馅巷、方便膛虫、高效。
編譯安裝PHP
1钓猬、PHP調(diào)用的庫
yum install zlib-devel libxml2-devel libjpeg-devel libjpeg-turbo-devel libiconv-devel -y
yum install freetype-devel libpng-devel gd-devel libcurl-devel libxslt-devel libxslt-devel -y
2稍刀、mkdir -p /home/oldboy/tools
cd /home/oldboy/tools
wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.16.tar.gz
tar zxf libiconv-1.16.tar.gz
cd libiconv-1.16
./configure --prefix=/application/libiconv
make
make install
cd ../
yum install libmcrypt-devel -y
yum install mhash -y
yum install mcrypt -y
安裝PHP
yum install libmcrypt-devel -y
yum install mhash -y
tar xf php-7.3.5.tar.gz
cd php-7.3.5/
安裝PHP
cd /server/tools/
tar xf php-7.3.5.tar.gz
cd php-7.3.5/
執(zhí)行
./configure \
--prefix=/application/php-7.3.5 \
--enable-mysqlnd \
--with-mysqli=mysqlnd \
--with-pdo-mysql=mysqlnd \
--with-iconv-dir=/application/libiconv \
--with-freetype-dir \
--with-jpeg-dir \
--with-png-dir \
--with-zlib \
--with-libxml-dir=/usr \
--enable-xml \
--disable-rpath \
--enable-bcmath \
--enable-shmop \
--enable-sysvsem \
--enable-inline-optimization \
--with-curl \
--enable-mbregex \
--enable-fpm \
--enable-mbstring \
--with-gd \
--with-openssl \
--with-mhash \
--enable-pcntl \
--enable-sockets \
--with-xmlrpc \
--enable-soap \
--enable-short-tags \
--enable-static \
--with-xsl \
--with-fpm-user=nginx \
--with-fpm-group=nginx \
--enable-ftp \
--enable-opcache=no
make
make install
[root@web02 /server/tools/php-7.3.5]# echo $?
0 #出現(xiàn)0就表示沒錯誤
將nginx的用戶和PHP的用戶統(tǒng)一:nginx
[root@web02 /server/tools/php-7.3.5]# useradd nginx -u 1111 -s /sbin/nologin -M
[root@web02 /server/tools/php-7.3.5]# id nginx
uid=1111(nginx) gid=1111(nginx) 組=1111(nginx)
[root@web02 /server/tools/php-7.3.5]# vim /application/nginx/conf/nginx.conf
worker_processes 1;
user nginx nginx;
(編譯的時候就改用nginx)
[root@web02 ~]# ln -s /application/php-7.3.5/ /application/php
[root@web02 ~]# ls /application/php/
bin etc include lib php sbin var
配置php.ini(PHP解析器配置文件)
[root@web02 /application/php]# cd /server/tools/php-7.3.5/
[root@web02 /server/tools/php-7.3.5]# ls php.ini-*
php.ini-development php.ini-production
[root@web02 /server/tools/php-7.3.5]# cp php.ini-development /application/php/lib/php.ini
[root@web02 /server/tools/php-7.3.5]# ls -l /application/php/lib/php.ini
-rw-r--r-- 1 root root 71648 5月 6 11:51 /application/php/lib/php.ini
配置PHP FPM
[root@web02 /server/tools/php-7.3.5]# cd /application/php/etc/
[root@web02 /application/php/etc]# ls
pear.conf php-fpm.conf.default php-fpm.d
[root@web02 /application/php/etc]# cp php-fpm.conf.default php-fpm.conf
[root@web02 /application/php/etc]# cd php-fpm.d/
[root@web02 /application/php/etc/php-fpm.d]# ls
www.conf.default
[root@web02 /application/php/etc/php-fpm.d]# cp www.conf.default www.conf
[root@web02 /application/php/etc/php-fpm.d]# ls
www.conf www.conf.default
啟動PHP服務(wù)
[root@web02 /application/php/etc/php-fpm.d]# /application/php/sbin/php-fpm
[root@web02 /application/php/etc/php-fpm.d]# netstat -lntup|grep php-fpm
tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN 12214/php-fpm: mast
開機(jī)自啟動
[root@web02 /application/php/etc/php-fpm.d]# tail -2 /etc/rc.local
/application/nginx/sbin/nginx
/application/php/sbin/php-fpm
配置nginx轉(zhuǎn)發(fā)PHP請求
location ~ .*\.(php|php5)?$ {
root html/blog;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
[root@web02 /application/nginx/conf]# cat extra/03_blog.conf
server {
listen 80;
server_name blog.etiantian.org;
root html/blog;
location / {
index index.html index.htm;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi_params;
}
}
編寫測試文件
[root@web02 /application/nginx/conf]# echo "<?php phpinfo(); ?>" > ../html/blog/test_info.php
[root@web02 /application/nginx/conf]# cat ../html/blog/test_info.php
<?php phpinfo(); ?>
[root@web02 /application/nginx/conf]# /application/php/bin/php /application/nginx/html/blog/test_info.php
成功的配置:
[root@web02 /application/nginx/conf/extra]# cat 03_blog.conf
server {
listen 80;
server_name blog.etiantian.org;
location / {
root html/blog;
index index.html index.htm;
}
location ~ .*\.(php|php5)?$ {
root html/blog;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
}
[root@web02 /application/nginx/conf]# nginx -t
nginx: the configuration file /application/nginx-1.16.0//conf/nginx.conf syntax is ok
nginx: configuration file /application/nginx-1.16.0//conf/nginx.conf test is successful
[root@web02 /application/nginx/conf]# nginx -s reload
測試PHP連接mysql
[root@web02 /application/nginx/html/blog]# cat /application/nginx/html/blog/test_mysql.php
<?php
//$link_id=mysqli_connect('主機(jī)名','用戶','密碼');
$link_id=mysqli_connect('localhost','root','oldboy123') or mysql_error();
if($link_id){
echo "mysql successful by oldboy.\n";
}else{
echo mysql_error();
}
?>
[root@web02 /application/nginx/html/blog]# /application/php/bin/php /application/nginx/html/blog/test_mysql.php
mysql successful by oldboy.
LNMP環(huán)境搭建成功。