宝塔面板的LINUX命令大全

文章导读
整理自官网的命令,进行了小符修改,包括专业版的安装、升级等内容。

常见问题
IP获取失败

echo ‘125.81.61.240 www.bt.cn’ >> /etc/hosts
手动更新let证书

“/root/.acme.sh”/acme.sh –cron –home “/root/.acme.sh”
强制更新所有let证书

“/root/.acme.sh”/acme.sh –cron –home “/root/.acme.sh” –force
安装宝塔
6.x安装命令

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

6.x版本之间升级命令

curl http://download.bt.cn/install/update6.sh|bash

5.x升级6.x命令

curl http://download.bt.cn/install/update_to_6.sh|bash

Centos安装5.x免费脚本

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

专业版宝塔
5.x免费版升级到专业版

wget -O update.sh http://download.bt.cn/install/update_pro.sh && bash update.sh pro

centos安装专业版

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

Ubuntu/Deepin安装脚本

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

Debian安装脚本

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

Fedora安装脚本

wget -O install.sh http://download.bt.cn/install/install_pro.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 系统)

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 系统)

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

强制修改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} start
停止

(请根据安装PHP版本号做更改,例如:/etc/init.d/php-fpm-54 stop)
/etc/init.d/php-fpm-{52|53|54|55|56|70|71} stop
重启

(请根据安装PHP版本号做更改,例如:/etc/init.d/php-fpm-54 restart)
/etc/init.d/php-fpm-{52|53|54|55|56|70|71} restart
启载

(请根据安装PHP版本号做更改,例如:/etc/init.d/php-fpm-54 reload)
/etc/init.d/php-fpm-{52|53|54|55|56|70|71} reload
配置文件

(请根据安装PHP版本号做更改,例如:/www/server/php/52/etc/php.ini)
/www/server/php/{52|53|54|55|56|70|71}/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

命令工具地址:点击下载

好歌资源网,欢迎分享,欢迎评论,(开通PLUS会员资源免费下 )本站积分兑换是1RMB:1金币。
©下载资源版权归作者所有;本站所有资源均来源于网络和用户上传,仅供学习使用,请支持正版
好歌源码网 » 宝塔面板的LINUX命令大全

发表回复

提供最优质的网赚资源集合分享平台

立即查看 了解详情
bikini hot girl bigztube.mobi porn hub new
magandang camera ng cellphone teleseryena.com pvl all filipino conference schedule
سكس فلاح مصرى yatarab.com سكي امهات
tamil local kuthu songs fuckster.mobi india xxx hd com
indian defloration dunato.mobi village bath scene
abot kamay na pangarap dec 2 akoypinoytv.net ang probinsyano december 14 2015
mani4u porncorn.info xoossip
نيك في العربية bendito-porno.com نيك جماعى
abot kamay na pangarap oct 13 2022 teleseryestv.com tinutulan
big fat sex indianhardfuck.net sexy film janwar wali
xxx in indian fukando.mobi hindi sxi video
hotsouthindiansex.com pornofantasy.info mom and son xnxxx
fucking girl video porndig.mobi rubfuck.com
hentai smash bros hentairulz.com sakimi chan hentai
big tiddy onee san hentai4all.com yukari yakumo hentai