您好,登錄后才能下訂單哦!
Bt(寶塔面板)的面板很好用,但是我們不排除面板出現問題,不能登陸,這種情況我們就只能利用ssh登陸來輸入命令解決很多的問題,小編這里收羅了一點常用命令,不過我看到他們官方也是有的。56云這里也就是記錄一下,方便自己平時查閱。
一:安裝寶塔
寶塔Linux面板5.9(穩定版)安裝命令:
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
查看當前面板端口
cat /www/server/panel/data/port.pl
修改面板端口,如要改成8881(centos 6 系統)
start
修改面板端口,如要改成8881(centos 7 系統)
echo '8881' > /www/server/panel/data/port.pl && /etc/init.d/bt restartfirewall-cmd --permanent --zone=public --add-port=8881/tcpfirewall-cmd --reload
強制修改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
查看面板授權IP
cat /www/server/panel/data/limitip.conf
關閉訪問限制
rm -f /www/server/panel/data/limitip.conf
查看許可域名
cat /www/server/panel/data/domain.conf
關閉面板SSL
rm -f /www/server/panel/data/ssl.pl && /etc/init.d/bt restart
查看面板錯誤日志
cat /tmp/panelBoot
查看數據庫錯誤日志
cat /www/server/data/*.err
站點配置文件目錄(nginx)
/www/server/panel/vhost/nginx
站點配置文件目錄(apache)
/www/server/panel/vhost/apache
站點默認目錄
/www/wwwroot
數據庫備份目錄
/www/backup/database
站點備份目錄
/www/backup/site
站點日志
/www/wwwlogs
三:Nginx服務管理
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服務管理
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服務管理
mysql安裝目錄
/www/server/mysql
phpmyadmin安裝目錄
/www/server/phpmyadmin
數據存儲目錄
/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服務管理
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服務管理
php安裝目錄
/www/server/php
啟動(請根據安裝PHP版本號做更改,例如:/etc/init.d/php-fpm-54 start)
/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72} start
停止(請根據安裝PHP版本號做更改,例如:/etc/init.d/php-fpm-54 stop)
/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72} stop
重啟(請根據安裝PHP版本號做更改,例如:/etc/init.d/php-fpm-54 restart)
/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72} restart
啟載(請根據安裝PHP版本號做更改,例如:/etc/init.d/php-fpm-54 reload)
/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72} reload
配置文件(請根據安裝PHP版本號做更改,例如:/www/server/php/52/etc/php.ini)
/www/server/php/{52|53|54|55|56|70|71|72}/etc/php.ini
八:Redis服務管理
redis安裝目錄
/www/server/redis
啟動
/etc/init.d/redis start
停止
/etc/init.d/redis stop
redis配置文件
/www/server/redis/redis.conf
九:Memcached服務管理
memcached安裝目錄
/usr/local/memcached
啟動
/etc/init.d/memcached start
停止
/etc/init.d/memcached stop
重啟
/etc/init.d/memcached restart
啟載
/etc/init.d/memcached reload
十:寶塔面板切換免費版/專業版
免費版升級專業版
wget -O update.sh http://download.bt.cn/install/update.sh && bash update.sh pro
專業版降級為免費版
wget -O update.sh http://download.bt.cn/install/update.sh && bash update.sh free
如果免費版專業版切換看的不是很明了,可以看看大鳥寫過的教程:Linux-BT(寶塔面板)切換免費版/專業版教程
十一: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請勿執行此升級命令,僅限于Centos7系統平滑升級
2、升級過程耗時較長且可能會受網絡因素影響導致升級失敗
3、如果升級后無法正常啟動面板,請重新執行升級命令
4、升級有一定的風險,生產環境請謹慎升級
十三:寶塔面板卸載命令
wget http://download.bt.cn/install/bt-uninstall.shsh bt-uninstall.sh
卸載教程:寶塔面板(linux)卸載的一些方法的整理以及卸載之后一些文件的刪除
十四:更新證書
"/root/.acme.sh"/acme.sh --cron --home "/root/.acme.sh"
強制更新所有let證書
"/root/.acme.sh"/acme.sh --cron --home "/root/.acme.sh" --force
十五:提示ip地址獲取失敗
面板綁定寶塔賬號提示ip地址獲取失敗:
echo "125.88.182.170 www.bt.cn" >> /etc/hosts
十六:bt命令
寶塔面板新增快捷命令,SSH中輸入bt直接調出來15個小工具,其中包括重啟面板、修改面板密碼、修改MYSQL密碼、取消綁定域名限制等。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。