中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

編譯安裝php/nginx/nginx虛擬主機

發布時間:2020-07-22 05:53:09 來源:網絡 閱讀:198 作者:Asn_Fy 欄目:系統運維

來源:https://blog.csdn.net/Powerful_Fy


php官網:https://www.php.net
進入官網后點擊downloads選擇需要下載的版本即可

本文以php 7.3.10版本為例
安裝包存放路徑 /usr/local/src/

下載:

[root@linux src]# wget https://www.php.net/distributions/php-7.3.10.tar.bz2

解壓:

[root@linux src]# tar -jxvf php-7.3.10.tar.bz2

編譯安裝:
進入目錄 cd php-7.3.10.tar.bz2

配置編譯參數:
./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

編譯: make

安裝:make install

拷貝配置文件php.ini-development到php程序安裝目錄:

[root@linux php-7.3.10]# cp php.ini-development /usr/local/php-fpm/etc/php.ini

拷貝啟動腳本到/etc/init.d/目錄:

[root@linux php-7.3.10]# cp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm

進入php安裝目錄下的/etc目錄重命名配置文件:

[root@linux php-7.3.10]# cd /usr/local/php-fpm/etc/
[root@linux etc]# cp php-fpm.conf.default php-fpm.conf
[root@linux etc]# cd php-fpm.d/
[root@linux php-fpm.d]# cp www.conf.default www.conf

添加php啟動腳本到系統服務:

[root@linux php-fpm.d]# chkconfig --add php-fpm
[root@linux php-fpm.d]# chkconfig php-fpm on
[root@linux php-fpm.d]# chmod 755 /etc/init.d/php-fpm

創建php用戶:

[root@linux php-fpm.d]# useradd php-fpm

啟動php:

[root@linux php-fpm.d]# service php-fpm start

編譯安裝php報錯解決方法:

報錯1:checking for gcc... no
解決:yum -y install gcc

報錯2:error: libxml2 not found
解決:yum install -y libxml2-devel

報錯3:error: Cannot find OpenSSL's
解決:yum install -y openssl-devel

報錯4:error: cURL version 7.15.5 or later is required
解決:yum install -y libcurl-devel

報錯5:configure: error: jpeglib.h not found
解決:yum install -y libjpeg-turbo-devel

報錯6:configure: error: png.h not found
解決:yum install -y libpng-devel

報錯7:configure: error: freetype-config not found
解決:yum install -y freetype-devel

報錯8:configure: error: wrong mysql library version or lib not found

該錯誤表示當前安裝的MySQL/MariaDB版本過高,下載個低版本的MySQL包將編譯參數含有MySQL/MariaDB的路徑改為低版本MySQL程序目錄即可,無需安裝低版本MySQL

解決:
1.下載MySQL5.6二進制包:

[root@linux ~]# cd /usr/local/src/
[root@linux src]# wget http://mirrors.163.com/mysql/Downloads/MySQL-5.6/mysql-5.6.43-linux-glibc2.12-x86_64.tar.gz

2.解壓:

[root@linux src]# tar -zxvf mysql-5.6.43-linux-glibc2.12-x86_64.tar.gz 

3.移動到/usr/local/目錄下重命名為mysql5.6:

[root@linux src]# mv mysql-5.6.43-linux-glibc2.12-x86_64.tar.gz /usr/local/mysql5.6

4.更改編譯參數中 - -with-mysql,- -with-mysqli,- -with-pdo-mysql指向的路徑為MySQL5.6目錄:
./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/mysql5.6 --with-mysqli=/usr/local/mysql5.6/bin/mysql_config --with-pdo-mysql=/usr/local/mysql5.6 --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

報錯9:ERROR: [pool www] cannot get uid for user 'php-fpm'
創建編譯參數中指定的php用戶即可
解決:useradd php-fpm


nginx官網:http://nginx.org/

編譯安裝nginx:

安裝包存放路徑/usr/local/src

下載:

[root@linux src]# wget http://nginx.org/download/nginx-1.16.1.tar.gz

解壓:

[root@linux src]# tar -zxvf nginx-1.16.1.tar.gz 

進入nginx源碼包目錄:

[root@linux src]# cd nginx-1.16.1/

配置編譯參數:

[root@linux nginx-1.16.1]# ./configure --prefix=/usr/local/nginx --with-http_ssl_module

編譯安裝:

[root@linux nginx-1.16.1]# make && make install

啟動nginx:

[root@linux ~]# /usr/local/nginx/sbin/nginx 
[root@linux ~]# netstat -lntp | grep nginx
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      11494/nginx: master

補充:
如果不想使用絕對路徑啟動nginx,可以將nginx啟動腳本軟連接到環境變量目錄下:

[root@linux ~]# ln -s /usr/local/nginx/sbin/nginx /usr/bin/nginx

啟動nginx:

[root@linux ~]# nginx 
[root@linux ~]# ps -ef|grep nginx
root     11580     1  0 21:58 ?        00:00:00 nginx: master process nginx
nobody   11581 11580  0 21:58 ?        00:00:00 nginx: worker process
root     11584  7705  0 21:59 pts/0    00:00:00 grep --color=auto nginx

關閉nginx:

[root@linux ~]# nginx -s stop

yum安裝nginx:

官方說明:http://nginx.org/en/linux_packages.html

配置nginx倉庫:

[root@linux ~]# vi /etc/yum.repos.d/nginx.repo

添加以下內容:

[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true

yum安裝nginx:

[root@linux ~]# yum -y install nginx

配置文件路徑:

[root@linux ~]# ls /etc/nginx/
conf.d          koi-utf  mime.types  nginx.conf   uwsgi_params
fastcgi_params  koi-win  modules     scgi_params  win-utf

啟動腳本路徑:

[root@linux ~]# which nginx
/usr/sbin/nginx

啟動nginx:

[root@linux ~]# systemctl start nginx
[root@linux ~]# ps -ef|grep nginx
root     12410     1  0 22:42 ?        00:00:00 nginx: master process /usr/sbin/nginx -c /etc/ngin/nginx.conf
nginx    12411 12410  0 22:42 ?        00:00:00 nginx: worker process
root     12413  7705  0 22:42 pts/0    00:00:00 grep --color=auto nginx

關閉nginx:

[root@linux ~]# systemctl stop nginx

通過修改nginx配置文件配置nginx虛擬主機,一臺nginx服務器(web服務器)可以通過虛擬主機配置多個站點

配置單個虛擬主機:

編輯nginx虛擬主機配置文件,由于上一篇文章使用的是yum安裝的nginx,所以nginx虛擬主機配置文件路徑為:/etc/nginx/conf.d/default.conf

編輯配置文件:

[root@linux ~]# vi /etc/nginx/conf.d/default.conf 

定義server_name項對應的站點域名:
編譯安裝php/nginx/nginx虛擬主機
驗證配置文件:

[root@linux ~]# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

重新加載nginx使其生效:

[root@linux ~]# nginx -s reload

由于www.test.com為測試使用的自定義域名,并不能解析到測試的nginx服務器,需要修改Windows配置文件hosts:

打開配置文件:C:\Windows\System32\drivers\etc\hosts

添加web服務器地址和對應的域名:
編譯安裝php/nginx/nginx虛擬主機
在瀏覽器訪問www.test.com即可:
編譯安裝php/nginx/nginx虛擬主機

配置多個虛擬主機:

拷貝虛擬主機配置文件:

[root@linux ~]# cd /etc/nginx/conf.d/
[root@linux conf.d]# ls
default.conf
[root@linux conf.d]# cp default.conf testbaidu.conf

#虛擬主機文件命名為需要配置的域名便于維護

編輯文件:

[root@linux conf.d]# vi testbaidu.conf 

定義server_name項對應的站點域名和root項對應的站點目錄:
編譯安裝php/nginx/nginx虛擬主機

驗證并重載nginx:

[root@linux ~]# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
[root@linux ~]# nginx -s reload

創建站點對應目錄以及index.html文件:

[root@linux conf.d]# mkdir -p /tmp/testbaidu
[root@linux conf.d]# touch /tmp/testbaidu/index.html
[root@linux conf.d]# echo "nginx_test" > $?

修改Windows系統host文件:
編譯安裝php/nginx/nginx虛擬主機
訪問www.testbaidu.com即可:
編譯安裝php/nginx/nginx虛擬主機

默認虛擬主機:

默認虛擬主機的作用就是:如果有多個訪問的域名指向這臺web服務器,但某個域名未添加到nginx虛擬主機中,就會訪問默認虛擬主機(泛解析)

查看虛擬主機配置文件目錄:/etc/nginx/conf.d/

[root@linux conf.d]# ls
default.conf  testbaidu.conf

#當該目錄中存在多個虛擬主機配置文件時,排在最前面的就是默認虛擬主機

上文修改Windows系統hosts文件時,多添加了一個域名www.abc.com,該域名未配置虛擬主機,訪問就會訪問默認虛擬主機

測試:
編譯安裝php/nginx/nginx虛擬主機
#加載的結果為默認虛擬主機default.conf指向的頁面

設置testbaidu.conf為默認虛擬主機,編輯testbaidu.conf:

[root@linux conf.d]# vi testbaidu.conf 

在端口號后面添加default即可:
編譯安裝php/nginx/nginx虛擬主機
驗證并重啟nginx:

[root@linux conf.d]# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
[root@linux conf.d]# nginx -s reload

再次訪問www.abc.com:
編譯安裝php/nginx/nginx虛擬主機
#顯示結果為testbaidu.conf的虛擬主機頁面

禁用nginx默認虛擬主機:
編譯安裝php/nginx/nginx虛擬主機
#在默認虛擬主機配置文件中添加一行:deny all; 即可

禁用nginx默認虛擬主機后,訪問的域名如未在nginx虛擬主機配置文件server_name項定義的話就會提示403錯誤:
編譯安裝php/nginx/nginx虛擬主機

向AI問一下細節

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

AI

九寨沟县| 唐河县| 乌鲁木齐市| 锦屏县| 安龙县| 温宿县| 改则县| 洛扎县| 宜昌市| 喀喇沁旗| 边坝县| 哈尔滨市| 萨迦县| 鹿泉市| 南溪县| 疏勒县| 永康市| 眉山市| 中超| 兴国县| 扶绥县| 杭锦旗| 长春市| 弋阳县| 庆云县| 苏州市| 裕民县| 洪江市| 浮梁县| 育儿| 永靖县| 梁平县| 靖江市| 梁山县| 唐海县| 柞水县| 涡阳县| 汉阴县| 化德县| 福州市| 兴山县|