{"id":48429576,"url":"https://github.com/arkime/homebrew-arkime","last_synced_at":"2026-04-06T10:03:49.735Z","repository":{"id":340885527,"uuid":"1167216946","full_name":"arkime/homebrew-arkime","owner":"arkime","description":"Homebrew tap for Arkime","archived":false,"fork":false,"pushed_at":"2026-03-23T20:02:36.000Z","size":23,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-24T18:13:32.792Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","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/arkime.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-26T04:00:09.000Z","updated_at":"2026-03-23T20:02:40.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/arkime/homebrew-arkime","commit_stats":null,"previous_names":["arkime/homebrew-arkime"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/arkime/homebrew-arkime","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arkime%2Fhomebrew-arkime","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arkime%2Fhomebrew-arkime/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arkime%2Fhomebrew-arkime/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arkime%2Fhomebrew-arkime/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arkime","download_url":"https://codeload.github.com/arkime/homebrew-arkime/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arkime%2Fhomebrew-arkime/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31467985,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-06T08:36:52.050Z","status":"ssl_error","status_checked_at":"2026-04-06T08:36:51.267Z","response_time":112,"last_error":"SSL_read: 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":"2026-04-06T10:03:46.449Z","updated_at":"2026-04-06T10:03:49.723Z","avatar_url":"https://github.com/arkime.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Homebrew Tap for Arkime\n\n[Arkime](https://arkime.com) is a full packet capture, indexing, and database system.\n\n## Installation\n\n```bash\nbrew tap arkime/arkime\nbrew install arkime/arkime/arkime\n```\n\nArkime is installed as keg-only. Use the service formulas below to run Arkime components.\n\n## Initial Setup\n\nIf you've never initialized the Arkime database before, run:\n\n```bash\n/opt/homebrew/opt/arkime/db/db.pl http://localhost:9200 init\n```\n\nNext, update the [configuration files](#configuration) — at minimum, set `ARKIME_INTERFACE` and `ARKIME_PASSWORD` in `config.ini`.\n\nTo add your first admin user:\n\n```bash\n/opt/homebrew/opt/arkime/bin/arkime_add_user.sh admin admin admin --admin\n```\n\n## Services\n\nEach Arkime component has its own service formula that you can install and enable independently:\n\n| Formula | Description | Install |\n|---------|-------------|---------|\n| `arkime-capture` | Packet capture daemon | `brew install arkime/arkime/arkime-capture` |\n| `arkime-viewer` | Web UI and API server | `brew install arkime/arkime/arkime-viewer` |\n| `arkime-wise` | WISE data enrichment service | `brew install arkime/arkime/arkime-wise` |\n| `arkime-cont3xt` | Threat intelligence tool | `brew install arkime/arkime/arkime-cont3xt` |\n| `arkime-parliament` | Cluster management UI | `brew install arkime/arkime/arkime-parliament` |\n\n### Starting and stopping services\n\n```bash\n# Start a service (capture requires sudo for packet access)\nsudo brew services start arkime/arkime/arkime-capture\nbrew services start arkime/arkime/arkime-viewer\n\n# Stop a service\nsudo brew services stop arkime/arkime/arkime-capture\nbrew services stop arkime/arkime/arkime-viewer\n\n# List running services\nbrew services list\n```\n\n## Configuration\n\n\u003e **⚠️ Important:** You **must** update `ARKIME_INTERFACE` and `ARKIME_PASSWORD` in the configuration files before using Arkime. Edit `/opt/homebrew/etc/arkime/config.ini` and replace the placeholder values with your network interface and desired password.\n\nConfig files live in `/opt/homebrew/etc/arkime/`:\n\n| Service | Config File |\n|---------|-------------|\n| capture | `config.ini` |\n| viewer | `config.ini` |\n| wise | `wise.ini` |\n| cont3xt | `cont3xt.ini` |\n| parliament | `parliament.ini` |\n\nLogs are written to `/opt/homebrew/var/log/arkime/`.\n\n## Updating\n\nWhen a new version is released, maintainers can bump all formulas at once:\n\n```bash\n./bump.sh 6.1.0\ngit commit -am \"Bump to v6.1.0\" \u0026\u0026 git push\n```\n\nThen users upgrade with:\n\n```bash\nbrew update\nbrew upgrade arkime/arkime/arkime\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farkime%2Fhomebrew-arkime","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farkime%2Fhomebrew-arkime","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farkime%2Fhomebrew-arkime/lists"}