Browse Source

修改生产环境配置

feature/syp_points
liuchuang 5 years ago
parent
commit
2d2fccd661
  1. 2
      esua-epdc/epdc-admin/epdc-admin-server/Dockerfile
  2. 8
      esua-epdc/epdc-admin/epdc-admin-server/pom.xml
  3. 2
      esua-epdc/epdc-auth/Dockerfile
  4. 6
      esua-epdc/epdc-auth/pom.xml
  5. 2
      esua-epdc/epdc-gateway/Dockerfile
  6. 6
      esua-epdc/epdc-gateway/pom.xml
  7. 2
      esua-epdc/epdc-module/epdc-api/epdc-api-server/Dockerfile
  8. 2
      esua-epdc/epdc-module/epdc-api/epdc-api-server/epdc-api-server.iml
  9. 8
      esua-epdc/epdc-module/epdc-api/epdc-api-server/pom.xml
  10. 4
      esua-epdc/epdc-module/epdc-custom/epdc-custom-server/pom.xml
  11. 2
      esua-epdc/epdc-module/epdc-events/epdc-events-server/Dockerfile
  12. 2
      esua-epdc/epdc-module/epdc-events/epdc-events-server/epdc-events-server.iml
  13. 8
      esua-epdc/epdc-module/epdc-events/epdc-events-server/pom.xml
  14. 2
      esua-epdc/epdc-module/epdc-group/epdc-group-server/Dockerfile
  15. 1
      esua-epdc/epdc-module/epdc-group/epdc-group-server/epdc-group-server.iml
  16. 8
      esua-epdc/epdc-module/epdc-group/epdc-group-server/pom.xml
  17. 2
      esua-epdc/epdc-module/epdc-heart/epdc-heart-server/Dockerfile
  18. 1
      esua-epdc/epdc-module/epdc-heart/epdc-heart-server/epdc-heart-server.iml
  19. 8
      esua-epdc/epdc-module/epdc-heart/epdc-heart-server/pom.xml
  20. 2
      esua-epdc/epdc-module/epdc-job/epdc-job-server/Dockerfile
  21. 8
      esua-epdc/epdc-module/epdc-job/epdc-job-server/pom.xml
  22. 4
      esua-epdc/epdc-module/epdc-kpi/epdc-kpi-server/pom.xml
  23. 2
      esua-epdc/epdc-module/epdc-message/epdc-message-server/Dockerfile
  24. 8
      esua-epdc/epdc-module/epdc-message/epdc-message-server/pom.xml
  25. 2
      esua-epdc/epdc-module/epdc-news/epdc-news-server/Dockerfile
  26. 8
      esua-epdc/epdc-module/epdc-news/epdc-news-server/pom.xml
  27. 2
      esua-epdc/epdc-module/epdc-oss/epdc-oss-server/Dockerfile
  28. 3
      esua-epdc/epdc-module/epdc-oss/epdc-oss-server/epdc-oss-server.iml
  29. 8
      esua-epdc/epdc-module/epdc-oss/epdc-oss-server/pom.xml
  30. 2
      esua-epdc/epdc-module/epdc-points/epdc-points-server/Dockerfile
  31. 8
      esua-epdc/epdc-module/epdc-points/epdc-points-server/pom.xml
  32. 2
      esua-epdc/epdc-module/epdc-user/epdc-user-server/Dockerfile
  33. 8
      esua-epdc/epdc-module/epdc-user/epdc-user-server/pom.xml
  34. 4
      esua-epdc/epdc-module/epdc-webservice/pom.xml
  35. 2
      esua-epdc/epdc-module/epdc-websocket/epdc-websocket-server/Dockerfile
  36. 8
      esua-epdc/epdc-module/epdc-websocket/epdc-websocket-server/pom.xml

2
esua-epdc/epdc-admin/epdc-admin-server/Dockerfile

@ -16,5 +16,5 @@ ENV DATAPATH /data
# 挂载/data目录到主机
VOLUME $DATAPATH
# 启动容器时执行
ENTRYPOINT java -jar -Xmx1024m $JAR_PATH
ENTRYPOINT java -jar -Xmx512m $JAR_PATH
EXPOSE ${SERVER_PORT}

8
esua-epdc/epdc-admin/epdc-admin-server/pom.xml

@ -220,8 +220,8 @@
<!-- nacos -->
<nacos.register-enabled>true</nacos.register-enabled>
<nacos.server-addr>172.20.0.4:80</nacos.server-addr>
<nacos.ip></nacos.ip>
<nacos.server-addr>172.16.0.7:10000,172.16.0.7:10001</nacos.server-addr>
<nacos.ip>172.16.0.7</nacos.ip>
<nacos.namespace></nacos.namespace>
<spring.zipkin.base-url>http://172.31.171.61:9411</spring.zipkin.base-url>
@ -236,14 +236,14 @@
<analysis.wx.ma.secret>2154e86d56df9fae4224c93a17e01bb3</analysis.wx.ma.secret>
<spring.datasource.druid.url>
<![CDATA[jdbc:mysql://172.19.0.2:3306/esua_epdc_admin?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
<![CDATA[jdbc:mysql://172.16.0.8:10000/esua_epdc_admin?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
</spring.datasource.druid.url>
<spring.datasource.druid.username>epdc</spring.datasource.druid.username>
<spring.datasource.druid.password>Elink@833066</spring.datasource.druid.password>
<!-- redis配置 -->
<spring.redis.index>0</spring.redis.index>
<spring.redis.host>172.19.0.11</spring.redis.host>
<spring.redis.host>172.16.0.8</spring.redis.host>
<spring.redis.port>6379</spring.redis.port>
<spring.redis.password>epdc!redis@master1405</spring.redis.password>

2
esua-epdc/epdc-auth/Dockerfile

@ -16,5 +16,5 @@ ENV DATAPATH /data
# 挂载/data目录到主机
VOLUME $DATAPATH
# 启动容器时执行
ENTRYPOINT java -jar -Xmx1024m $JAR_PATH
ENTRYPOINT java -jar -Xmx512m $JAR_PATH
EXPOSE ${SERVER_PORT}

6
esua-epdc/epdc-auth/pom.xml

@ -151,14 +151,14 @@
<!-- redis配置 -->
<spring.redis.index>0</spring.redis.index>
<spring.redis.host>172.19.0.11</spring.redis.host>
<spring.redis.host>172.16.0.8</spring.redis.host>
<spring.redis.port>6379</spring.redis.port>
<spring.redis.password>epdc!redis@master1405</spring.redis.password>
<!-- nacos -->
<nacos.register-enabled>true</nacos.register-enabled>
<nacos.server-addr>172.20.0.4:80</nacos.server-addr>
<nacos.ip></nacos.ip>
<nacos.server-addr>172.16.0.7:10000,172.16.0.7:10001</nacos.server-addr>
<nacos.ip>172.16.0.7</nacos.ip>
<nacos.namespace></nacos.namespace>
<spring.zipkin.base-url>http://172.31.171.61:9411</spring.zipkin.base-url>

2
esua-epdc/epdc-gateway/Dockerfile

@ -16,5 +16,5 @@ ENV DATAPATH /data
# 挂载/data目录到主机
VOLUME $DATAPATH
# 启动容器时执行
ENTRYPOINT java -jar -Xmx1024m $JAR_PATH
ENTRYPOINT java -jar -Xmx512m $JAR_PATH
EXPOSE ${SERVER_PORT}

6
esua-epdc/epdc-gateway/pom.xml

@ -221,14 +221,14 @@
<!-- redis配置 -->
<spring.redis.index>0</spring.redis.index>
<spring.redis.host>172.19.0.11</spring.redis.host>
<spring.redis.host>172.16.0.8</spring.redis.host>
<spring.redis.port>6379</spring.redis.port>
<spring.redis.password>epdc!redis@master1405</spring.redis.password>
<!-- nacos -->
<nacos.register-enabled>true</nacos.register-enabled>
<nacos.server-addr>172.20.0.4:80</nacos.server-addr>
<nacos.ip></nacos.ip>
<nacos.server-addr>172.16.0.7:10000,172.16.0.7:10001</nacos.server-addr>
<nacos.ip>172.16.0.7</nacos.ip>
<nacos.namespace></nacos.namespace>
<spring.zipkin.base-url>http://localhost:9411</spring.zipkin.base-url>

2
esua-epdc/epdc-module/epdc-api/epdc-api-server/Dockerfile

@ -16,5 +16,5 @@ ENV DATAPATH /data
# 挂载/data目录到主机
VOLUME $DATAPATH
# 启动容器时执行
ENTRYPOINT java -jar -Xmx1024m $JAR_PATH
ENTRYPOINT java -jar -Xmx512m $JAR_PATH
EXPOSE ${SERVER_PORT}

2
esua-epdc/epdc-module/epdc-api/epdc-api-server/epdc-api-server.iml

@ -26,8 +26,6 @@
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="module" module-name="epdc-commons-points-tools" />
<orderEntry type="module" module-name="epdc-commons-points-tools" />
<orderEntry type="module" module-name="epdc-commons-points-tools" />
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-aop:2.1.7.RELEASE" level="project" />
<orderEntry type="library" name="Maven: org.springframework:spring-aop:5.1.9.RELEASE" level="project" />
<orderEntry type="library" name="Maven: org.aspectj:aspectjweaver:1.9.4" level="project" />

8
esua-epdc/epdc-module/epdc-api/epdc-api-server/pom.xml

@ -271,18 +271,18 @@
<!-- redis配置 -->
<spring.redis.index>0</spring.redis.index>
<spring.redis.host>172.19.0.11</spring.redis.host>
<spring.redis.host>172.16.0.8</spring.redis.host>
<spring.redis.port>6379</spring.redis.port>
<spring.redis.password>epdc!redis@master1405</spring.redis.password>
<!-- nacos -->
<nacos.register-enabled>true</nacos.register-enabled>
<nacos.server-addr>172.20.0.4:80</nacos.server-addr>
<nacos.ip></nacos.ip>
<nacos.server-addr>172.16.0.7:10000,172.16.0.7:10001</nacos.server-addr>
<nacos.ip>172.16.0.7</nacos.ip>
<nacos.namespace></nacos.namespace>
<spring.datasource.druid.url>
<![CDATA[jdbc:mysql://172.19.0.2:3306/esua_epdc_api?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
<![CDATA[jdbc:mysql://172.16.0.8:10000/esua_epdc_api?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
</spring.datasource.druid.url>
<spring.datasource.druid.username>epdc</spring.datasource.druid.username>
<spring.datasource.druid.password>Elink@833066</spring.datasource.druid.password>

4
esua-epdc/epdc-module/epdc-custom/epdc-custom-server/pom.xml

@ -177,7 +177,7 @@
<!-- redis配置 -->
<spring.redis.index>0</spring.redis.index>
<spring.redis.host>172.19.0.11</spring.redis.host>
<spring.redis.host>172.16.0.8</spring.redis.host>
<spring.redis.port>6379</spring.redis.port>
<spring.redis.password>epdc!redis@master1405</spring.redis.password>
@ -186,7 +186,7 @@
<nacos.server-addr>172.20.0.4:80</nacos.server-addr>
<spring.datasource.druid.url>
<![CDATA[jdbc:mysql://172.19.0.2:3306/esua_epdc_news?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
<![CDATA[jdbc:mysql://172.16.0.8:10000/esua_epdc_news?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
</spring.datasource.druid.url>
<spring.datasource.druid.username>epdc</spring.datasource.druid.username>
<spring.datasource.druid.password>Elink@833066</spring.datasource.druid.password>

2
esua-epdc/epdc-module/epdc-events/epdc-events-server/Dockerfile

@ -16,5 +16,5 @@ ENV DATAPATH /data
# 挂载/data目录到主机
VOLUME $DATAPATH
# 启动容器时执行
ENTRYPOINT java -jar -Xmx1024m $JAR_PATH
ENTRYPOINT java -jar -Xmx512m $JAR_PATH
EXPOSE ${SERVER_PORT}

2
esua-epdc/epdc-module/epdc-events/epdc-events-server/epdc-events-server.iml

@ -21,8 +21,6 @@
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="module" module-name="epdc-commons-points-tools" />
<orderEntry type="module" module-name="epdc-commons-points-tools" />
<orderEntry type="module" module-name="epdc-commons-points-tools" />
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-aop:2.1.7.RELEASE" level="project" />
<orderEntry type="library" name="Maven: org.springframework:spring-aop:5.1.9.RELEASE" level="project" />
<orderEntry type="library" name="Maven: org.aspectj:aspectjweaver:1.9.4" level="project" />

8
esua-epdc/epdc-module/epdc-events/epdc-events-server/pom.xml

@ -258,18 +258,18 @@
<!-- redis配置 -->
<spring.redis.index>0</spring.redis.index>
<spring.redis.host>172.19.0.11</spring.redis.host>
<spring.redis.host>172.16.0.8</spring.redis.host>
<spring.redis.port>6379</spring.redis.port>
<spring.redis.password>epdc!redis@master1405</spring.redis.password>
<!-- nacos -->
<nacos.register-enabled>true</nacos.register-enabled>
<nacos.server-addr>172.20.0.4:80</nacos.server-addr>
<nacos.ip></nacos.ip>
<nacos.server-addr>172.16.0.7:10000,172.16.0.7:10001</nacos.server-addr>
<nacos.ip>172.16.0.7</nacos.ip>
<nacos.namespace></nacos.namespace>
<spring.datasource.druid.url>
<![CDATA[jdbc:mysql://172.19.0.2:3306/esua_epdc_events?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
<![CDATA[jdbc:mysql://172.16.0.8:10000/esua_epdc_events?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
</spring.datasource.druid.url>
<spring.datasource.druid.username>epdc</spring.datasource.druid.username>
<spring.datasource.druid.password>Elink@833066</spring.datasource.druid.password>

2
esua-epdc/epdc-module/epdc-group/epdc-group-server/Dockerfile

@ -16,5 +16,5 @@ ENV DATAPATH /data
# 挂载/data目录到主机
VOLUME $DATAPATH
# 启动容器时执行
ENTRYPOINT java -jar -Xmx1024m $JAR_PATH
ENTRYPOINT java -jar -Xmx512m $JAR_PATH
EXPOSE ${SERVER_PORT}

1
esua-epdc/epdc-module/epdc-group/epdc-group-server/epdc-group-server.iml

@ -21,7 +21,6 @@
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="module" module-name="epdc-commons-points-tools" />
<orderEntry type="module" module-name="epdc-commons-points-tools" />
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-aop:2.1.7.RELEASE" level="project" />
<orderEntry type="library" name="Maven: org.springframework:spring-aop:5.1.9.RELEASE" level="project" />
<orderEntry type="library" name="Maven: org.aspectj:aspectjweaver:1.9.4" level="project" />

8
esua-epdc/epdc-module/epdc-group/epdc-group-server/pom.xml

@ -191,18 +191,18 @@
<!-- redis配置 -->
<spring.redis.index>0</spring.redis.index>
<spring.redis.host>172.19.0.11</spring.redis.host>
<spring.redis.host>172.16.0.8</spring.redis.host>
<spring.redis.port>6379</spring.redis.port>
<spring.redis.password>epdc!redis@master1405</spring.redis.password>
<!-- nacos -->
<nacos.register-enabled>true</nacos.register-enabled>
<nacos.server-addr>172.20.0.4:80</nacos.server-addr>
<nacos.ip></nacos.ip>
<nacos.server-addr>172.16.0.7:10000,172.16.0.7:10001</nacos.server-addr>
<nacos.ip>172.16.0.7</nacos.ip>
<nacos.namespace></nacos.namespace>
<spring.datasource.druid.url>
<![CDATA[jdbc:mysql://172.19.0.2:3306/esua_epdc_group?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
<![CDATA[jdbc:mysql://172.16.0.8:10000/esua_epdc_group?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
</spring.datasource.druid.url>
<spring.datasource.druid.username>epdc</spring.datasource.druid.username>
<spring.datasource.druid.password>Elink@833066</spring.datasource.druid.password>

2
esua-epdc/epdc-module/epdc-heart/epdc-heart-server/Dockerfile

@ -16,5 +16,5 @@ ENV DATAPATH /data
# 挂载/data目录到主机
VOLUME $DATAPATH
# 启动容器时执行
ENTRYPOINT java -jar -Xmx1024m $JAR_PATH
ENTRYPOINT java -jar -Xmx512m $JAR_PATH
EXPOSE ${SERVER_PORT}

1
esua-epdc/epdc-module/epdc-heart/epdc-heart-server/epdc-heart-server.iml

@ -20,7 +20,6 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="module" module-name="epdc-points-client" />
<orderEntry type="module" module-name="epdc-heart-client" />
<orderEntry type="module" module-name="epdc-demo-client" />
<orderEntry type="module" module-name="epdc-user-client" />

8
esua-epdc/epdc-module/epdc-heart/epdc-heart-server/pom.xml

@ -203,18 +203,18 @@
<!-- redis配置 -->
<spring.redis.index>0</spring.redis.index>
<spring.redis.host>172.19.0.11</spring.redis.host>
<spring.redis.host>172.16.0.8</spring.redis.host>
<spring.redis.port>6379</spring.redis.port>
<spring.redis.password>epdc!redis@master1405</spring.redis.password>
<!-- nacos -->
<nacos.register-enabled>true</nacos.register-enabled>
<nacos.server-addr>172.20.0.4:80</nacos.server-addr>
<nacos.ip></nacos.ip>
<nacos.server-addr>172.16.0.7:10000,172.16.0.7:10001</nacos.server-addr>
<nacos.ip>172.16.0.7</nacos.ip>
<nacos.namespace></nacos.namespace>
<spring.datasource.druid.url>
<![CDATA[jdbc:mysql://172.19.0.2:3306/esua_epdc_mutuality?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
<![CDATA[jdbc:mysql://172.16.0.8:10000/esua_epdc_mutuality?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
</spring.datasource.druid.url>
<spring.datasource.druid.username>epdc</spring.datasource.druid.username>
<spring.datasource.druid.password>Elink@833066</spring.datasource.druid.password>

2
esua-epdc/epdc-module/epdc-job/epdc-job-server/Dockerfile

@ -16,5 +16,5 @@ ENV DATAPATH /data
# 挂载/data目录到主机
VOLUME $DATAPATH
# 启动容器时执行
ENTRYPOINT java -jar -Xmx1024m $JAR_PATH
ENTRYPOINT java -jar -Xmx512m $JAR_PATH
EXPOSE ${SERVER_PORT}

8
esua-epdc/epdc-module/epdc-job/epdc-job-server/pom.xml

@ -199,18 +199,18 @@
<!-- redis配置 -->
<spring.redis.index>0</spring.redis.index>
<spring.redis.host>172.19.0.11</spring.redis.host>
<spring.redis.host>172.16.0.8</spring.redis.host>
<spring.redis.port>6379</spring.redis.port>
<spring.redis.password>epdc!redis@master1405</spring.redis.password>
<!-- nacos -->
<nacos.register-enabled>true</nacos.register-enabled>
<nacos.server-addr>172.20.0.4:80</nacos.server-addr>
<nacos.ip></nacos.ip>
<nacos.server-addr>172.16.0.7:10000,172.16.0.7:10001</nacos.server-addr>
<nacos.ip>172.16.0.7</nacos.ip>
<nacos.namespace></nacos.namespace>
<spring.datasource.druid.url>
<![CDATA[jdbc:mysql://172.19.0.2:3306/esua_epdc_job?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
<![CDATA[jdbc:mysql://172.16.0.8:10000/esua_epdc_job?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
</spring.datasource.druid.url>
<spring.datasource.druid.username>epdc</spring.datasource.druid.username>
<spring.datasource.druid.password>Elink@833066</spring.datasource.druid.password>

4
esua-epdc/epdc-module/epdc-kpi/epdc-kpi-server/pom.xml

@ -166,7 +166,7 @@
<!-- redis配置 -->
<spring.redis.index>0</spring.redis.index>
<spring.redis.host>172.19.0.11</spring.redis.host>
<spring.redis.host>172.16.0.8</spring.redis.host>
<spring.redis.port>6379</spring.redis.port>
<spring.redis.password>epdc!redis@master1405</spring.redis.password>
@ -175,7 +175,7 @@
<nacos.server-addr>172.20.0.4:80</nacos.server-addr>
<spring.datasource.druid.url>
<![CDATA[jdbc:mysql://172.19.0.2:3306/esua_epdc_news?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
<![CDATA[jdbc:mysql://172.16.0.8:10000/esua_epdc_news?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
</spring.datasource.druid.url>
<spring.datasource.druid.username>epdc</spring.datasource.druid.username>
<spring.datasource.druid.password>Elink@833066</spring.datasource.druid.password>

2
esua-epdc/epdc-module/epdc-message/epdc-message-server/Dockerfile

@ -16,5 +16,5 @@ ENV DATAPATH /data
# 挂载/data目录到主机
VOLUME $DATAPATH
# 启动容器时执行
ENTRYPOINT java -jar -Xmx1024m $JAR_PATH
ENTRYPOINT java -jar -Xmx512m $JAR_PATH
EXPOSE ${SERVER_PORT}

8
esua-epdc/epdc-module/epdc-message/epdc-message-server/pom.xml

@ -199,18 +199,18 @@
<!-- redis配置 -->
<spring.redis.index>0</spring.redis.index>
<spring.redis.host>172.19.0.11</spring.redis.host>
<spring.redis.host>172.16.0.8</spring.redis.host>
<spring.redis.port>6379</spring.redis.port>
<spring.redis.password>epdc!redis@master1405</spring.redis.password>
<!-- nacos -->
<nacos.register-enabled>true</nacos.register-enabled>
<nacos.server-addr>172.20.0.4:80</nacos.server-addr>
<nacos.ip></nacos.ip>
<nacos.server-addr>172.16.0.7:10000,172.16.0.7:10001</nacos.server-addr>
<nacos.ip>172.16.0.7</nacos.ip>
<nacos.namespace></nacos.namespace>
<spring.datasource.druid.url>
<![CDATA[jdbc:mysql://172.19.0.2:3306/esua_epdc_admin?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
<![CDATA[jdbc:mysql://172.16.0.8:10000/esua_epdc_admin?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
</spring.datasource.druid.url>
<spring.datasource.druid.username>epdc</spring.datasource.druid.username>
<spring.datasource.druid.password>Elink@833066</spring.datasource.druid.password>

2
esua-epdc/epdc-module/epdc-news/epdc-news-server/Dockerfile

@ -16,5 +16,5 @@ ENV DATAPATH /data
# 挂载/data目录到主机
VOLUME $DATAPATH
# 启动容器时执行
ENTRYPOINT java -jar -Xmx1024m $JAR_PATH
ENTRYPOINT java -jar -Xmx512m $JAR_PATH
EXPOSE ${SERVER_PORT}

8
esua-epdc/epdc-module/epdc-news/epdc-news-server/pom.xml

@ -176,18 +176,18 @@
<!-- redis配置 -->
<spring.redis.index>0</spring.redis.index>
<spring.redis.host>172.19.0.11</spring.redis.host>
<spring.redis.host>172.16.0.8</spring.redis.host>
<spring.redis.port>6379</spring.redis.port>
<spring.redis.password>epdc!redis@master1405</spring.redis.password>
<!-- nacos -->
<nacos.register-enabled>true</nacos.register-enabled>
<nacos.server-addr>172.20.0.4:80</nacos.server-addr>
<nacos.ip></nacos.ip>
<nacos.server-addr>172.16.0.7:10000,172.16.0.7:10001</nacos.server-addr>
<nacos.ip>172.16.0.7</nacos.ip>
<nacos.namespace></nacos.namespace>
<spring.datasource.druid.url>
<![CDATA[jdbc:mysql://172.19.0.2:3306/esua_epdc_news?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
<![CDATA[jdbc:mysql://172.16.0.8:10000/esua_epdc_news?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
</spring.datasource.druid.url>
<spring.datasource.druid.username>epdc</spring.datasource.druid.username>
<spring.datasource.druid.password>Elink@833066</spring.datasource.druid.password>

2
esua-epdc/epdc-module/epdc-oss/epdc-oss-server/Dockerfile

@ -16,5 +16,5 @@ ENV DATAPATH /data
# 挂载/data目录到主机
VOLUME $DATAPATH
# 启动容器时执行
ENTRYPOINT java -jar -Xmx1024m $JAR_PATH
ENTRYPOINT java -jar -Xmx512m $JAR_PATH
EXPOSE ${SERVER_PORT}

3
esua-epdc/epdc-module/epdc-oss/epdc-oss-server/epdc-oss-server.iml

@ -20,6 +20,7 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Maven: com.qiniu:qiniu-java-sdk:7.2.28" level="project" />
<orderEntry type="module" module-name="epdc-oss-client" />
<orderEntry type="module" module-name="epdc-admin-client" />
<orderEntry type="library" name="Maven: io.springfox:springfox-swagger2:2.7.0" level="project" />
@ -188,7 +189,7 @@
<orderEntry type="library" name="Maven: org.latencyutils:LatencyUtils:2.0.3" level="project" />
<orderEntry type="library" name="Maven: org.jolokia:jolokia-core:1.6.2" level="project" />
<orderEntry type="library" name="Maven: com.googlecode.json-simple:json-simple:1.1.1" level="project" />
<orderEntry type="library" name="Maven: com.qiniu:qiniu-java-sdk:7.2.28" level="project" />
<orderEntry type="library" name="Maven: com.qiniu:qiniu-java-sdk:7.2.29" level="project" />
<orderEntry type="library" scope="RUNTIME" name="Maven: com.squareup.okhttp3:okhttp:3.8.1" level="project" />
<orderEntry type="library" scope="RUNTIME" name="Maven: com.squareup.okio:okio:1.13.0" level="project" />
<orderEntry type="library" name="Maven: com.aliyun.oss:aliyun-sdk-oss:3.5.0" level="project" />

8
esua-epdc/epdc-module/epdc-oss/epdc-oss-server/pom.xml

@ -216,18 +216,18 @@
<!-- redis配置 -->
<spring.redis.index>0</spring.redis.index>
<spring.redis.host>172.19.0.11</spring.redis.host>
<spring.redis.host>172.16.0.8</spring.redis.host>
<spring.redis.port>6379</spring.redis.port>
<spring.redis.password>epdc!redis@master1405</spring.redis.password>
<!-- nacos -->
<nacos.register-enabled>true</nacos.register-enabled>
<nacos.server-addr>172.20.0.4:80</nacos.server-addr>
<nacos.ip></nacos.ip>
<nacos.server-addr>172.16.0.7:10000,172.16.0.7:10001</nacos.server-addr>
<nacos.ip>172.16.0.7</nacos.ip>
<nacos.namespace></nacos.namespace>
<spring.datasource.druid.url>
<![CDATA[jdbc:mysql://172.19.0.2:3306/esua_epdc_admin?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
<![CDATA[jdbc:mysql://172.16.0.8:10000/esua_epdc_admin?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
</spring.datasource.druid.url>
<spring.datasource.druid.username>epdc</spring.datasource.druid.username>
<spring.datasource.druid.password>Elink@833066</spring.datasource.druid.password>

2
esua-epdc/epdc-module/epdc-points/epdc-points-server/Dockerfile

@ -16,5 +16,5 @@ ENV DATAPATH /data
# 挂载/data目录到主机
VOLUME $DATAPATH
# 启动容器时执行
ENTRYPOINT java -jar -Xmx1024m $JAR_PATH
ENTRYPOINT java -jar -Xmx512m $JAR_PATH
EXPOSE ${SERVER_PORT}

8
esua-epdc/epdc-module/epdc-points/epdc-points-server/pom.xml

@ -199,18 +199,18 @@
<!-- redis配置 -->
<spring.redis.index>0</spring.redis.index>
<spring.redis.host>172.19.0.11</spring.redis.host>
<spring.redis.host>172.16.0.8</spring.redis.host>
<spring.redis.port>6379</spring.redis.port>
<spring.redis.password>epdc!redis@master1405</spring.redis.password>
<!-- nacos -->
<nacos.register-enabled>true</nacos.register-enabled>
<nacos.server-addr>172.20.0.4:80</nacos.server-addr>
<nacos.ip></nacos.ip>
<nacos.server-addr>172.16.0.7:10000,172.16.0.7:10001</nacos.server-addr>
<nacos.ip>172.16.0.7</nacos.ip>
<nacos.namespace></nacos.namespace>
<spring.datasource.druid.url>
<![CDATA[jdbc:mysql://172.19.0.2:3306/esua_epdc_points?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
<![CDATA[jdbc:mysql://172.16.0.8:10000/esua_epdc_points?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
</spring.datasource.druid.url>
<spring.datasource.druid.username>epdc</spring.datasource.druid.username>
<spring.datasource.druid.password>Elink@833066</spring.datasource.druid.password>

2
esua-epdc/epdc-module/epdc-user/epdc-user-server/Dockerfile

@ -16,5 +16,5 @@ ENV DATAPATH /data
# 挂载/data目录到主机
VOLUME $DATAPATH
# 启动容器时执行
ENTRYPOINT java -jar -Xmx1024m $JAR_PATH
ENTRYPOINT java -jar -Xmx512m $JAR_PATH
EXPOSE ${SERVER_PORT}

8
esua-epdc/epdc-module/epdc-user/epdc-user-server/pom.xml

@ -196,18 +196,18 @@
<!-- redis配置 -->
<spring.redis.index>0</spring.redis.index>
<spring.redis.host>172.19.0.11</spring.redis.host>
<spring.redis.host>172.16.0.8</spring.redis.host>
<spring.redis.port>6379</spring.redis.port>
<spring.redis.password>epdc!redis@master1405</spring.redis.password>
<!-- nacos -->
<nacos.register-enabled>true</nacos.register-enabled>
<nacos.server-addr>172.20.0.4:80</nacos.server-addr>
<nacos.ip></nacos.ip>
<nacos.server-addr>172.16.0.7:10000,172.16.0.7:10001</nacos.server-addr>
<nacos.ip>172.16.0.7</nacos.ip>
<nacos.namespace></nacos.namespace>
<spring.datasource.druid.url>
<![CDATA[jdbc:mysql://172.19.0.2:3306/esua_epdc_user?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
<![CDATA[jdbc:mysql://172.16.0.8:10000/esua_epdc_user?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
</spring.datasource.druid.url>
<spring.datasource.druid.username>epdc</spring.datasource.druid.username>
<spring.datasource.druid.password>Elink@833066</spring.datasource.druid.password>

4
esua-epdc/epdc-module/epdc-webservice/pom.xml

@ -169,7 +169,7 @@
<!-- redis配置 -->
<spring.redis.index>0</spring.redis.index>
<spring.redis.host>172.19.0.11</spring.redis.host>
<spring.redis.host>172.16.0.8</spring.redis.host>
<spring.redis.port>6379</spring.redis.port>
<spring.redis.password>epdc!redis@master1405</spring.redis.password>
@ -178,7 +178,7 @@
<nacos.server-addr>172.20.0.4:80</nacos.server-addr>
<spring.datasource.druid.url>
<![CDATA[jdbc:mysql://172.19.0.2:3306/esua_epdc_admin?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
<![CDATA[jdbc:mysql://172.16.0.8:10000/esua_epdc_admin?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
</spring.datasource.druid.url>
<spring.datasource.druid.username>epdc</spring.datasource.druid.username>
<spring.datasource.druid.password>Elink@833066</spring.datasource.druid.password>

2
esua-epdc/epdc-module/epdc-websocket/epdc-websocket-server/Dockerfile

@ -16,5 +16,5 @@ ENV DATAPATH /data
# 挂载/data目录到主机
VOLUME $DATAPATH
# 启动容器时执行
ENTRYPOINT java -jar -Xmx1024m $JAR_PATH
ENTRYPOINT java -jar -Xmx512m $JAR_PATH
EXPOSE ${SERVER_PORT}

8
esua-epdc/epdc-module/epdc-websocket/epdc-websocket-server/pom.xml

@ -193,18 +193,18 @@
<!-- redis配置 -->
<spring.redis.index>0</spring.redis.index>
<spring.redis.host>172.19.0.11</spring.redis.host>
<spring.redis.host>172.16.0.8</spring.redis.host>
<spring.redis.port>6379</spring.redis.port>
<spring.redis.password>epdc!redis@master1405</spring.redis.password>
<!-- nacos -->
<nacos.register-enabled>true</nacos.register-enabled>
<nacos.server-addr>172.20.0.4:80</nacos.server-addr>
<nacos.ip></nacos.ip>
<nacos.server-addr>172.16.0.7:10000,172.16.0.7:10001</nacos.server-addr>
<nacos.ip>172.16.0.7</nacos.ip>
<nacos.namespace></nacos.namespace>
<spring.datasource.druid.url>
<![CDATA[jdbc:mysql://172.19.0.2:3306/esua_epdc_api?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
<![CDATA[jdbc:mysql://172.16.0.8:10000/esua_epdc_api?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai]]>
</spring.datasource.druid.url>
<spring.datasource.druid.username>epdc</spring.datasource.druid.username>
<spring.datasource.druid.password>Elink@833066</spring.datasource.druid.password>

Loading…
Cancel
Save