ubuntu16.04安裝wordpress

ubuntu16.04安裝wordpress和centos7安裝wordpress存在必定的差別。php

固然共性大於差別。html

共性是lamp環境。mysql

wordpress的必備環境。web

先共性再差別。sql

1、搭建lamp環境(Linux+Apache+MySQL+PHP(含phpmyadmin))數據庫

(1)安裝apacheapache

安裝命令ubuntu

apt-get install apache2vim

apache經常使用命令:centos

service apache2 restart 重啓

service apache2 status 狀態

service apache2 start 啓動

service apache2 stop 關閉

(2)安裝mysql

apt-get install mysql-server mysql-client

會顯示讓你輸入密碼

輸入密碼後會再次顯示確認密碼

你所作的是確保兩次密碼一致並回車便可。

mysql命令:

service mysql retart

service mysql status

service mysql start

service mysql stop

(3)安裝php

安裝命令:

apt-get install php7.0

apt-get install libapache2-mod-php7.0 

apt-get install php7.0-mysql

 

重啓apache和mysql

service apache2 restart

service mysql restart

編輯文件

vim /var/www/html/phpinfo.php

<?php echo phpinfo();?>

瀏覽器訪問:

http:// IP地址/phpinfo.php,出現PHP版本界面

 

(4)安裝phpmyadmin

安裝命令

sudo apt-get install phpmyadmin

 

安裝時:空格選擇apache2,enter肯定,下一步配置數據庫,輸入密碼。

sudo ln -s /usr/share/phpmyadmin /var/www/html

 

啓用Apache mod_rewrite模塊,後面修改wordpress連接會用到

sudo a2enmod rewrite 

 

重啓服務

service php7.0-fpm restart

 

配置vim /etc/apache2/apache2.conf

配置文件尾部添加以下內容:

AddType application/x-httpd-php .php .htm .html 

AddDefaultCharset UTF-8

 

重啓apache服務

service apache2 restart

 

經過phpmyadmin在後臺創建數據庫爲wordpress

並添加對應的用戶並受權

 

也能夠經過以下的命令行形式:

# 登陸數據庫
mysql -u root -p
# 建立數據庫
CREATE DATABASE wordpress;
# 建立數據庫用戶和密碼
CREATE USER wordpressuser@localhost IDENTIFIED BY '123456';
# 設置wordpressuser訪問wordpress數據庫權限
GRANT ALL PRIVILEGES ON wordpress.* TO wordpressuser@localhost IDENTIFIED BY '123456';
# 刷新數據庫設置
FLUSH PRIVILEGES;
# 退出數據庫
exit

 

(5)安裝wordpress

說明:中文版和英文版文件後綴名不一樣,所以解壓方式不一樣存在差別,後面的步驟基本同樣,沒有變化,本人試驗,絕對有效。

centos7一樣適用,關於centos7安裝方式能夠參考:centos7之安裝wordpress

下載

wget http://wordpress.org/latest.tar.gz(英文版)

wget https://cn.wordpress.org/wordpress-4.8-zh_CN.zip(中文版)

注意:中文版爲zip包,須要經過unzip命令進行解壓 

解壓

tar -xzvf latest.tar.gz

遠程批量傳輸

sudo rsync -avP ~/wordpress/ /var/www/html/wordpress/

切換到wordpress目錄
cd /var/www/html/wordpress

 複製wp-config.php文件
cp wp-config-sample.php wp-config.php

編輯wp-config.php文件
sudo vim wp-config.php

默認內容以下:
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'database_name_here');
/** MySQL database username */
define('DB_USER', 'username_here');
/** MySQL database password */
define('DB_PASSWORD', 'password_here');
/** MySQL hostname */
define('DB_HOST', 'localhost');

將其修改成:

// ** 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', 'wordpress');
/** MySQL database password */
define('DB_PASSWORD', '123456');
/** MySQL hostname */
define('DB_HOST', 'localhost');

 

完成後在瀏覽器輸入地址:www.example.com/wordpress/wp-admin/install.php 按照步驟來,一步一步安裝。Ubuntu16.04除了安裝lamp環境與centos存在差別外不少步驟都是同樣的。
相關文章
相關標籤/搜索