docker run --name sentinel --restart=always -p 8858:8858 -d bladex/sentinel-dashboard
使用docker装了sentinel,公司不允许使用默认密码。
使用docker exec -it sentinel /bin/bash进入容器内
在app.jar所在目录下创建application.properties的配置文件
# If auth.enabled=false, Sentinel console disable login
auth.username=sentinel
auth.password=sentinel
只需要写上述两句配置,改掉password就可以了。
利用的是springboot项目配置文件优先级方式复写了jar包内的默认配置。
只要不rm掉容器,重新创建,配置就会生效。
其他配置详见github
Sentinel/sentinel-dashboard/src/main/resources/application.properties at 1.8 · alibaba/Sentinel · GitHub