Oracle Cloud selamanya gratis
Beneran permanent free —— Panduan gratis ARM 4 cores 24GB
Oracle Cloud selamanya gratis, bukan clickbait
Always Free Tier Oracle Cloud benar-benar bisa gratis selamanya. Paling keren adalah instance ARM itu:4 OCPU + 24GB memori, unlimited, nggak ada time limit, traffic nggak dibatasi, nggak ada expiry. Config ini buat jalanin OpenClaw cukup sekali.
satu-satunya problem terlalu hot, jadi sering stock habis. guide ini selain ajarin cara deploy, juga share tip racik instance.
Always Free memberikan apa
Lapisan gratis selamanya Oracle Cloud include resource ini:
| Resource | Spec | Note |
|---|---|---|
| Instance ARM | Max 4 OCPU + 24GB RAM | Ampere A1, bisa dipecah menjadi beberapa instance kecil |
| instance x86 | 2 VM AMD VM.Standard.E2.1.Micro | masing-masing 1 OCPU + 1GB RAM |
| 存储 | 200GB block storage | bisa allocate ke multiple instance |
| Jaringan | 10TB/bulan traffic outbound | Lebih dari cukup |
| Load balancing | 1 Flexible LB | 10Mbps bandwidth |
| Data loss adalah permanent | 2 Autonomous DB | masing-masing 20GB storage |
Poin utama tuh ARM instance —— 4 cores 24GB jalanin OpenClaw, spec lebih tinggi dari banyak VPS yang orang bayar.
enam step makan gratis deploy
Sign up Oracle Cloud
ke cloud.oracle.com Sign up account. Perlu credit card verify (gak bakal charge), Home Region pick Japan (ap-tokyo-1) atau Korea (ap-chuncheon-1), latency low.Home Region dipilih tidak bisa diubah, pilih dengan hati-hati.
Apply instans ARM
Compute → Create Instance → Image pilih Ubuntu 22.04 → Shape pilih Ampere A1 → OCPU isi 4 → Memori isi 24GB → Disk 50GB+. Unduh dan simpan file kunci dengan baik.
Koneksi SSH
Jalanin di terminal ssh -i key.pem ubuntu@IP_kamu。ARM instance dapat public IP, langsung connect aja.
Install Container Station
Instalasi Docker untuk arsitektur ARM sedikit berbeda, ada perintah detail di bawah.
Deploy OpenClaw
Use ARM optimized docker-compose.yml start service.
optimize config
24G memori tidak boleh disia-siakan, dapat meningkatkan batas memori dan jumlah concurrency dengan tepat, agar OpenClaw berjalan lebih cepat.
Instance grab tips
Instance ARM sangat populer, sering langsung muncul pesan "Out of capacity". Jangan menyerah, coba metode berikut:
Install Docker
Oracle Linux dan Ubuntu semuanya support, di bawah masing-masing berikan perintah dua versi:
# Perbarui sistem
# Pasang alat yang diperlukan
Firewall config (dua layer harus buka!)
Layer pertama: OCI security list
Networking → Virtual Cloud Networks → VCN Anda → Security Lists → Tambah aturan inbound:
# Source CIDR Protocol Dest Port Description
# 0.0.0.0/0 TCP 22 SSH
# 0.0.0.0/0 TCP 80 HTTP
# 0.0.0.0/0 TCP 443 HTTPS
# 0.0.0.0/0 TCP 8080 OpenClaw
Layer kedua: Firewall di instance
# Ubuntu secara default menggunakan iptables
# Oracle Linux menggunakan firewalld
konfigurasi docker-compose (versi optimasi ARM)
24G memori bisa diberikan lebih banyak ke OpenClaw, berjalan lebih lancar:
version: "3.8"
services:
openclaw:
image: openclaw/openclaw:latest
container_name: openclaw
restart: unless-stopped
ports:
- "8080:3000"
volumes:
- ./data:/app/data
- ./config:/app/config
- ./logs:/app/logs
environment:
- NODE_ENV=production
- TZ=Asia/Tokyo
deploy:
resources:
limits:
memory: 16G
reservations:
memory: 2G
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000/health"]
interval: 30s
timeout: 10s
retries: 3
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
Pay attention memory: 16G, 24GB total memory kasih OpenClaw 16GB tuh reasonable, sisanya buat sistem. Kalo jalanin service lain, turunin sesuai kebutuhan.
Deploy dan verify
# Buat direktori proyek