nacos基础(1):下载安装启动和排错

nacos官网:https://nacos.io/

下载

nacos下载:https://github.com/alibaba/nacos/releases

安装

解压安装包即可
nacos基础(1):下载安装启动和排错

启动

双击bin下的startup.cmd,如果启动成功不报错,即可访问:http://localhost:8848/nacos/
nacos默认登录账号:nacos,密码:nacos
nacos基础(1):下载安装启动和排错

启动发生错误

错误1: Unable to start web server

2022-03-01 09:57:58,639 ERROR Startup errors : {}

org.springframework.context.ApplicationContextException: Unable to start web server; nested exception is org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat
        at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:156)
        at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:544)
        at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:141)

nacos基础(1):下载安装启动和排错

解决办法:

在bin目录下编写一个bat脚本,内容如下,然后双击启动即可

startup.cmd -m standalone

nacos基础(1):下载安装启动和排错


错误2:db.num is null

java.io.IOException: java.lang.IllegalArgumentException: db.num is null
        at com.alibaba.nacos.config.server.service.datasource.ExternalDataSourceServiceImpl.reload(ExternalDataSourceServiceImpl.java:134)
        at com.alibaba.nacos.config.server.service.datasource.ExternalDataSourceServiceImpl.init(ExternalDataSourceServiceImpl.java:106)
        at com.alibaba.nacos.config.server.service.datasource.DynamicDataSource.getDataSource(DynamicDataSource.java:53)
        at com.alibaba.nacos.config.server.service.repository.extrnal.ExternalStoragePersistServiceImpl.init(ExternalStoragePersistServiceImpl.java:138)

nacos基础(1):下载安装启动和排错

解决方案:

配置本地数据库
1.本地新建mysql数据库,名称nacos,编码utf8,并导入conf文件夹下的nacos-mysql.mysql脚本
nacos基础(1):下载安装启动和排错

2 .修改配置文件,找到conf文件夹下的application.properties
修改Config Module Related Configurations下的配置为自己的nacos数据库即可
nacos基础(1):下载安装启动和排错
3. 重新启动nacos
nacos基础(1):下载安装启动和排错

上一篇:Django 学习四--bootstrap


下一篇:Java面向对象编程