中文字幕亚洲第一精品|精品国产免费一区二区|久久婷婷五月六月综合版|中文字幕熟妇久久久人妻|久久综合精品国产一区无码|国产成人精品永久免费视频|午夜亚洲国产精品理论片a级|久久精品一区二区三区无码护土

 訪問(wèn)手機(jī)版  

Linux常用命令|Linux培訓(xùn)學(xué)習(xí)|考試認(rèn)證|工資待遇與招聘,認(rèn)準(zhǔn)超級(jí)網(wǎng)工!

招聘|合作 登陸|注冊(cè)

網(wǎng)絡(luò)工程師培訓(xùn)

當(dāng)前位置:網(wǎng)絡(luò)工程師 > 技術(shù)課程 > linux > 熱點(diǎn)關(guān)注 > linux常用命令

Linux服務(wù)器寶塔命令大全

時(shí)間:2019-07-27

linux命令大全 root_linux命令大全_linux命令大全進(jìn)程

Centos安裝腳本

yum install -y wget && wget -O install.sh http://download.bt.cn/install/install.sh && sh install.sh

Ubuntu/Deepin安裝腳本

wget -O install.sh http://download.bt.cn/install/install-ubuntu.sh && sudo bash install.sh

Debian安裝腳本

wget -O install.sh http://download.bt.cn/install/install-ubuntu.sh && bash install.sh

Fedora安裝腳本

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

查看寶塔日志

linux命令大全_linux命令大全 root_linux命令大全進(jìn)程

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