準備環境:
centos7.6環境下
web服務器(nginx+php):主機名:web01,ip:192.168.248.172
mysql服務器(mariadb):主機名:db01,ip:192.168.248.177php
關閉selinux安全插件
關閉防火牆
----------------------------------------------------------------------------------------------------------------------------------------------------------html
注意:這裏nginx默認是靜態服務器,要想處理php動態文件必需要安裝php相關的軟件。mysql
安裝nginx須要先配置nginx的yum倉庫,配置方法在nginx.org官網查看到:
http://nginx.org/en/linux_packages.html#RHEL-CentOSlinux
按照以上方法,搭建一個穩定版的nginx的yum源,:nginx
[root@web01 html]# cat /etc/yum.repos.d/nginx-stable.repo [nginx-stable] name = Add a nginx_stable repository #只是描述,不重要 baseurl = http://nginx.org/packages/centos/$releasever/$basearch/ #聯網狀況下,下載 gpgcheck = 1 #是否開啓檢查,0關閉 gpgkey = https://nginx.org/keys/nginx_signing.key #基於此地址檢查
搭建好yum倉庫後web
1 [root@web01 html]# yum install nginx -y #開始安裝 2 [root@web01 html]# systemctl start nginx 3 [root@web01 html]# systemctl enable nginx #把nginx執行爲開機自啓動 4 [root@web01 html]# systemctl status nginx #檢查nginx狀態
web01服務器上:
#執行yum install安裝如下軟件包,我用的是阿里雲的base源和epel源
#檢查軟件包安裝狀況sql
[root@web01 html]# rpm -qa |grep php #列出相關的php軟件包 php-common-5.4.16-46.el7.x86_64 php-fpm-5.4.16-46.el7.x86_64 php-mysql-5.4.16-46.el7.x86_64 php-pdo-5.4.16-46.el7.x86_64 [root@web01 html]# systemctl start php-fpm
#這裏能夠選擇啓動php-fpm服務,這個服務是幫助nginx解析動態php文件的。數據庫
-----------------------------------------------------------------------------------------------------------------------------------------
db01服務器上:
#安裝mysql服務,注意:centos7裏mysql服務的軟件包名爲mariadb,而非mysql
#安裝如下軟件包vim
[root@db01 ~]# rpm -qa |grep mariadb mariadb-libs-5.5.60-1.el7_5.x86_64 mariadb-5.5.60-1.el7_5.x86_64 mariadb-server-5.5.60-1.el7_5.x86_64 [root@db01 ~]# systemctl start mariadb.service #啓動mariadb服務 [root@db01 ~]# systemctl enable mariadb.service [root@db01 ~]# systemctl status mariadb.service
[root@web01 html]# cat /etc/nginx/nginx.conf ... include /etc/nginx/conf.d/*.conf; [root@web01 html]# cat /etc/nginx/conf.d/web.test.com.conf #主配置文件包含了以.conf結尾的文件 server { listen 80; #nginx服務被監聽在的端口,可修改 server_name www.dark.com; #定義的域名,windows使用域名訪問時要在windows下hosts定義 access_log /var/log/nginx/dark.com.log tt; #定義的日誌格式,tt爲定義的日誌格式變量 #如下才是重點 location / { root /usr/share/nginx/html; #這裏定義默認的/目錄爲/usr/share/nginx/html,即php文件所在的目錄 index index.html index.php; #設置默認的訪問頁面,注意:index.php不能少 } #如下的php動態的編寫格式在default.conf文件裏有例句格式 location ~ \.php$ { #匹配以php結尾的文件 root html; fastcgi_pass 127.0.0.1:9000; #匹配到的php文件讓php-fpm服務幫忙解析,檢查進程端口是否開啓 fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name; #指定了存放php文件的位置,也能夠在root那行定義 include fastcgi_params; } } [root@web01 html]# nginx -t #檢查nginx配置文件語法是否有誤 [root@web01 html]# systemctl restart nginx
[root@web01 html]# pwd /usr/share/nginx/html [root@web01 html]# unzip wordpress5.0.zip
#解壓wordpress壓縮包至 /usr/share/nginx/html下,即前面nginx配置文件定義的路徑,注意:解壓後要有index.php文件,而不是wordpress5.0目錄。windows
[root@web01 html]# ll #這裏搭建的是php網站,最好把解壓以前已經存在的無關的html,php和其餘文件都註釋了
-----------------------------------------------------------------------------------------------------------------------------------------
#注意:瀏覽器有必定時間的緩存,若是頁面打不開或與配置的不一致也頗有多是緩存的緣由,
這時候可在命令行配合curl 命令來檢查。
#完成上述步驟後,就能夠經過瀏覽器開始wordpress初始化安裝了
初始頁:http://192.168.248.172/index.php 例如:http://ip/index.php
初始化時要求輸入:
數據庫名稱爲wordpress
數據庫用戶名爲wordpress
數據庫密碼爲123
表前綴wp_
#完成上面頁面的輸入信息後,會提示只能手動輸入,則
[root@web01 html]# vim wp-config.php #把框中的信息複製到 wp-config.php裏
#信息輸入完成完成
----------------------------------------------------------------------------------------------------------------------------------------
[root@db01 ~]# mysql #進入mysql,執行如下幾行
create database wordpress; #建立wordpress表 grant all privileges on wordpress.* to wordpress@'localhost' identified by '123'; #建立用戶名和密碼,即初始化添加的用戶密碼 grant all privileges on wordpress.* to wordpress@'192.168.248.%' identified by '123'; #容許此網段內使用此用戶名密碼登陸數據庫 [root@web01 html]# mysql -uwordpress -p123 -h192.168.248.177 #在web01上驗證是否能遠程登陸數據庫 重啓全部服務 [root@web01 html]# systemctl restart nginx [root@web01 html]# systemctl restart php-fpm [root@web01 html]# ss -lntup |grep 9000 [root@db01 ~]# systemctl restart mariadb.service
###############博客文章爲原創,僅供參考學習使用########################
--------------------------------------------------------------------------------------------------------------------------------------------
大功告成,搭建完成