原文地址:http://www.hangzai.net/debian-9-php-7-1-nginx-mysql-5-7-wordpress/php
第一步安裝須要的依賴包
apt install nginx mysql-server php7.1-fpm php7.1-mysql php7.1-json php7.1-mcrypt php7.1-curl php7.1-opcache php7.1-mbstring php7.1-readline
第二步修改nginx配置文件
修改文件html
nano hangzai.net.conf
mysql
server { server_name www.hangzai.net; access_log /data/www/hangzai.net/logs/access.log; error_log /data/www/hangzai.net/logs/error.log; root /data/www/hangzai.net/htdocs; location / { index index.html index.htm index.php; } location ~ \.php$ { include /etc/nginx/fastcgi_params; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; } }
第三步權限
cat /etc/passwd chown -R www-data:www-data /data/www
第四步配置WordPress
配置數據庫部分
寫博客固然得先建好數據庫,下面咱們來配置一下MySQL數據庫。nginx
進入MySQL:sql
mysql -uroot -p
輸入root用戶的密碼進入數據庫。接下來就須要建立WordPress數據庫了:數據庫
CREATE DATABASE wordpress;
接下來爲wordpress建立一個新用戶:json
CREATE USER wpuser@localhost;
爲此用戶設置密碼,好比把密碼設置成wordpresspassword
:瀏覽器
SET PASSWORD FOR wpuser@localhost=PASSWORD("wordpresspassword");
還要爲此用戶設置訪問wordpress數據庫的權限:php7
GRANT ALL PRIVILEGES ON wordpress.* TO wpuser@localhost IDENTIFIED BY 'wordpresspassword';
最後將權限生效:curl
FLUSH PRIVILEGES;
下載wordpress 安裝包
wget https://cn.wordpress.org/wordpress-4.8.1-zh_CN.zip
解壓wordpress 安裝包
upzip wordpress-4.8.1-zh_CN.zip
目錄更名爲 htdocs
mv wordpress htdocs
經過瀏覽器直接訪問域名,填寫數據庫信息,而後下一步,會把配置文件信息輸出在頁面的文本框,把文本框內容所有複製下來,在htdocs目錄建立新文件wp-config.php,把內容粘貼到裏邊,再下一步設置站點信息和帳戶。