Nacos 2.2.1下载好官方代码后可以参考火车头-110的文章。
nacos2.2.1本地启动
我遇到一个比较坑的问题是按照这位大佬文章设置后还是会报错:
Error creating bean with name 'externalDumpService': Invocation of init method failed; nested exception is ErrCode:500, ErrMsg:Nacos Server did not start because dumpservice bean construction failure :
No DataSource set
网上搜了一下是数据库配置有问题,按照别人的加时区什么的搞了半天还是不行,
后来发现是官方默认配置里console\src\main\resources\application文件中的
db.url.0=jdbc:mysql://127.0.0.1:3306/nacos?characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useUnicode=true&useSSL=false&serverTimezone=UTC&allowPublicKeyRetrieval=true
默认的数据库名是nacos,而建表时默认的数据库名是nacos_config,太坑了,搞了半天!
文章来源:https://www.toymoban.com/news/detail-627234.html
这里保持建表时数据库名称和db.url.0配置一致就好了,我是都改成了nacos_config,数据库配置部分供参考。文章来源地址https://www.toymoban.com/news/detail-627234.html
spring.datasource.platform=mysql
nacos.plugin.datasource.log.enabled=true
db.num=1
db.url.0=jdbc:mysql://127.0.0.1:3306/nacos_config?characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useUnicode=true&useSSL=false&serverTimezone=UTC&allowPublicKeyRetrieval=true
db.user=root
db.password=root
到了这里,关于Nacos 2.2.1启动报错的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!