91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Apache和LNMP架構做動靜分離

發布時間:2020-07-06 16:20:46 來源:網絡 閱讀:315 作者:23trl 欄目:云計算

Apache和LNMP架構做動靜分離

Apache和LNMP架構做動靜分離

nginx的靜態處理能力很強,動態處理能力不足,所以要把動態的頁面交給Apache,實現動靜分離。

先安裝apache服務

[root@localhost ~]# yum install httpd httpd-devel -y ##安裝apacher軟件包

[root@localhost ~]# systemctl start httpd.service  ##開啟服務

[root@localhost ~]# firewall-cmd --permanent --zone=public  --add-service=http  ##永久允許http服務
success

[root@localhost ~]# firewall-cmd --permanent --zone=public  --add-service=https  ##永久允許https服務
success

[root@localhost ~]# firewall-cmd --reload  ##重新加載防火墻
success

去客戶機測試一下能不能訪問apache網站

Apache和LNMP架構做動靜分離

安裝LNMP架構(簡易安裝)

MariaDB數據庫管理系統是MySQL的一個分支,主要由開源社區在維護,采用GPL授權許可 MariaDB的目的是完全兼容MySQL,包括API和命令行,使之能輕松成為MySQL的代替品。在存儲引擎方面,使用XtraDB(英語:XtraDB)來代替MySQL的InnoDB。 MariaDB由MySQL的創始人Michael Widenius(英語:Michael Widenius)主導開發,他早前曾以10億美元的價格,將自己創建的公司MySQL AB賣給了SUN,此后,隨著SUN被甲骨文收購,MySQL的所有權也落入Oracle的手中。MariaDB名稱來自Michael Widenius的女兒Maria的名字。

安裝數據庫

yum install mariadb mariadb-server mariadb-libs mariadb-devel -y  #安裝數據庫組件
[root@localhost ~]# systemctl start  mariadb 
[root@localhost ~]# netstat -natap | grep 3306
tcp        0      0 0.0.0.0:3306            0.0.0.0:*               LISTEN      15154/mysqld        

配置數據庫

[root@localhost ~]# mysql_secure_installation 

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!

In order to log into MariaDB to secure it, we'll need the current
password for the root user.  If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none):  ##按回車

Set root password? [Y/n] y   ##是否設置密碼
New password:   #輸入你的密碼
Re-enter new password: 

Remove anonymous users? [Y/n] y  ##是否刪除匿名用戶,不刪

Disallow root login remotely? [Y/n] n  ##是否讓root用戶遠程登錄

Remove test database and access to it? [Y/n] n  ##是否刪除測試數據庫

Reload privilege tables now? [Y/n] y  ##是否加載里面的屬性列表

安裝PHP

yum -y install php

##建立php和mysql關聯
yum install php-mysql -y

##安裝php插件
yum install -y php-gd php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-snmp php-soap curl curl-devel php-bcmath

cd /var/www/html

vim index.php  ##寫上PHP網頁

<?php
  phpinfo();
?>

[root@localhost html]# systemctl restart httpd.service 

用客戶機去測試一下能不能訪問到PHP

Apache和LNMP架構做動靜分離

再開一臺Linux作為Nginx處理靜態請求

[root@localhost ~]# yum install pcre-devel zlib-devel gcc gcc-c++ -y  ##安裝環境包

[root@localhost ~]# useradd -M -s /sbin/nologin nginx ##創建程序性用戶

[root@localhost ~]# mkdir /chen ##創建掛載點
[root@localhost ~]# mount.cifs //192.168.100.23/LNMP /chen ##掛載
Password for root@//192.168.100.23/LNMP:  

[root@localhost chen]# tar zxvf nginx-1.12.2.tar.gz -C /opt/  ##解壓

[root@localhost chen]# cd /opt/
[root@localhost opt]# ls
nginx-1.12.2  rh
[root@localhost opt]# cd nginx-1.12.2/
[root@localhost nginx-1.12.2]# ls
auto     CHANGES.ru  configure  html     man     src
CHANGES  conf        contrib    LICENSE  README

./configure \  ##安裝組件
--prefix=/usr/local/nginx \  ##指定路徑
--user=nginx \  ##指定用戶
--group=nginx \  ##指定組
--with-http_stub_status_module  ##狀態統計模塊

[root@localhost nginx-1.12.2]# make && make install  ##編譯

[root@localhost nginx-1.12.2]# ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin/  ##做軟連接
[root@localhost nginx-1.12.2]# 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

寫nginx腳本放在系統啟動腳本中方便service管理器管理

[root@localhost nginx-1.12.2]# cd /etc/init.d/

[root@localhost init.d]# vim nginx  

#!/bin/bash
#chkconfig: - 99 20  #注釋信息
#description: Nginx Service Control Script
PROG="/usr/local/nginx/sbin/nginx"  #這個變量,指向我的命令文件
PIDF="/usr/local/nginx/logs/nginx.pid"  #這個變量,指向nginx的進程號
case "$1" in
    start)
        $PROG                                              
        ;;
    stop)
        kill -s QUIT $(cat $PIDF) 
        ;;
    restart)                                                  
        $0 stop
        $0 start
        ;;
    reload)                                                  
        kill -s HUP $(cat $PIDF)
        ;;
    *)                                                           
                echo "Usage: $0 {start|stop|restart|reload}"
                exit 1
esac
exit 0

開啟服務,并測試網頁是否生效

[root@localhost init.d]# chmod +x nginx 
[root@localhost init.d]# chkconfig --add nginx 
[root@localhost init.d]# service nginx start 
[root@localhost init.d]# netstat -ntap | grep nginx 
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      17544/nginx: master 

[root@localhost init.d]# systemctl stop firewalld.service
[root@localhost init.d]# setenforce 0
[root@localhost init.d]# yum install elinks -y

[root@localhost init.d]# elinks http://192.168.136.162/ ##測試網站有沒有生效

Apache和LNMP架構做動靜分離

在nginx配置文件中把動態的請求給Apache處理,174這臺服務器

[root@localhost init.d]# vim /usr/local/nginx/conf/nginx.conf
 59         location ~ \.php$ {
 60             proxy_pass   http://192.168.136.174;  ##在sever這個區域,修改地址,把動態的請求轉給174處理
 61         }   

[root@localhost init.d]# service nginx stop
[root@localhost init.d]# service nginx start

去客戶機測試一下動態的請求和靜態的請求,輸入192.168.136.174/index.php

Apache和LNMP架構做動靜分離

輸入192.168.136.174/index.html

Apache和LNMP架構做動靜分離

謝謝收看

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

章丘市| 黔东| 双峰县| 菏泽市| 运城市| 安远县| 慈利县| 井冈山市| 琼海市| 高安市| 胶南市| 集贤县| 西丰县| 乡宁县| 敦煌市| 双峰县| 玛多县| 宁都县| 澄江县| 惠州市| 巴楚县| 嘉鱼县| 宝鸡市| 象山县| 黄龙县| 历史| 启东市| 广河县| 普兰店市| 禹城市| 泰安市| 黎川县| 镇平县| 昭觉县| 元江| 柯坪县| 汕头市| 新野县| 乾安县| 万全县| 云阳县|