{"id":28417617,"url":"https://github.com/kubemq-io/kubemqctl","last_synced_at":"2026-02-15T20:32:26.196Z","repository":{"id":46127160,"uuid":"186363546","full_name":"kubemq-io/kubemqctl","owner":"kubemq-io","description":"Kubemqctl is a command line interface (CLI) for KubeMQ , Kubernetes Message Broker","archived":false,"fork":false,"pushed_at":"2023-07-11T08:16:58.000Z","size":131165,"stargazers_count":24,"open_issues_count":0,"forks_count":9,"subscribers_count":4,"default_branch":"master","last_synced_at":"2026-01-14T16:35:46.086Z","etag":null,"topics":["cli","go","golang","kubemq","kubemq-server","kubemqctl","kubernetes","message-broker","message-queue","pubsub","rpc"],"latest_commit_sha":null,"homepage":"https://kubemq.io","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kubemq-io.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2019-05-13T07:02:13.000Z","updated_at":"2025-11-10T01:44:50.000Z","dependencies_parsed_at":"2024-06-19T00:33:01.601Z","dependency_job_id":null,"html_url":"https://github.com/kubemq-io/kubemqctl","commit_stats":null,"previous_names":["kubemq-io/kubetools"],"tags_count":36,"template":false,"template_full_name":null,"purl":"pkg:github/kubemq-io/kubemqctl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kubemq-io%2Fkubemqctl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kubemq-io%2Fkubemqctl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kubemq-io%2Fkubemqctl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kubemq-io%2Fkubemqctl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kubemq-io","download_url":"https://codeload.github.com/kubemq-io/kubemqctl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kubemq-io%2Fkubemqctl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29488559,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T19:29:10.908Z","status":"ssl_error","status_checked_at":"2026-02-15T19:29:10.419Z","response_time":118,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["cli","go","golang","kubemq","kubemq-server","kubemqctl","kubernetes","message-broker","message-queue","pubsub","rpc"],"created_at":"2025-06-04T07:12:23.113Z","updated_at":"2026-02-15T20:32:26.191Z","avatar_url":"https://github.com/kubemq-io.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kubemqctl\n\nKubemqctl is a command line interface (CLI) for [Kubemq](https://kubemq.io) [Kubernetes](https://kubernetes.io/) Message Broker.\n\n```bash\nUsage:\n  kubemqctl [command]\n\nAvailable Commands:\n  commands     Execute Kubemq 'commands' RPC commands\n  config       Run Kubemqctl configuration wizard command\n  create       Executes Kubemq create commands\n  delete       Executes delete commands\n  events       Execute Kubemq 'events' Pub/Sub commands\n  events_store Execute Kubemq 'events_store' Pub/Sub commands\n  generate     Generate various kubemq related artifacts\n  get          Executes Kubemq get commands\n  help         Help about any command\n  manage       Executes Kubemq manage command\n  queries      Execute Kubemq 'queries' RPC based commands\n  queues       Execute Kubemq 'queues' commands\n  scale        Executes Kubemq scale commands\n  set          Executes set commands\n\nFlags:\n      --config string   set kubemqctl configuration file (default \"./.kubemqctl.yaml\")\n  -h, --help            help for kubemqctl\n  -v, --version         version for kubemqctl\n\nUse \"kubemqctl [command] --help\" for more information about a command.\n```\n## Installation\n\n### Mac OS:\n\n```bash\ncurl -L https://github.com/kubemq-io/kubemqctl/releases/download/latest/kubemqctl_darwin_amd64 -o /usr/local/bin/kubemqctl \nchmod +x /usr/local/bin/kubemqctl\n\n```\n\n### Linux 64 bits:\n\n```bash\ncurl -L https://github.com/kubemq-io/kubemqctl/releases/download/latest/kubemqctl_linux_amd64 -o /usr/local/bin/kubemqctl\nchmod +x /usr/local/bin/kubemqctl\n\n```\n\n\n### Linux 32 bits:\n\n```bash\ncurl -L https://github.com/kubemq-io/kubemqctl/releases/download/latest/kubemqctl_linux_386 -o /usr/local/bin/kubemqctl\nchmod +x /usr/local/bin/kubemqctl\n\n```\n\n### Windows:\n\nRun in PowerShell as administrator:\n\n```powershell\nNew-Item -ItemType Directory 'C:\\Program Files\\Kubemqctl'\nInvoke-WebRequest https://github.com/kubemq-io/kubemqctl/releases/download/latest/kubemqctl.exe -OutFile 'C:\\Program Files\\Kubemqctl\\kubemqctl.exe'\n[Environment]::SetEnvironmentVariable('Path', [Environment]::GetEnvironmentVariable('Path', [EnvironmentVariableTarget]::Machine) + ';C:\\Program Files\\Kubemqctl', [EnvironmentVariableTarget]::Machine)\n$env:Path += ';C:\\Program Files\\Kubemqctl'\n```\n\nOr manually:\n\n- [Download the latest kubemqctl.exe](https://github.com/kubemq-io/kubemqctl/releases/download/latest/kubemqctl.exe).\n- Place the file under e.g. `C:\\Program Files\\Kubemqctl\\kubemqctl.exe`\n- Add that directory to your system path to access it from any command prompt\n\n## Kubemq Token\n\nPlease visit [Register/Login](https://account.kubemq.io/login/register) to obtain Kubemq token.\n\n\n## Documantation\nPlease visit our [docs](https://docs.kubemq.io/kubemqctl/kubemqctl.html) for detailed Kubemqctl documentation.\n\n\n## Support\nif you encounter any issues, please open an issue here,\nIn addition, you can reach us for support by:\n- [**Email**](mailto://support@kubemq.io)\n- [**Slack**](https://kubmq.slack.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkubemq-io%2Fkubemqctl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkubemq-io%2Fkubemqctl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkubemq-io%2Fkubemqctl/lists"}