1.安装 宝塔Linux
[root@xxxx-dzz-20 ~]# pip install --upgrade pip
[root@xxxx-dzz-20 ~]# yum install -y wget && wget -O install.sh http://download.bt.cn/install/install.sh && sh install.sh
You are using pip version 9.0.3, however version 20.0.2 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
//当出现如上所示需要升级pip
* pip install --upgrade pip
Bt-Panel: http://61.148.60.102:8888/0eca79f2 #换成自己的ip
username: ysuxxlqw
password: 8bxxxdc4
bt Linux扩展
Centos安装脚本
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
管理宝塔
停止
/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
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
2.部署 DzzOffice(Linux版)
记住你数据库密码
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}
[root@xxxx-dzz-20 ~]# cd /www/wwwroot/test && wget https://github.com/zyx0814/dzzoffice/archive/2.02.zip
[root@xxxx-dzz-20 ~]# unzip 2.02.zip
[root@xxxx-dzz-20 test]# ll
总用量 80
-rw-r--r--. 1 www www 479 4月 2 13:19 404.html
drwxrwxrwx. 31 www www 4096 4月 2 15:14 admin
-rw-r--r--. 1 www www 460 9月 14 2018 admin.php
-rw-r--r--. 1 www www 1786 9月 14 2018 avatar.php
drwxrwxrwx. 2 www www 92 4月 2 13:33 config
drwxrwxrwx. 8 www www 176 9月 14 2018 core
-rw-r--r--. 1 www www 117 9月 14 2018 crossdomain.xml
drwxrwxrwx. 10 www www 189 4月 2 13:35 data
drwxrwxrwx. 32 www www 4096 4月 2 15:20 dzz
-rw-r--r--. 1 www www 4286 9月 14 2018 favicon.ico
-rw-r--r--. 1 www www 629 9月 14 2018 htaccess_default.txt
-rw-r--r--. 1 www www 985 4月 2 13:19 index.html
-rw-r--r--. 1 www www 402 9月 14 2018 index.php
drwxrwxrwx. 6 www www 63 4月 2 13:35 install
-rw-r--r--. 1 www www 2768 9月 14 2018 INSTALL.md
drwxrwxrwx. 4 www www 227 9月 14 2018 misc
-rw-r--r--. 1 www www 321 9月 14 2018 misc.php
-rw-r--r--. 1 www www 564 9月 14 2018 oauth.php
-rw-r--r--. 1 www www 3794 9月 14 2018 README.md
-rw-r--r--. 1 www www 3157 9月 14 2018 share.php
-rw-r--r--. 1 www www 544 9月 14 2018 short.php
drwxrwxrwx. 24 www www 4096 9月 14 2018 static
-rw-r--r--. 1 www www 1380 9月 14 2018 UPDATE.md
drwxrwxrwx. 14 www www 196 9月 14 2018 user
-rw-r--r--. 1 www www 317 9月 14 2018 user.php
[root@xxxx-dzz-20 test]# pwd
/home/wwwroot/test
[root@xxxx-dzz-20 ~] chown -R www:www /home/wwwroot/test
(配置如上777权限)
3. 配置,添加插件测试 dzzoffice
http://192.168.60.146/install 去安装dzzoffice访问http://192.168.60.146(如果你配置的是域名一定要写host,访问时一定要用域名)
在线应用市场: http://dzz.cc/index.php?mod=d...
- 1.下载想要的插件
- 2.上传到/www/wwwroot/test/admin,/www/wwwroot/test/dzz
- 3.如下图所示
网盘的下载地址及说明: http://dzz.cc/index.php?mod=dzzmarket&op=view&mid=27&refer=index.php%3Fmod%3Ddzzmarket%26order%3Ddateline%26type%3D1%26page%3D1
添加群组
配置共享目录权限
上传测试文件
登陆 sunzh 账号测试网盘
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。