Maxkey
来自ling
https://gitee.com/dromara/MaxKey/tree/master/sql
4、启动MaxKey服务
docker pull maxkeytop/maxkey:latest
docker run -p 66:443 \
-e DATABASE_HOST=rm-8vbe87b5295dz08zhxo.mysql.zhangbei.rds.aliyuncs.com \
-e DATABASE_PORT=3306 \
-e DATABASE_NAME=maxkey \
-e DATABASE_USER=lingcloud \
-e DATABASE_PWD=Wb19831010! \
--name maxkey \
-d maxkeytop/maxkey:latest
5、启动MaxKey管理服务
maxkeytop/maxkey-mgt:latest
docker run -p 65:9527 \
-e DATABASE_HOST=rm-8vbe87b5295dz08zhxo.mysql.zhangbei.rds.aliyuncs.com \
-e DATABASE_PORT=3306 \
-e DATABASE_NAME=maxkey \
-e DATABASE_USER=lingcloud \
-e DATABASE_PWD=Wb19831010! \
--name maxkey-mgt \
-d maxkeytop/maxkey-mgt:latest
1 认证平台 https://maxkey.ling2.cn/maxkey/login
2 管理平台 http://maxkeymgt.ling2.cn/maxkey-mgt/login
6 账户密码 admin/maxkey
7 监控账户密码 monitor/maxkey
问题处理
keystore/jks文件在maven编译的时候被改变的问题处理
https://blog.csdn.net/xinglu/article/details/43235301
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.spotify</groupId>
<artifactId>docker-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<nonFilteredFileExtensions>
<nonFilteredFileExtension>crt</nonFilteredFileExtension>
<nonFilteredFileExtension>jks</nonFilteredFileExtension>
</nonFilteredFileExtensions>
</configuration>
</plugin>
</plugins>
</build>