Skip to content

SidneySenn/cdnfly2025

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 

Repository files navigation

简易安装教程
主控版本:5.2.1
被控版本:5.1.18
请支持正版 本站仅用于学习研究 不可用于商用以及违法用途
现在只需要运行脚本就可以安装!!!
可以直接输入命令进行安装
CentOS7更换镜像源
一键换源:

bash <(curl -sSL https://gitee.com/SuperManito/LinuxMirrors/raw/main/ChangeMirrors.sh)

手动换源:
1、先安装wget

yum install -y wget

2、下载CentOS 7的对应的repo文件

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

#或者

curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

3、更新镜像源

yum clean all
yum makecache
yum -y update

执行完上面三行命令就好了

安装cdnfly控制面板

curl -fsSL https://www.cdnfly2025.top/httpcdnfly/master.sh -o master.sh && chmod +x master.sh && ./master.sh --es-dir /home/es

主控和被控均不能在 已安装nginx的情况下 执行安装命令,必须确保80 443端口未被占用!!!
主控只支持Cetnos7系列系统
被控只支持Cetnos7系列和ubnutu16.04系统
主控需开放80 88 443 9200端口
节点需要开放 80 443 5000端口
初始化管理员账号:admin
初始化管理员密码:cdnfly

其他操作
节点迁移至新主控 需要将旧节点的旧主控IP替换为新主控的IP
#依次在ssh登录每个节点并执行下面命令即可
#将 your_new_ip 替换为你自己的新主控IP

wget -qO change_ip.sh https://www.cdnfly2025.top/cdnfly2025/change_ip.sh && chmod +x change_ip.sh && bash change_ip.sh your_new_ip

或选择手动操作

new_master_ip="这里替换为主控IP"
sed -i "s/ES_IP =.*/ES_IP = "$new_master_ip"/" /opt/cdnfly/agent/conf/config.py
sed -i "s/MASTER_IP.*/MASTER_IP = "$new_master_ip"/g" /opt/cdnfly/agent/conf/config.py
sed -i "s/hosts:.*/hosts: ["$new_master_ip:9200"]/" /opt/cdnfly/agent/conf/filebeat.yml
sed -i "s#http://.*:88#http://$new_master_ip:88#" /usr/local/openresty/nginx/conf/listen_80.conf /usr/local/openresty/nginx/conf/listen_other.conf
ps aux | grep [/]usr/local/openresty/nginx/sbin/nginx | awk '{print $2}' | xargs kill -HUP || true
supervisorctl -c /opt/cdnfly/agent/conf/supervisord.conf restart filebeat
supervisorctl -c /opt/cdnfly/agent/conf/supervisord.conf restart agent
supervisorctl -c /opt/cdnfly/agent/conf/supervisord.conf restart task

重启进程

主控重启

supervisorctl -c /opt/cdnfly/master/conf/supervisord.conf restart all

节点重启

supervisorctl -c /opt/cdnfly/agent/conf/supervisord.conf restart all

如何初始化elasticsearch

cd /tmp;
wget http://us.centos.bz/cdnfly/int_es.sh -O int_es.sh;
chmod +x int_es.sh;
./int_es.sh /home/es;

备份数据库

cd /root;
curl http://us.centos.bz/cdnfly/backup_master.sh -o backup_master.sh;
chmod +x backup_master.sh;
./backup_master.sh;

这时候将在目录/root下,打包生成cdn.sql.gz文件,请把这个文件传输到新主控的/root/目录下,可以使用scp命令,命令如下:

cd /root
scp cdn.sql.gz   root@新主控IP:/root/

恢复数据库

cd /root;
curl http://us.centos.bz/cdnfly/restore_master.sh -o restore_master.sh;
chmod +x restore_master.sh;
./restore_master.sh;

Cdnfly监控设置
尊敬的cdnfly用户:
为防止重启节点,Nginx服务启动不起来,可以在节点Tcp监控设置里面把主IP的监控端口设置为5000
节点管理-点击tcp-更多HTTP设置-端口:5000

官方最新公告
尊敬的cdnfly用户:
目前发现登录安全漏洞,需要及时按照如下方法来临时修复。找一个只有你知道的域名,这个域名用于管理员登录。
路径为:系统管理--->系统设置--->用户相关,限制管理员只能从此域名登录

About

cdnfly开心版最新搭建教程

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published