时间:2020-10-29来源:www.pcxitongcheng.com作者:电脑系统城
yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.shUbuntu/Deepin安装脚本
wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && sudo bash install.shDebian安装脚本
wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && bash install.shFedora安装脚本
wget -O install.sh http://download.bt.cn/install/install_6.0.sh && bash install.sh
bt停止
/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.py root 123456修改面板密码,如要改成123456
cd /www/server/panel && python tools.py 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
/www/server/nginx启动
/etc/init.d/nginx start停止
/etc/init.d/nginx stop重启
/etc/init.d/nginx restart启载
/etc/init.d/nginx reloadnginx配置文件
/www/server/nginx/conf/nginx.conf
/www/server/httpd启动
/etc/init.d/httpd start停止
/etc/init.d/httpd stop重启
/etc/init.d/httpd restart启载
/etc/init.d/httpd reloadapache配置文件
/www/server/apache/conf/httpd.conf
/www/server/mysqlphpmyadmin安装目录
/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 reloadmysql配置文件
/etc/my.cnf
/www/server/pure-ftpd启动
/etc/init.d/pure-ftpd start停止
/etc/init.d/pure-ftpd stop重启
/etc/init.d/pure-ftpd restartftp配置文件
/www/server/pure-ftpd/etc/pure-ftpd.conf
/www/server/php启动(请根据安装PHP版本号做更改,例如:/etc/init.d/php-fpm-54 start)
/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72|73|74} start停止(请根据安装PHP版本号做更改,例如:/etc/init.d/php-fpm-54 stop)
/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72|73|74} stop重启(请根据安装PHP版本号做更改,例如:/etc/init.d/php-fpm-54 restart)
/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72|73|74} restart启载(请根据安装PHP版本号做更改,例如:/etc/init.d/php-fpm-54 reload)
/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72|73|74} reload配置文件(请根据安装PHP版本号做更改,例如:/www/server/php/52/etc/php.ini)
/www/server/php/{52|53|54|55|56|70|71|72|73|74}/etc/php.ini
/www/server/redis启动
/etc/init.d/redis start停止
/etc/init.d/redis stopredis配置文件
/www/server/redis/redis.conf
/usr/local/memcached启动
/etc/init.d/memcached start停止
/etc/init.d/memcached stop重启
/etc/init.d/memcached restart启载
/etc/init.d/memcached reload
2024-07-18
Centos 7 二进制安装配置 MariaDB数据库2024-07-18
Centos7默认firewalld防火墙使用命令大全2024-07-07
四种执行python系统命令的方法常用权限linux系统内有档案有三种身份 u:拥有者 g:群组 o:其他人这些身份对于文档常用的有下面权限:r:读权限,用户可以读取文档的内容,如用cat,more查看w:写权限,用户可以编辑文档x...
2024-07-07
然而,如果我们遵循通常的 WordPress 最佳实践,这些安全问题可以避免。在本篇中,我们会向你展示如何使用 WPSeku,一个 Linux 中的 WordPress 漏洞扫描器,它可以被用来找出你安装...
2024-07-03