1、切换到 root 用户
sudo -i
2、升级 CentOS 7/8 系统
yum update -y
3、防火墙相关命令
查看防火墙状态
firewall-cmd --state
停止防火墙
systemctl stop firewalld.service
禁止防火墙开机自启
systemctl disable firewalld.service
4、安装 Xray 可视化面板
bash <(curl -Ls https://blog.sprov.xyz/v2-ui.sh)
5、安装 ACME 脚本申请证书
更改下面命令中的域名及邮箱,即可申请证书。
默认的证书文件存放在 /root/cert.crt
,默认的密钥文件存放在/root/private.key
,可以在 Xray
面板中直接粘贴路径!
curl https://get.acme.sh | sh
~/.acme.sh/acme.sh --register-account -m [email protected]
~/.acme.sh/acme.sh --issue -d test.bozai2.xyz --standalone
~/.acme.sh/acme.sh --installcert -d tese.bozai2.xyz --key-file /root/private.key --fullchain-file /root/cert.crt
6、甲骨文 ( oracle ) 开启 root + 密码 登录
根据视频 SSH 登录 VPS,然后输入脚本,脚本如下!
sudo -i
echo root:V2rayssr |chpasswd root
sed -i 's/^#\?PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config;
sed -i 's/^#\?PasswordAuthentication.*/PasswordAuthentication yes/g' /etc/ssh/sshd_config;
service sshd restart
默认密码是: V2rayssr
7、登录后一定要修改密码!密码修改命令
passwd