安装宝塔Centos安装脚本 yum install -y wget && wget -O install.sh http://download.bt.cn/install/install.sh && sh install.shUbuntu/Deepin安装脚本 wget -O install.sh http://download.bt.cn/install/install-ubuntu.sh && sudo bash install.shDebian安装脚本 wget -O install.sh http://download.bt.cn/install/install-ubuntu.sh && bash install.shFedora安装脚本 wget -O install.sh http://download.bt.cn/install/install.sh && bash install.sh管理宝塔停止 [color=rgb(230] 219, 116)]/etc/init.d/bt stop启动 [color=rgb(230] 219, 116)]/etc/init.d/bt start重启 [color=rgb(230] 219, 116)]/etc/init.d/bt restart卸载 [color=rgb(230] 219, 116)]/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 [color=rgb(230] 219, 116)]'8881' > [color=rgb(230] 219, 116)]/www/server/panel/data/port.pl && [color=rgb(230] 219, 116)]/etc/init.d/bt restartiptables -I INPUT -p tcp -m state --state NEW -m tcp --dport 8881 -j ACCEPTservice iptables saveservice iptables restart修改面板端口,如要改成8881(centos 7 系统) echo [color=rgb(230] 219, 116)]'8881' > [color=rgb(230] 219, 116)]/www/server/panel/data/port.pl && [color=rgb(230] 219, 116)]/etc/init.d/bt restartfirewall-cmd --permanent --zone=public --add-port=8881/tcpfirewall-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站点配置文件位置 [color=rgb(230] 219, 116)]/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 && [color=rgb(230] 219, 116)]/etc/init.d/bt restart查看面板错误日志 cat /tmp/panelBoot查看数据库错误日志 cat /www/server/data/*.err站点配置文件目录(nginx) [color=rgb(230] 219, 116)]/www/server/panel/vhost/nginx站点配置文件目录(apache) [color=rgb(230] 219, 116)]/www/server/panel/vhost/apache站点默认目录 [color=rgb(230] 219, 116)]/www/wwwroot数据库备份目录 [color=rgb(230] 219, 116)]/www/backup/database站点备份目录 [color=rgb(230] 219, 116)]/www/backup/site站点日志 [color=rgb(230] 219, 116)]/www/wwwlogsNginx服务管理nginx安装目录 [color=rgb(230] 219, 116)]/www/server/nginx启动 [color=rgb(230] 219, 116)]/etc/init.d/nginx start停止 [color=rgb(230] 219, 116)]/etc/init.d/nginx stop重启 [color=rgb(230] 219, 116)]/etc/init.d/nginx restart启载 [color=rgb(230] 219, 116)]/etc/init.d/nginx reloadnginx配置文件 [color=rgb(230] 219, 116)]/www/server/nginx/conf/nginx.confApache服务管理apache安装目录 [color=rgb(230] 219, 116)]/www/server/httpd启动 [color=rgb(230] 219, 116)]/etc/init.d/httpd start停止 [color=rgb(230] 219, 116)]/etc/init.d/httpd stop重启 [color=rgb(230] 219, 116)]/etc/init.d/httpd restart启载 [color=rgb(230] 219, 116)]/etc/init.d/httpd reloadapache配置文件 [color=rgb(230] 219, 116)]/www/server/apache/conf/httpd.confMySQL服务管理mysql安装目录 [color=rgb(230] 219, 116)]/www/server/mysqlphpmyadmin安装目录 [color=rgb(230] 219, 116)]/www/server/phpmyadmin数据存储目录 [color=rgb(230] 219, 116)]/www/server/data启动 [color=rgb(230] 219, 116)]/etc/init.d/mysqld start停止 [color=rgb(230] 219, 116)]/etc/init.d/mysqld stop重启 [color=rgb(230] 219, 116)]/etc/init.d/mysqld restart启载 [color=rgb(230] 219, 116)]/etc/init.d/mysqld reloadmysql配置文件 [color=rgb(230] 219, 116)]/etc/my.cnfFTP服务管理ftp安装目录 [color=rgb(230] 219, 116)]/www/server/pure-ftpd启动 [color=rgb(230] 219, 116)]/etc/init.d/pure-ftpd start停止 [color=rgb(230] 219, 116)]/etc/init.d/pure-ftpd stop重启 [color=rgb(230] 219, 116)]/etc/init.d/pure-ftpd restartftp配置文件 [color=rgb(230] 219, 116)]/www/server/pure-ftpd/etc/pure-ftpd.confPHP服务管理php安装目录 [color=rgb(230] 219, 116)]/www/server/php启动(请根据安装PHP版本号做更改,例如:/etc/init.d/php-fpm-54 start) [color=rgb(230] 219, 116)]/etc/init.d/php-fpm-{52|53|54|55|56|70|71} start停止(请根据安装PHP版本号做更改,例如:/etc/init.d/php-fpm-54 stop) [color=rgb(230] 219, 116)]/etc/init.d/php-fpm-{52|53|54|55|56|70|71} stop重启(请根据安装PHP版本号做更改,例如:/etc/init.d/php-fpm-54 restart) [color=rgb(230] 219, 116)]/etc/init.d/php-fpm-{52|53|54|55|56|70|71} restart启载(请根据安装PHP版本号做更改,例如:/etc/init.d/php-fpm-54 reload) [color=rgb(230] 219, 116)]/etc/init.d/php-fpm-{52|53|54|55|56|70|71} reload配置文件(请根据安装PHP版本号做更改,例如:/www/server/php/52/etc/php.ini) [color=rgb(230] 219, 116)]/www/server/php/{52|53|54|55|56|70|71}/etc/php.iniRedis服务管理redis安装目录 [color=rgb(230] 219, 116)]/www/server/redis启动 [color=rgb(230] 219, 116)]/etc/init.d/redis start停止 [color=rgb(230] 219, 116)]/etc/init.d/redis stopredis配置文件 [color=rgb(230] 219, 116)]/www/server/redis/redis.confMemcached服务管理memcached安装目录 [color=rgb(230] 219, 116)]/usr/local/memcached启动 [color=rgb(230] 219, 116)]/etc/init.d/memcached start停止 [color=rgb(230] 219, 116)]/etc/init.d/memcached stop重启 [color=rgb(230] 219, 116)]/etc/init.d/memcached restart启载 [color=rgb(230] 219, 116)]/etc/init.d/memcached reload
|