{"id":25705277,"url":"https://github.com/classyid/o11-service-automation","last_synced_at":"2026-05-12T20:10:30.645Z","repository":{"id":261272322,"uuid":"883804321","full_name":"classyid/o11-service-automation","owner":"classyid","description":"🚀 Tool otomatis untuk mengelola layanan O11 Streaming di Linux. Mendukung auto-start, monitoring, dan manajemen log. Dibuat khusus untuk Ubuntu/Debian dengan integrasi systemd.","archived":false,"fork":false,"pushed_at":"2024-11-06T01:14:34.000Z","size":28,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-25T06:41:44.792Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://s.id/artikel-o11-service-automation","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/classyid.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-05T15:47:37.000Z","updated_at":"2024-11-06T01:14:37.000Z","dependencies_parsed_at":"2024-11-05T17:20:27.464Z","dependency_job_id":"997842c9-01e2-4c1a-80d6-dabc5e048581","html_url":"https://github.com/classyid/o11-service-automation","commit_stats":null,"previous_names":["classyid/o11-service-automation"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/classyid/o11-service-automation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/classyid%2Fo11-service-automation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/classyid%2Fo11-service-automation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/classyid%2Fo11-service-automation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/classyid%2Fo11-service-automation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/classyid","download_url":"https://codeload.github.com/classyid/o11-service-automation/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/classyid%2Fo11-service-automation/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32954974,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-12T09:19:52.626Z","status":"ssl_error","status_checked_at":"2026-05-12T09:17:33.438Z","response_time":102,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-02-25T06:39:43.895Z","updated_at":"2026-05-12T20:10:30.624Z","avatar_url":"https://github.com/classyid.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tutorial Instalasi O11 Service Automation\n\n## 📝 Overview\nTutorial ini menjelaskan proses instalasi dan konfigurasi O11 Service Automation pada Ubuntu Server. Berdasarkan logs yang ditampilkan, service berhasil dijalankan di port 1234.\n\n## 🚀 Langkah-langkah Instalasi\n\n### 1. Setup Log Directory\n```bash\n# Buat direktori log\nmkdir -p /var/log/o11\nchmod 755 /var/log/o11\n\n# Buat file log\ntouch /var/log/o11/service.log\ntouch /var/log/o11/error.log\n\n# Set permission log files\nchmod 644 /var/log/o11/service.log\nchmod 644 /var/log/o11/error.log\n```\n\n### 2. Clone Repository\n```bash\ncd /opt\ngit clone https://github.com/classyid/o11-service-automation.git\n```\n\n### 3. Setup Service File\n```bash\n# Copy service file ke systemd\ncd o11-service-automation\ncp o11.service /etc/systemd/system/\n```\n\n### 4. Setup Control Script\n```bash\n# Copy control script\ncp o11-control.sh /usr/local/bin/\nchmod +x /usr/local/bin/o11-control.sh\n```\n\n### 5. Enable dan Start Service\n```bash\n# Reload daemon\nsystemctl daemon-reload\n\n# Setup service\no11-control.sh setup\n\n# Start service\no11-control.sh start\n```\n\n## 🔍 Verifikasi Instalasi\n\n### 1. Cek Status Service\n```bash\no11-control.sh status\n```\nOutput yang diharapkan:\n```\n[DATE TIME] O11 service is running\n* o11.service - O11 Streaming Service\n     Loaded: loaded (/etc/systemd/system/o11.service; enabled; vendor preset: enabled)\n     Active: active (running)\n```\n\n### 2. Cek Port\n```bash\nnmap localhost\n```\nOutput yang diharapkan:\n```\nPORT     STATE SERVICE\n1234/tcp open  hotline  # O11 service running\n```\n\n### Jika Service Gagal Start\n```bash\n# Cek logs\ntail -f /var/log/o11/error.log\n\n# Restart service\no11-control.sh restart\n```\n\n## 📊 Monitoring\n\n### Perintah Monitoring\n```bash\n# Cek status real-time\nsystemctl status o11\n\n# Cek resource usage\nhtop -p $(pgrep o11)\n```\n\n## 🛠️ Maintenance\n\n### Daily Checks\n```bash\n# Status service\no11-control.sh status\n\n# Cek logs\ntail -f /var/log/o11/service.log\ntail -f /var/log/o11/error.log\n```\n\n### Restart Service\n```bash\no11-control.sh restart\n```\n\n## 📝 Notes Penting\n1. Service akan auto-start saat boot (enabled)\n2. Running di port 1234\n3. Auto-restart aktif jika terjadi crash\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclassyid%2Fo11-service-automation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclassyid%2Fo11-service-automation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclassyid%2Fo11-service-automation/lists"}