Ubuntu 16.10(x86) Install WordPress SRV 4.7.1-1-5

下載wordpress程式
(進入tmp目錄) cd /tmp

curl -O https://wordpress.org/latest.tar.gz
【備註】以上連接認Download最新版的wordpress
Ver 471 【curl -O https://wordpress.org/wordpress-4.7.1.tar.gz

Ubuntu 16.10(x86) Install WordPress SRV 4.7.1-1-5

將下載的安裝解壓
tar xzvf latest.tar.gz
tar xzvf wordpress-4.7.1.tar.gz(下圖是解壓完成)

Ubuntu 16.10(x86) Install WordPress SRV 4.7.1-1-5

創建.htaccess文件
touch /tmp/wordpress/.htaccess
chmod 660 /tmp/wordpress/.htaccess

Ubuntu 16.10(x86) Install WordPress SRV 4.7.1-1-5

創建設定檔:
cp /tmp/wordpress/wp-config-sample.PHP /tmp/wordpress/wp-config.php

Ubuntu 16.10(x86) Install WordPress SRV 4.7.1-1-5

wordpress複製到網站根目錄:
sudo rm -rf /var/www/html/*
sudo cp -a /tmp/wordpress/. /var/www/html

Ubuntu 16.10(x86) Install WordPress SRV 4.7.1-1-5

更改wordpress目錄許可權:
sudo chown -R user:www-data /var/www/html

Ubuntu 16.10(x86) Install WordPress SRV 4.7.1-1-5

更改目錄許可權:
sudo find /var/www/html -type d -exec chmod g+s {} \;
sudo chmod g+w /var/www/html/wp-content
sudo chmod -R g+w /var/www/html/wp-content/themes
sudo chmod -R g+w /var/www/html/wp-content/plugins

Ubuntu 16.10(x86) Install WordPress SRV 4.7.1-1-5

編輯wordpress設定檔
sudo vim /var/www/html/wp-config.php

Ubuntu 16.10(x86) Install WordPress SRV 4.7.1-1-5

輸入數據庫名稱、用戶名與密碼
在數據庫名稱下,插入一行【define(‘FS_METHOD‘,‘direct‘);】
修改

Ubuntu 16.10(x86) Install WordPress SRV 4.7.1-1-5

設置密鈅【define數值】認密鈅【空】

Ubuntu 16.10(x86) Install WordPress SRV 4.7.1-1-5

獲取密鈅
curl -s https://api.wordpress.org/secret-key/1.1/salt/

Ubuntu 16.10(x86) Install WordPress SRV 4.7.1-1-5

更換密鈅位置

Ubuntu 16.10(x86) Install WordPress SRV 4.7.1-1-5

輸入“:wq”保存與退出

相关文章

ubuntu退出redis的示例:指定配置文件方式启动源码redis:roo...
ubuntu中mysql改密码忘了的解决方法:1.在终端中切换到root权...
ubuntu安装mysql失败的解决方法原因:可能是原有的MySQL还有...
使用centos和ubuntu建站的区别有以下几点1.CentOS是Linux发行...
ubuntu图形界面和字符界面切换的方法:可以通过快捷键CTRL+A...
ubuntu中重启mysql失败的解决方法1.首先,在ubuntu命令行中,...