91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Linux系統中重新安裝WordPress

發布時間:2021-03-02 17:01:38 來源:億速云 閱讀:342 作者:Leah 欄目:開發技術

這篇文章給大家介紹怎么在Linux系統中重新安裝WordPress,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

準備以下文件:

  •     原來wordpress的配置文件wp-config.php

  •     原來的wordpress數據庫備份文件

  •     系統安裝了wget(大部分默認安裝了)

#!bin/sh
#vps wordpress一鍵重新安裝腳本
#global setting
USERNAME="root"  #數據庫用戶名
PASSWORD="ksharpdabu.info"  #數據庫密碼

DBNAME="wordpress"     #要導入的數據庫名
BACKUPSQL="/home/ksharpdabu.sql"      #備份的sql文件絕對路徑

OLD_WP-CONFIG="/home/wp-config.php"  #以前保存到wp-config.php文件的絕對路徑
#setting end!!

WEBROOT="/home/wwwroot" #網站根目錄http://www.dabu.info/?p=4329

echo "###################################################################\n"
echo "please backup your website data when you run this shell script!!!!\n"
echo "please backup your website data when you run this shell script!!!!\n"
echo "please backup your website data when you run this shell script!!!!\n"
echo "###################################################################\n"

  get_char()     #這一段的代碼其實的功能就是讓用戶輸入任意鍵以繼續執行腳本,是常用的代碼段
  {
  SAVEDSTTY=`stty -g`
  stty -echo
  stty cbreak
  dd if=/dev/tty bs=1 count=1 2> /dev/null
  stty -raw
  stty echo
  stty $SAVEDSTTY
  }
  echo ""
  echo "Press any key to start..."
  char=`get_char`

create_db="create database IF NOT EXISTS ${DBNAME}"
mysql -u${USERNAME} -p${PASSWORD} -e "${create_db}" #創建名為wordpress的數據庫,如果不存在http://www.dabu.info/?p=4329

wget -c http:#cn.wordpress.org/wordpress-3.7.1-zh_CN.zip  #下載wordpress網站程序
unzip wordpress-3.7.1-zh_CN.zip  #解壓wordpress程序
cd wordpress  #切換到解壓后的wordpress目錄
cp ./*  ${WEBROOT}  #將網站程序復制到網站根目錄
\cp ${OLD_WP-CONFIG} ${WEBROOT}   #將原先的wordpress的配置文件wp-config.php放到網站根目錄
mysql -u${USERNAME} -p${PASSWORD} ${DBNAME} <${BACKUPSQL}   #導入你備份的數據庫到wordpress數據庫里

echo "###################################################################\n"
echo "please view you blog to check the success or failure.\n"
echo "view my blog:http://www.dabu.info/ if you have question!!\n"
echo "###################################################################\n"
 
#!bin/sh
#vps wordpress一鍵重新安裝腳本
#global setting
USERNAME="root"  #數據庫用戶名
PASSWORD="ksharpdabu.info"  #數據庫密碼
 
DBNAME="wordpress"     #要導入的數據庫名
BACKUPSQL="/home/ksharpdabu.sql"      #備份的sql文件絕對路徑
 
OLD_WP-CONFIG="/home/wp-config.php"  #以前保存到wp-config.php文件的絕對路徑
#setting end!!
 
WEBROOT="/home/wwwroot" #網站根目錄http://www.dabu.info/?p=4329
 
echo "###################################################################\n"
echo "please backup your website data when you run this shell script!!!!\n"
echo "please backup your website data when you run this shell script!!!!\n"
echo "please backup your website data when you run this shell script!!!!\n"
echo "###################################################################\n"
 
  get_char()     #這一段的代碼其實的功能就是讓用戶輸入任意鍵以繼續執行腳本,是常用的代碼段
  {
  SAVEDSTTY=`stty -g`
  stty -echo
  stty cbreak
  dd if=/dev/tty bs=1 count=1 2> /dev/null
  stty -raw
  stty echo
  stty $SAVEDSTTY
  }
  echo ""
  echo "Press any key to start..."
  char=`get_char`
 
create_db="create database IF NOT EXISTS ${DBNAME}"
mysql -u${USERNAME} -p${PASSWORD} -e "${create_db}" #創建名為wordpress的數據庫,如果不存在http://www.dabu.info/?p=4329
 
wget -c http:#cn.wordpress.org/wordpress-3.7.1-zh_CN.zip  #下載wordpress網站程序
unzip wordpress-3.7.1-zh_CN.zip  #解壓wordpress程序
cd wordpress  #切換到解壓后的wordpress目錄
cp ./*  ${WEBROOT}  #將網站程序復制到網站根目錄
\cp ${OLD_WP-CONFIG} ${WEBROOT}   #將原先的wordpress的配置文件wp-config.php放到網站根目錄
mysql -u${USERNAME} -p${PASSWORD} ${DBNAME} <${BACKUPSQL}   #導入你備份的數據庫到wordpress數據庫里
 
echo "###################################################################\n"
echo "please view you blog to check the success or failure.\n"
echo "view my blog:http://www.dabu.info/ if you have question!!\n"
echo "###################################################################\n"

Ps:根據需要修改腳本情況

1.如果你不但備份了數據庫,還備份了網站的插件等文件,那么,你就直接將:

wget -c http:#cn.wordpress.org/wordpress-3.7.1-zh_CN.zip  #下載wordpress網站程序
unzip wordpress-3.7.1-zh_CN.zip  #解壓wordpress程序
cd wordpress  #切換到解壓后的wordpress目錄
cp ./*  /home/wwwroot/  #將網站程序復制到網站根目錄
\cp ${OLD_WP-CONFIG} ${WEBROOT}
 
wget -c http:#cn.wordpress.org/wordpress-3.7.1-zh_CN.zip  #下載wordpress網站程序
unzip wordpress-3.7.1-zh_CN.zip  #解壓wordpress程序
cd wordpress  #切換到解壓后的wordpress目錄
cp ./*  /home/wwwroot/  #將網站程序復制到網站根目錄
\cp ${OLD_WP-CONFIG} ${WEBROOT}

刪除,換成將網站所有備份文件的解壓復制命令就可以了。

假設我整個我備份了/wwwroot目錄為all.tar.gz

那么就寫成:

tar -zvxf all.tar.gz  /home

2.如果僅僅是重新安裝

那么你就要添加一個刪除原先wordpress數據庫或表的命令:

drop database

關于怎么在Linux系統中重新安裝WordPress就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

黑河市| 宁南县| 莲花县| 邢台市| 光泽县| 扎兰屯市| 永昌县| 岳西县| 渭源县| 烟台市| 佛学| 澄城县| 青州市| 望谟县| 安福县| 民乐县| 共和县| 敦化市| 团风县| 固原市| 河西区| 阳曲县| 江永县| 汝州市| 天全县| 衡南县| 顺昌县| 辽源市| 科技| 邮箱| 天门市| 长宁区| 浙江省| 吉木乃县| 凤冈县| 德州市| 承德县| 平果县| 东安县| 合作市| 吴江市|