dosubot[bot] commented on issue #7908: URL: https://github.com/apache/incubator-devlake/issues/7908#issuecomment-2292861970
<!-- Greeting --> Hey there, @adityai! I'm here to assist you with any bugs, questions, or contributions you have while waiting for a human maintainer. Let's squash those bugs together! 🤖 <!-- Answer --> To access the config-ui after resetting the admin password in Grafana, you should navigate to `http://localhost:3002` instead of `http://localhost:4000`. The Grafana service is mapped to port 3002 in your `docker-compose.yml` file. Here is the relevant section from your `docker-compose.yml`: ```yml grafana: image: apache/devlake-dashboard:v0.15.0 ports: - 3002:3000 volumes: - grafana-storage:/var/lib/grafana environment: GF_SERVER_ROOT_URL: "http://localhost:4000/grafana" GF_USERS_DEFAULT_THEME: "light" MYSQL_URL: mysql:3306 MYSQL_DATABASE: lake MYSQL_USER: merico MYSQL_PASSWORD: merico restart: always depends_on: - mysql ``` The `config-ui` service is mapped to port 4000, but it is not the Grafana service. Therefore, to access Grafana, use `http://localhost:3002` <sup>[[1]](https://github.com/apache/incubator-devlake/blob/main/devops/releases/lake-v0.10.1/docker-compose.yml)</sup><sup>[[2]](https://github.com/apache/incubator-devlake/blob/main/devops/releases/lake-v0.15.0/docker-compose.yml)</sup>. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
