背景:
之前在window上部署了nacos,现在在linux也部署
下载可参考nacos -- 下载 启动 登录_nacos登录地址_小白的码BUG之路的博客-CSDN博客
问题:
1:解压启动后第一个遇到的问题就是集群问题,修改成单点启动
参考命令
sh startup.sh -m standalone
2:mysql连接错误
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'grpcSdkServer': Invocation of init method failed; nested exception is java.io.IOException: Failed to bind
配置文件application.properties加上数据库连接配置
spring.datasource.platform=mysql
db.num=1
db.url.0=jdbc:mysql://192.168.0.108:3306/ry-config-dev?characterEncoding=utf8&connectTimeout=10000&socketTimeout=30000&autoReconnect=true&useUnicode=true&useSSL=false&serverTimezone=UTC&allowPublicKeyRetrieval=true
db.user.0=root
db.password.0=password
文章来源地址https://www.toymoban.com/news/detail-423993.html
重要的是要在数据库连接后面加上&allowPublicKeyRetrieval=true,不然容易报错
结果:
启动成功,也默认配置已经从数据量加载
文章来源:https://www.toymoban.com/news/detail-423993.html
到了这里,关于nacos -- Linux上部署的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!