端口配置
序号 | 服务 | 文件目录 | 上下文 | 端口 |
---|---|---|---|---|
1 | 认证服务 | maxkey | /sign | 9527 |
2 | 认证前端服务 | maxkey_frontend | /maxkey | 8527 |
4 | 管理服务 | maxkey_mgt | maxkey_mgt_api | 9526 |
5 | 管理前端服务 | maxkey_mgt_frontend | /maxkey_mgt | 8526 |
6 | nginx反向代理服务 | nginx-version-proxy | / | 80 |
7 | 监控服务 | maxkey_monitor | / | 9528 |
8 | MySQL数据库 | mysql_*** | 3306 | |
9 | 样例 | maxkey_demo | / | 9521 |
修改端口号
认证服务默认端口是9527
1、脚本中修改端口
start_maxkey.bat/start_maxkey.sh
以下示例把端口从9527改为9090
%JAVA_EXEC% %JAVA_OPTS% -classpath %JAVA_CLASSPATH% %JAVA_MAINCLASS% --server.port=9090
2、配置文件修改端口
http默认端口为9527,https默认端口为9090
MaxKey-vGA/maxkey/和在maxkey-web-maxkey.jar中的application-(http/https).properties
#server port
#server.port=9527
server.port=9090
环境配置
MaxKey-vGA/maxkey/application.properties和在maxkey-web-maxkey.jar中的application.properties,注释掉以下的内容,其中application-prod.properties是生产配置文件
#spring.profiles.active=http
spring.profiles.active=prod
修改上下文
MaxKey-vGA/maxkey/和在maxkey-web-maxkey.jar中的application-(http/https).properties
#web app context path
server.servlet.context-path=/sign
修改相关的配置 /sign 为新的路径
前端及代理服务配置
请参照Nginx端口配置