系統(tǒng)centos 7.2 ,
LNMP 環(huán)境代表 Linux 系統(tǒng)下 Nginx + MySQL + PHP 網(wǎng)站服務器架構.
第一步: Nginx
- yum install nginx
- 啟動 systemctl start nginx
- systemctl enable nginx.service //設置開機啟動nginx服務
//chkconfig是管理系統(tǒng)服務(service)的命令行工具溺森。所謂系統(tǒng)服務(service)清蚀,就是隨系統(tǒng)啟動而啟動淋肾,隨系統(tǒng)關閉而關閉的程序涂籽。 - 重新啟動 :systemctl restart nginx.service
- 瀏覽器中測試 Nginx 服務是否正常運行。訪問 CentOS 云服務器公網(wǎng) IP男翰。
若服務正常饺鹃,顯示結果welcome nginx。
第二步:安裝配置 MySQL
從 CentOS 7 系統(tǒng)開始崔拥,MariaDB 成為 yum 源中默認的數(shù)據(jù)庫安裝包。
- 安裝 : yum install mariadb mariadb-server
2.啟動 : systemctl start mariadb.service
3.進入mysql環(huán)境 凤覆,輸入 mysql
4.登錄 MySQL 链瓦,刪除空用戶。輸入命令:
mysql>select user,host,password from mysql.user;
mysql>drop user ''@localhost;
5.修改 root 密碼盯桦。輸入命令:
mysql>update mysql.user set password = PASSWORD('此處輸入您新設密碼') where user='root';
mysql>flush privileges;
第三步:安裝配置 PHP
- 安裝 PHP 慈俯。輸入命令進行安裝:
yum install php lighttpd-fastcgi php-cli php-mysql php-gd php-imap php-ldap
php-odbc php-pear php-xml php-xmlrpc php-mbstring php-mcrypt php-mssql php-snmp php-soap
2.安裝所需組件使 PHP 支持 MySQL、FastCGI 模式拥峦。
yum install php-tidy php-common php-devel php-fpm php-mysql
- 啟動 PHP-FPM贴膘。輸入命令啟動 PHP-FPM 服務
systemctl start php-fpm.service
4.輸入命令查看 PHP-FPM 默認配置:
cat /etc/php-fpm.d/www.conf |grep -i 'listen ='
返回結果為:listen = 127.0.0.1:9000,表明 PHP-FPM 默認配置的監(jiān)聽端口為 9000略号,只需修改配置刑峡,將 PHP 解析的請求轉發(fā)到 127.0.0.0:9000 處理即可。
5.修改 Nginx 配置璃哟。
輸入命令查找 Nginx 配置文件:nginx -t
使用vi命令修改該配置文件:
server {
listen 80 ;
root /usr/share/nginx/html;
server_name localhost;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
index index.php index.html index.htm;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
- 修改完成后氛琢,按“ Esc ”鍵,輸入“ :wq ”随闪,保存文件并返回阳似。
- 查看配置是否正確。輸入命令:cat /etc/nginx/nginx.conf 铐伴。
- 配置完成后撮奏,重啟服務。輸入命令 systemctl restart nginx
把上面三個設置弄成開機当宴,就自己啟動
systemctl enable nginx.service
systemctl enable mariadb.service
systemctl enable php-fpm.service
第四步:環(huán)境配置驗證
用以下命令在 web 目錄下創(chuàng)建 index.php:
vim /usr/share/nginx/html/index.php
寫入如下內容:
<?php
echo "<title>Test Page</title>";
echo "hello world";
?>
在瀏覽器中畜吊,訪問 CentOS 云服務器公網(wǎng) IP ,查看環(huán)境配置是否成功户矢。如果頁面可以顯示“hello world”玲献,說明配置成功。
參考文檔 :
第五步:給wordpress 配置數(shù)據(jù)庫
1.登陸mysql環(huán)境
mysql -uroot -p
-
為 WordPress 創(chuàng)建數(shù)據(jù)庫并設置用戶名和密碼(本教程設置如下梯浪,您可自行定義)捌年。
為 WordPress 創(chuàng)建 MySQL 數(shù)據(jù)庫 “wordpress”。CREATE DATABASE wordpress;
為已創(chuàng)建好的 MySQL 數(shù)據(jù)庫創(chuàng)建一個新用戶 “user@localhost”挂洛。
CREATE USER user@localhost;
并為此用戶設置密碼“wordpresspassword”礼预。
SET PASSWORD FOR user@localhost=PASSWORD("wordpresspassword");
-
為創(chuàng)建的用戶開通數(shù)據(jù)庫 “wordpress” 的完全訪問權限。
GRANT ALL PRIVILEGES ON wordpress.* TO user@localhost IDENTIFIED BY 'wordpresspassword';
-
使用以下命令使所有配置生效虏劲。
FLUSH PRIVILEGES;
-
配置完成托酸,退出 MySQL褒颈。
exit
第六步:上傳wordpress
1.通過ftp軟件,把下載好的wordpress 文件夾上傳到 /usr/share/nginx/html/
目錄下励堡。
-
創(chuàng)建新配置文件
將wp-config-sample.php
文件復制到名為wp-config.php
的文件,使用以下命令創(chuàng)建新的配置文件谷丸,并將原先的示例配置文件保留作為備份。cd wordpress/ cp wp-config-sample.php wp-config.php
-
打開并編輯新創(chuàng)建的配置文件念秧。
vim wp-config.php
找到文件中 MySQL 的部分淤井,按字母“I”鍵或 “Insert” 鍵切換至編輯模式,將步驟 3.2 中已配置好的數(shù)據(jù)庫相關信息寫入:
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'wordpress');
/** MySQL database username */
define('DB_USER', 'user');
/** MySQL database password */
define('DB_PASSWORD', 'wordpresspassword');
/** MySQL hostname */
define('DB_HOST', 'localhost');
修改完成后摊趾,按“Esc”鍵币狠,輸入“:wq”,保存文件返回砾层。