Linux伺服器---部落格wordpress

一生有你llx發表於2019-04-22

Wordpress

Wordpress 是一個開源的部落格平臺,是搭建個人部落格的首選,使用者可以去wordpress中文網站尋找幫助資料  

1 、下載wordpress軟體( https://cn.wordpress.org/download/releases/

 

2 、為wordpress建立一個自己的資料庫,我們起名為“wordpress”

 

3 、將wordpress安裝包解壓到apache的網頁根目錄“/var/www/html/” 

[root@localhost html]#  cp /wj/wordpress-4.1.tar /var/www/html/      // 拷貝壓縮包

[root@localhost html]#  tar  xvf wordpress-4.1.tar      // 解壓

[root@localhost html]#  mv wordpress-4.1 wordpress          // 重命令,這樣方便從瀏覽器開啟

 

4 、修改wordpress配置檔案。Wordpress提供了一個樣板檔案“wp-config-sample.php”,我們要將其拷貝一份,命名為“wp-config.php”

[root@localhost wordpress]#  cp wp-config-sample.php wp-config.php

[root@localhost wordpress]#  gedit wp-config.php

/** WordPress 資料庫的名稱  */

define('DB_NAME', 'wordpress');

 

/** MySQL 資料庫使用者名稱 */

define('DB_USER', 'root');

 

/** MySQL 資料庫密碼  */

define('DB_PASSWORD', '543092');

 

/** MySQL 主機  */

define('DB_HOST', 'localhost');

 

/**  建立資料表時預設的文字編碼  */

define('DB_CHARSET', 'utf8');

 

/**  資料庫整理型別。如不確定請勿更改  */

define('DB_COLLATE', 'utf8_unicode_ci');

 

/**  資料庫語言設定 */

define('WPLANG', 'zh_CN');

 

5 、重啟apache

[root@localhost wordpress]#  service httpd restart

停止  httpd                                               [ 確定 ]

正在啟動  httpd httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomain for ServerName

                                                          [ 確定 ]

 

6 、安裝。在瀏覽器輸入地址“127.0.0.1/wordpress”,開始安裝

1 )輸入基本資訊

2 )安裝成功

3 )登入。可以使用開始填寫的使用者名稱和密碼登入,地址是“127.0.0.1/wordpress/wp-login.php”

4 )管理介面”127.0.0.1/wordpress/wp-admin”

5 )主頁“127.0.0.1/wordpress”

    

 

 

 

Copyright@david  zhytwj2018@163.com


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29270124/viewspace-2286360/,如需轉載,請註明出處,否則將追究法律責任。

相關文章