{"id":21358107,"url":"https://github.com/raycad/ngrinder-controller","last_synced_at":"2026-02-18T22:37:06.100Z","repository":{"id":141974882,"uuid":"169333116","full_name":"raycad/ngrinder-controller","owner":"raycad","description":"Stress and load testing cluster services","archived":false,"fork":false,"pushed_at":"2019-09-04T05:28:33.000Z","size":69252,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-22T10:44:55.670Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","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/raycad.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":"2019-02-06T00:10:28.000Z","updated_at":"2020-02-25T03:39:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"7463062c-5cb8-4667-917a-ecbb783a3e92","html_url":"https://github.com/raycad/ngrinder-controller","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/raycad/ngrinder-controller","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raycad%2Fngrinder-controller","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raycad%2Fngrinder-controller/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raycad%2Fngrinder-controller/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raycad%2Fngrinder-controller/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/raycad","download_url":"https://codeload.github.com/raycad/ngrinder-controller/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raycad%2Fngrinder-controller/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29597291,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T22:25:43.180Z","status":"ssl_error","status_checked_at":"2026-02-18T22:25:42.766Z","response_time":162,"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":[],"created_at":"2024-11-22T05:14:24.386Z","updated_at":"2026-02-18T22:37:06.078Z","avatar_url":"https://github.com/raycad.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NGrinder Controller\n\n### A. Create Docker Image\n##### 1. Login to Docker Hub\n```\n$ docker login --username=yourhubusername --password=yourpassword\n```\n\n##### 2. Build docker image\n```\n$ ./build_image.sh\n```\n\n##### 3. Push the image to the docker hub\n```\n$ sudo docker push $DOCKER_ACC/$DOCKER_REPO:$IMG_TAG\n\ne.g\n$ sudo docker push seedotech/ngrinder-controller:3.4.3\n```\n\n### B. Pull and Start NGrinder Controller\n\n##### 1. Pull the NGrinder Controller image\n```\n$ sudo docker pull seedotech/ngrinder-controller:3.4.3\n```\n\n##### 2. Create a NGrinder network to controller \u0026 agent communication in the same physical machine (if needed)\n```\n$ sudo docker network create --driver=bridge ngrinder\n```\n\n##### 3. Create and run docker container\n\n```sh\n# NGRINDER Controller ports\n# 8080: Default controller web UI port.\n# 16001: Connection between controller \u0026 agent\n# 12000-12029: controllers allocate stress tests through these ports.\n$ sudo docker run -itd \\\n\t\t\t\t\t-p 8080:8080 \\\n\t\t\t\t\t-p 16001:16001 \\\n\t\t\t\t\t-p 12000-12009:12000-12009 \\\n\t\t\t\t\t--name ngrinder-controller \\\n\t\t\t\t\t--hostname ngrinder-controller \\\n\t\t\t\t\tseedotech/ngrinder-controller:3.4.3 \u0026\u003e /dev/null\n\nOR\n$ ./start_containers.sh\n\n# If you want to use controller \u0026 agent in the same physical machine, create as follows:\n$ sudo docker run -itd \\\n\t\t\t\t\t--net=ngrinder \\\n\t\t\t\t\t-p 8080:8080 \\\n\t\t\t\t\t-p 16001:16001 \\\n\t\t\t\t\t-p 12000-12009:12000-12009 \\\n\t\t\t\t\t--name ngrinder-controller \\\n\t\t\t\t\t--hostname ngrinder-controller \\\n\t\t\t\t\tseedotech/ngrinder-controller:3.4.3 \u0026\u003e /dev/null\n```\n\n##### 4. Get into the ngrinder controller container\n```\n$ sudo docker exec -it ngrinder-controller bash\n```\n\n##### 5. NGrinder dashboard\n\nAccess to the http://localhost:8080 to use NGrinder's dashboards.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraycad%2Fngrinder-controller","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraycad%2Fngrinder-controller","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraycad%2Fngrinder-controller/lists"}