nacos启动失败:org.springframework.boot.web.server.WebServerExceptio

准备环境

系统环境: windows
nacos: 2.0.0-BETA

错误信息

org.springframework.context.ApplicationContextException: Unable to start web server; nested exception is org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat

配置文件

服务配置文件application.properties,启用mysql数据库

#*************** Spring Boot Related Configurations ***************#
### Default web context path:
server.servlet.contextPath=/nacos
### Default web server port:
server.port=8848

#*************** Network Related Configurations ***************#
### If prefer hostname over ip for Nacos server addresses in cluster.conf:
# nacos.inetutils.prefer-hostname-over-ip=false

### Specify local server's IP:
# nacos.inetutils.ip-address=


#*************** Config Module Related Configurations ***************#
### If use MySQL as datasource:
spring.datasource.platform=mysql

### Count of DB:
db.num=1

### Connect URL of DB:
db.url.0=jdbc:mysql://192.168.31.10:3306/nacos?characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useUnicode=true&useSSL=false&serverTimezone=UTC
db.user.0=root
db.password.0=root

### Connection pool configuration: hikariCP
db.pool.config.connectionTimeout=30000
db.pool.config.validationTimeout=10000
db.pool.config.maximumPoolSize=20
db.pool.config.minimumIdle=2

由于properties中仅启用了mysql数据库,没有进行主从配置,所以startup脚本需要修改默认的主从模式改为单机模式,不然就会遇到上述启动异常!
nacos启动失败:org.springframework.boot.web.server.WebServerExceptio_第1张图片

将上图中cluster改为standalone即可。

nacos启动失败:org.springframework.boot.web.server.WebServerExceptio_第2张图片

~ _ ~

emmm 学习中遇到的问题,在此记录分享一下。

你可能感兴趣的:(Spring,java,spring,中间件,spring,boot)