下面由WordPress教程欄目給大家介紹Ubuntu LNMP怎么部署 WordPress,希望對需要的朋友有所幫助!
Ubuntu LNMP 部署 WordPress
軟件版本說明:
Ubuntu: 16.04 LTS;
WordPress: 4.7 zh-CN
安裝 PHP7.1
1、首先添加 PPA
sudo apt-get update sudo LC_ALL=en_US.UTF-8 add-apt-repository ppa:ondrej/php -y sudo apt-get update
2、然后,安裝 PHP7.1
sudo apt-get -y install php7.1 sudo apt-get -y install php7.1-mysql php7.1-fpm
安裝 Mysql
sudo apt-get -y install mysql-server-5.7
設置密碼就,OK。
至此,基本的 WordPress 環境就準備完畢了。
部署 WordPress
首先通過 git 拉取 WordPress 源代碼:
git clone https://github.com/JellyBool/wordpress.git /var/www/wordpress
配置 Mysql
通過下面的命令來登錄 mysql:
mysql -u root -p
在 mysql 執行:
CREATE DATABASE wordpress DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci; CREATE USER 'jellybool' IDENTIFIED BY 'laravist'; GRANT ALL PRIVILEGES ON wordpress.* TO 'jellybool'; quit
注意上面的 jellybool和laravist是根據你自己的需求來設置的。
配置 Nginx
打開配置文件:
vim /etc/nginx/sites-available/default
進行以下配置配置:
root /var/www/wordpress; index index.php index.html index.htm index.nginx-debian.html; # 注意我們添加了 index.php location / { try_files $uri $uri/ /index.php?$query_string; } location ~ \.php$ { try_files $uri /index.php =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/var/run/php/php7.1-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }
訪問你的域名,就可以進行非常出名的 WordPress 五分鐘安裝過程啦!安裝完畢之后,你就擁有一個 WordPress 的站點啦!
最后
配置 WordPress 文件上傳,打開 wp-config.php 文件:
define('FS_METHOD', 'direct'); define('FS_CHMOD_DIR', 0777); define('FS_CHMOD_FILE', 0777);
安裝其他的 php 擴展
sudo apt install -y php7.1-gd php7.1-mbstring php7.1-xmlrpc
至此,打完收工。