admin管理员组文章数量:1122850
1.Nacos下载
官网下载地址:https://github/alibaba/nacos/releases
选择一个最新的稳定版本。zip是Windows版本,tar.gz是Linux版本
2.Nacos安装
2.1 解压
下载完成之后,解压,进入目录,如下:
其中,
bin:可执行命令;
conf:配置文件;
target:nacos应用jar包;
当nacos运行起来之后,还会有data、logs
data:数据;
logs:运行日志
2.2 配置文件
其中
[1] application.properties是nacos单机启动配置文件。
[2] application.properties.example单机默认配置文件。
[3] cluster.conf.example是nacos集群默认配置文件。
[4] nacos-logback.xml是日志配置文件。
[5] nacos-mysql.sql是mysql数据库初始化脚本。
[6] schema.sql是Derby 数据库初始化脚本。
2.2.1 修改application.properties配置文件
如图所示,nacos项目的根目录是/nacos,启动端口为8848。配置外部数据库mysql,其中默认用户名和密码均为nacos。
此处,建议不要将spring.datasource.platform=mysql放开,不然会出现如下莫名其妙的错误。
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'memoryMonitor' defined in URL [jar:file:/E:/tools/nacos/target/nacos-server.jar!/BOOT-INF/lib/nacos-config-2.1.0.jar!/com/alibaba/nacos/config/server/monitor/MemoryMonitor.class]: Unsatisfied dependency expressed through constructor parameter 0; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'asyncNotifyService': Unsatisfied dependency expressed through field 'dumpService'; nested exception is org.springframework.beans.factory.BeanCreationException: 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
2.2.2 数据库导入nacos-mysql.sql
由于本机已经安装过mysql,故mysql安装配置不再赘述;利用Dbever连接并新建数据库执行nacos-mysql.sql。
注意数据库名称与配置文件中保持一致。
2.3 修改启动脚本startup.cmd
nacos默认使用的集群模式cluster,本机需要修改为单机模式standalone。
2.4 使用startup.cmd来启动nacos
nacos的根路径为/nacos,默认端口号为8848。因此后台的访问路径为:http://localhost:8848/nacos
2.5 登录 nacos,访问nacos管理页面
登录成果。
版权声明:本文标题:Windows下Nacos安装 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/biancheng/1724695021a933153.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论