av激情亚洲男人的天堂国语,日韩欧美精品一中文字幕,无码av一区二区三区无码,国产又色又爽又刺激的a片,国产又色又爽又刺激的a片

寶塔Linux面板命令大全

安裝寶塔

Centos安裝腳本

創(chuàng)新互聯(lián)公司是一家專業(yè)提供廣饒企業(yè)網(wǎng)站建設(shè),專注與成都做網(wǎng)站、成都網(wǎng)站制作、html5、小程序制作等業(yè)務(wù)。10年已為廣饒眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)絡(luò)公司優(yōu)惠進(jìn)行中。

yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh?4ea2324bf

Ubuntu/Deepin安裝腳本

wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && sudo bash install.sh?4ea2324bf

Debian安裝腳本

wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && bash install.sh?4ea2324bf

Fedora安裝腳本

wget -O install.sh http://download.bt.cn/install/install_6.0.sh && bash install.sh?4ea2324bf

管理寶塔

寶塔工具箱(包含下列絕大部分功能 直接ssh中執(zhí)行bt命令 僅限6.x以上版本面板)

bt

停止

/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.py root 123456

修改面板密碼,如要改成123456

cd /www/server/panel && python tools.py 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

查看許可域名

cat /www/server/panel/data/domain.conf

關(guān)閉面板SSL

rm -f /www/server/panel/data/ssl.pl && /etc/init.d/bt restart

查看面板錯(cuò)誤日志

cat /tmp/panelBoot

查看數(shù)據(jù)庫(kù)錯(cuò)誤日志

cat /www/server/data/*.err

站點(diǎn)配置文件目錄(nginx)

/www/server/panel/vhost/nginx

站點(diǎn)配置文件目錄(apache)

/www/server/panel/vhost/apache

站點(diǎn)默認(rèn)目錄

/www/wwwroot

數(shù)據(jù)庫(kù)備份目錄

/www/backup/database

站點(diǎn)備份目錄

/www/backup/site

站點(diǎn)日志

/www/wwwlogs

Nginx服務(wù)管理

nginx安裝目錄

/www/server/nginx

啟動(dòng)

/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

啟動(dòng)

/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ù)存儲(chǔ)目錄

/www/server/data

啟動(dòng)

/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

啟動(dòng)

/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

啟動(dòng)(請(qǐng)根據(jù)安裝PHP版本號(hào)做更改,例如:/etc/init.d/php-fpm-54 start)

/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72|73|74} start

停止(請(qǐng)根據(jù)安裝PHP版本號(hào)做更改,例如:/etc/init.d/php-fpm-54 stop)

/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72|73|74} stop

重啟(請(qǐng)根據(jù)安裝PHP版本號(hào)做更改,例如:/etc/init.d/php-fpm-54 restart)

/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72|73|74} restart

啟載(請(qǐng)根據(jù)安裝PHP版本號(hào)做更改,例如:/etc/init.d/php-fpm-54 reload)

/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72|73|74} reload

配置文件(請(qǐng)根據(jù)安裝PHP版本號(hào)做更改,例如:/www/server/php/52/etc/php.ini)

/www/server/php/{52|53|54|55|56|70|71|72|73|74}/etc/php.ini

Redis服務(wù)管理

redis安裝目錄

/www/server/redis

啟動(dòng)

/etc/init.d/redis start

停止

/etc/init.d/redis stop

redis配置文件

/www/server/redis/redis.conf

Memcached服務(wù)管理

memcached安裝目錄

/usr/local/memcached

啟動(dòng)

/etc/init.d/memcached start

停止

/etc/init.d/memcached stop

重啟

/etc/init.d/memcached restart

啟載

/etc/init.d/memcached reload

分享題目:寶塔Linux面板命令大全
分享網(wǎng)址:http://uogjgqi.cn/article/djjseoj.html
掃二維碼與項(xiàng)目經(jīng)理溝通

我們?cè)谖⑿派?4小時(shí)期待你的聲音

解答本文疑問/技術(shù)咨詢/運(yùn)營(yíng)咨詢/技術(shù)建議/互聯(lián)網(wǎng)交流