使用SSH连接工具,连接到您的 Linux 服务器后,挂载磁盘 ,根据系统执行相应命令开始安装。
安装宝塔
Centos安装脚本
yum install -y wget && wget -O install.sh http://install.btweb.co/install/install_6.0.sh && sh install.sh
Ubuntu/Deepin安装脚本
wget -O install.sh https://install.btweb.co/install/install_6.0.sh && bash install.sh
一键更新脚本
curl https://install.btweb.co/install/update6.sh|bash
一键卸载脚本
wget https://www.btweb.co/tool/bt-uninstall.sh && sh bt-uninstall.sh
一键换国内源
curl -sSL https://www.btweb.co/tool/yum.sh | bash
管理宝塔
宝塔工具箱/找回密码/修改密码
bt
===============宝塔面板命令行==================
(1) 重启面板服务 (8) 改面板端口
(2) 停止面板服务 (9) 清除面板缓存
(3) 启动面板服务 (10) 清除登录限制
(4) 重载面板服务 (11) 设置是否开启IP + User-Agent验证
(5) 修改面板密码 (12) 取消域名绑定限制
(6) 修改面板用户名 (13) 取消IP访问限制
(7) 强制修改MySQL密码 (14) 查看面板默认信息
===============================================
请输入命令编号:
按回车键下一步
停止
/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
修改面板端口
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)密码
cd /www/server/panel && python tools.py root 123456
修改面板密码
cd /www/server/panel && python tools.py panel 123456
查看宝塔日志
cat /tmp/panelBoot.pl
Nginx服务管理
nginx安装目录
/www/server/nginx
启动
/etc/init.d/nginx start
停止
/etc/init.d/nginx stop
重启
/etc/init.d/nginx restart
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
apache配置文件
/www/server/apache/conf/httpd.conf
MySQL服务管理
mysql安装目录
/www/server/mysql
启动
/etc/init.d/mysqld start
停止
/etc/init.d/mysqld stop
重启
/etc/init.d/mysqld restart
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
PHP服务管理
php安装目录
/www/server/php
启动
/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72|73|74} start
停止
/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72|73|74} stop
重启
/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72|73|74} restart
配置文件
/www/server/php/{52|53|54|55|56|70|71|72|73|74}/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