Bt寶塔的面板很好用,但是我們不排除面板出現(xiàn)問題,不能登陸,這種情況我們就只能利用ssh登陸來輸入命令解決很多的問題,大鳥這里收羅了一點常用命令,不過我看到他們官方也是有的。宵云這里也就是記錄一下,方便自己平時查閱。
一:安裝寶塔
寶塔Linux面板5.9(穩(wěn)定版)安裝命令:
Centos安裝腳本
yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh 8c0882dde
Ubuntu/Deepin安裝腳本
wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && sudo bash install.sh 8c0882dde
Debian安裝腳本
wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && bash install.sh 8c0882dde
Fedora安裝腳本
wget -O install.sh http://download.bt.cn/install/install_6.0.sh && bash install.sh 8c0882dde
二:管理寶塔面板
停止面板
/etc/init.d/bt stop
啟動面板
/etc/init.d/bt start
重啟面板
/etc/init.d/bt restart
卸載面板
/etc/init.d/bt stop && chkconfig --del bt && rm -f /etc/init.d/bt && rm -rf /www/server/panel
查看當(dāng)前面板端口
cat /www/server/panel/data/port.pl
修改面板端口,如要改成8881(centos 6 系統(tǒng))
start
修改面板端口,如要改成8881(centos 7 系統(tǒng))
echo '8881' > /www/server/panel/data/port.pl && /etc/init.d/bt restartfirewall-cmd --permanent --zone=public --add-port=8881/tcpfirewall-cmd --reload
強(qiáng)制修改MySQL管理(root)密碼,如要改成123456
cd /www/server/panel && python tools.pyc root 123456
修改面板密碼,如要改成123456
cd /www/server/panel && python tools.pyc panel 123456
查看寶塔日志
cat /tmp/panelBoot.pl
查看軟件安裝日志
cat /tmp/panelExec.log
站點配置文件位置
/www/server/panel/vhost
刪除域名綁定面板
rm -f /www/server/panel/data/domain.conf
清理登陸限制
rm -f /www/server/panel/data/*.login
查看面板授權(quán)IP
cat /www/server/panel/data/limitip.conf
關(guān)閉訪問限制
rm -f /www/server/panel/data/limitip.conf
查看許可域名
cat /www/server/panel/data/domain.conf
關(guān)閉面板SSL
rm -f /www/server/panel/data/ssl.pl && /etc/init.d/bt restart
查看面板錯誤日志
cat /tmp/panelBoot
查看數(shù)據(jù)庫錯誤日志
cat /www/server/data/*.err
站點配置文件目錄(nginx)
/www/server/panel/vhost/nginx
站點配置文件目錄(apache)
/www/server/panel/vhost/apache
站點默認(rèn)目錄
/www/wwwroot
數(shù)據(jù)庫備份目錄
/www/backup/database
站點備份目錄
/www/backup/site
站點日志
/www/wwwlogs
三:Nginx服務(wù)管理
nginx安裝目錄
/www/server/nginx
啟動
/etc/init.d/nginx start
停止
/etc/init.d/nginx stop
重啟
/etc/init.d/nginx restart
啟載
/etc/init.d/nginx reload
nginx配置文件
/www/server/nginx/conf/nginx.conf
四:Apache服務(wù)管理
apache安裝目錄
/www/server/httpd
啟動
/etc/init.d/httpd start
停止
/etc/init.d/httpd stop
重啟
/etc/init.d/httpd restart
啟載
/etc/init.d/httpd reload
apache配置文件
/www/server/apache/conf/httpd.conf
五:MySQL服務(wù)管理
mysql安裝目錄
/www/server/mysql
phpmyadmin安裝目錄
/www/server/phpmyadmin
數(shù)據(jù)存儲目錄
/www/server/data
啟動
/etc/init.d/mysqld start
停止
/etc/init.d/mysqld stop
重啟
/etc/init.d/mysqld restart
啟載
/etc/init.d/mysqld reload
mysql配置文件
/etc/my.cnf
六:FTP服務(wù)管理
ftp安裝目錄
/www/server/pure-ftpd
啟動
/etc/init.d/pure-ftpd start
停止
/etc/init.d/pure-ftpd stop
重啟
/etc/init.d/pure-ftpd restart
ftp配置文件
/www/server/pure-ftpd/etc/pure-ftpd.conf
七:PHP服務(wù)管理
php安裝目錄
/www/server/php
啟動 (請根據(jù)安裝PHP版本號做更改,例如:/etc/init.d/php-fpm-54 start)
/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72} start
停止 (請根據(jù)安裝PHP版本號做更改,例如:/etc/init.d/php-fpm-54 stop)
/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72} stop
重啟 (請根據(jù)安裝PHP版本號做更改,例如:/etc/init.d/php-fpm-54 restart)
/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72} restart
啟載 (請根據(jù)安裝PHP版本號做更改,例如:/etc/init.d/php-fpm-54 reload)
/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72} reload
配置文件 (請根據(jù)安裝PHP版本號做更改,例如:/www/server/php/52/etc/php.ini)
/www/server/php/{52|53|54|55|56|70|71|72}/etc/php.ini
八:Redis服務(wù)管理
redis安裝目錄
/www/server/redis
啟動
/etc/init.d/redis start
停止
/etc/init.d/redis stop
redis配置文件
/www/server/redis/redis.conf
九:Memcached服務(wù)管理
memcached安裝目錄
/usr/local/memcached
啟動
/etc/init.d/memcached start
停止
/etc/init.d/memcached stop
重啟
/etc/init.d/memcached restart
啟載
/etc/init.d/memcached reload
十:寶塔面板切換免費版/專業(yè)版
免費版升級專業(yè)版
wget -O update.sh http://download.bt.cn/install/update.sh && bash update.sh pro
專業(yè)版降級為免費版
wget -O update.sh http://download.bt.cn/install/update.sh && bash update.sh free
如果免費版專業(yè)版切換看的不是很明了,可以看看大鳥寫過的教程:Linux-BT(寶塔面板)切換免費版/專業(yè)版教程
十一:Linux面板6.X安裝命令
Centos安裝命令:
yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh
Ubuntu/Deepin安裝命令:
wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && sudo bash install.sh
Debian安裝命令:
wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && bash install.sh
Fedora安裝命令:
wget -O install.sh http://download.bt.cn/install/install_6.0.sh && bash install.sh
十二:5.x平滑升級到6.x命令
curl http://download.bt.cn/install/update_to_6.sh|bash
注意:
1、Centos6 請勿執(zhí)行此升級命令,僅限于Centos7系統(tǒng)平滑升級
2、升級過程耗時較長且可能會受網(wǎng)絡(luò)因素影響導(dǎo)致升級失敗
3、如果升級后無法正常啟動面板,請重新執(zhí)行升級命令
4、升級有一定的風(fēng)險,生產(chǎn)環(huán)境請謹(jǐn)慎升級
十三:寶塔面板卸載命令
wget http://download.bt.cn/install/bt-uninstall.shsh bt-uninstall.sh
卸載教程:寶塔面板(linux)卸載的一些方法的整理以及卸載之后一些文件的刪除
十四:更新證書
"/root/.acme.sh"/acme.sh --cron --home "/root/.acme.sh"
強(qiáng)制更新所有l(wèi)et證書
"/root/.acme.sh"/acme.sh --cron --home "/root/.acme.sh" --force
十五:提示ip地址獲取失敗
面板綁定寶塔賬號提示ip地址獲取失?。?/p>
echo "125.88.182.170 www.bt.cn" >> /etc/hosts
十六:bt命令
寶塔面板新增快捷命令,SSH中輸入 bt直接調(diào)出來15個小工具,其中包括重啟面板、修改面板密碼、修改MYSQL密碼、取消綁定域名限制等。