Centos安裝腳本
yum install -y wget && wget -O install.sh http://download.bt.cn/install/install.sh && sh install.shUbuntu/Deepin安裝腳本
wget -O install.sh http://download.bt.cn/install/install-ubuntu.sh && sudo bash install.shDebian安裝腳本
wget -O install.sh http://download.bt.cn/install/install-ubuntu.sh && bash install.shFedora安裝腳本
wget -O install.sh http://download.bt.cn/install/install.sh && bash install.sh
停止
/etc/init.d/bt stop啟動(dòng)
/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))
echo '8881' > /www/server/panel/data/port.pl && /etc/init.d/bt restart iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport 8881 -j ACCEPT service iptables save service iptables restart修改面板端口,如要改成8881(centos 7 系統(tǒng))
echo '8881' > /www/server/panel/data/port.pl && /etc/init.d/bt restart firewall-cmd --permanent --zone=public --add-port=8881/tcp firewall-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站點(diǎn)配置文件位置
/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查看許可域名
上一個(gè)教程:常用的Liniux及monkey命令
下一個(gè)教程:Linux testparm命令