[无废话&无图]如何使用纯iPv6的免费VPS安装CWP
不说废话,直接开始。
这里以FreeNodeLoc的iPv6 VPS为例子,Hax那些方法都差不多。
安装CentOS7操作系统,登录主机,执行下面的命令换源
curl --insecure -sSL -o centos_7.sh https://down.baota.me/project/mirror_sources/script/centos_7.sh && bash centos_7.sh
接着我们执行下面的命令把DNS换成DNS64服务器
echo "nameserver 2a01:4f9:c010:3f02::1" >/etc/resolv.conf
现在我们执行下面的命令更新系统
yum update -y
安装一下wget,不然待会没办法执行CWP下载命令
yum install -y wget
安装screen,防止待会安装的时候中途下线
yum install -y screen
接着创建screen窗口
screen -S cwp
执行下面的命令安装cwp
cd /usr/local/src wget http://centos-webpanel.com/cwp-el7-latest sh cwp-el7-latest
等待安装完毕
最后会出现这样的提示
############################# # CWP Installed # ############################# Go to CentOS WebPanel Admin GUI at http://SERVER_IP:2030/ http://95.216.219.126:2030 SSL: https://95.216.219.126:2031 --------------------- Username: root Password: ssh server root password MySQL root Password: 9xvYbY5B42yf ######################################################### CentOS Web Panel MailServer Installer ######################################################### SSL Cert name (hostname): crooked-farmer SSL Cert file location /etc/pki/tls/ private|certs ######################################################### Visit for help: www.centos-webpanel.com Write down login details and press ENTER for server reboot! Loaded plugins: fastestmirror Repository cr is listed more than once in the configuration Repository fasttrack is listed more than once in the configuration Cleaning repos: base centosplus cloudflare-warp-stable cr cwp epel extras fasttrack : mariadb updates Cleaning up list of fastest mirrors Please reboot the server! Reboot command: shutdown -r now [root@crooked-farmer src]#
记好他,待会要用
现在执行reboot或者shutdown -r now重启
现在我们来到Cloudflare仪表盘,这里我们要让他以iPv4/iPv6双栈方式访问CWP仪表盘。
我们随便找一个域名,添加DNS,类型是AAAA,主机填写你VPS的iPv6地址,然后记得要打开CDN加速。
接着访问你的域名:2087访问CWP后台,用户名是root,密码是SSH的时候root的密码
如果你访问后台的时候出现无法访问,代码521的情况,可能是你防火墙没关,执行以下命令关闭防火墙
systemctl stop firewalld.service systemctl disable firewalld.service
至此教程结束