Oracle(甲骨文)免费云服务器注册指南及故障解决!两个 Oracle Autonomous Database,其中包含 Oracle APEX 和 Oracle SQL Developer 等强大工具。

Always Free 服务
免费使用。
两个 Oracle Autonomous Database,其中包含 Oracle APEX 和 Oracle SQL Developer 等强大工具。
两个 AMD Compute VM
最多 4 个 ARM Ampere A1 Compute 实例,每月有 3000 个 OCPU 小时和 18000 GB 小时
Block Storage、Object Storage 和 Archive Storage;Load Balancer 和数据出口;Monitoring 和 Notifications
请参阅以下适用服务列表

所有命令

切换到 root 用户

sudo -i

升级系统

CentOS系统执行以下命令:

yum update -y && yum update -y && yum install -y socat

Debian/Ubuntu系统执行以下命令:

apt update -y && apt install -y curl && apt install -y socat

防火墙相关命令

firewall-cmd --state                   # 查看防火墙状态
systemctl stop firewalld.service # 停止防火墙
systemctl disable firewalld.service # 禁止防火墙开机自启

甲骨文 ( oracle ) 开启 root + 密码 登录

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

BBR2加速

wget --no-check-certificate -q -O bbr2.sh "https://github.com/yeyingorg/bbr2.sh/raw/master/bbr2.sh" && chmod +x bbr2.sh && bash bbr2.sh auto

安装&升级x-ui面板一键脚本

bash <(curl -Ls https://raw.githubusercontent.com/vaxilu/x-ui/master/install.sh)

运行Acme脚本

curl https://get.acme.sh | sh

申请证书及密钥

PS:修改代码中注释的域名,改为你自己的域名

~/.acme.sh/acme.sh --register-account -m [email protected]
~/.acme.sh/acme.sh --issue -d 你的域名 --standalone

下载证书及密钥

~/.acme.sh/acme.sh --installcert -d 你的域名 --key-file /root/private.key --fullchain-file /root/cert.crt