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

 訪問手機版  

Linux常用命令|Linux培訓學習|考試認證|工資待遇與招聘,認準超級網(wǎng)工!

招聘|合作 登陸|注冊

網(wǎng)絡工程師培訓

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

寶塔linux面板命令大全

時間:2019-07-28

linux命令大全_linux命令分類大全_linux命令大全 重啟

安裝

Centos安裝腳本

yum install -y wget && wget -O install.sh && sh install.sh

Ubuntu/Deepin安裝腳本

wget -O install.sh && sudo bash install.sh

Fedora安裝腳本

wget -O install.sh && bash install.sh

管理

停止

/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 系統(tǒng))

the port on which the data service listens. if you specify 0, prime performance manager uses a random available port, 1024 and above. prime performance manager maintains the chosen port until the next server restart. 45751 and 55751 are good alternate ports for gateways and units respectively.。the port on which the log in service listens. if you specify 0, prime performance manager uses a random available port, 1024 and above. prime performance manager maintains the chosen port until the next server restart. 45752 and 55752 are good alternate ports for gateways and units respectively.。a7'>o 392=synoptics port broker port {knak 393=data interpretation system .s6 394=embl nucleic data transfer vbif+|%^wihl 395=netscout control protocol -"xxi 396=novell netware over ip poxz* 397=multi protocol trans. net. k&。

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