Nacos 安装教程

    准备工作:

    1. Linux / MacOS
    2. 预装一个 MySQL

    1. 下载 Nacos

    链接: https://github.com/alibaba/nacos/releases

    下载最新版(2.0.4)即可。

    下载解压后文件结构是这样的

    image.png

    2. 初始化 Mysql

    创建 Mysql 数据库 nacos-dev

    跑 conf/nacos-mysql.sql 下的初始化脚本

    ➜  nacos cat conf/nacos-mysql.sql
    /*
     * Copyright 1999-2018 Alibaba Group Holding Ltd.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /******************************************/
    /*   数据库全名 = nacos_config   */
    /*   表名称 = config_info   */
    /******************************************/
    CREATE TABLE `config_info` (
      `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
      `data_id` varchar(255) NOT NULL COMMENT 'data_id',
      `group_id` varchar(255) DEFAULT NULL,
      `content` longtext NOT NULL COMMENT 'content',
      `md5` varchar(32) DEFAULT NULL COMMENT 'md5',
      `gmt_create` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
      `gmt_modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间',
      `src_user` text COMMENT 'source user',
      `src_ip` varchar(50) DEFAULT NULL COMMENT 'source ip',
      `app_name` varchar(128) DEFAULT NULL,
      `tenant_id` varchar(128) DEFAULT '' COMMENT '租户字段',
      `c_desc` varchar(256) DEFAULT NULL,
      `c_use` varchar(64) DEFAULT NULL,
      `effect` varchar(64) DEFAULT NULL,
      `type` varchar(64) DEFAULT NULL,
      `c_schema` text,
      PRIMARY KEY (`id`),
      UNIQUE KEY `uk_configinfo_datagrouptenant` (`data_id`,`group_id`,`tenant_id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='config_info';
    
    /******************************************/
    /*   数据库全名 = nacos_config   */
    /*   表名称 = config_info_aggr   */
    /******************************************/
    CREATE TABLE `config_info_aggr` (
      `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
      `data_id` varchar(255) NOT NULL COMMENT 'data_id',
      `group_id` varchar(255) NOT NULL COMMENT 'group_id',
      `datum_id` varchar(255) NOT NULL COMMENT 'datum_id',
      `content` longtext NOT NULL COMMENT '内容',
      `gmt_modified` datetime NOT NULL COMMENT '修改时间',
      `app_name` varchar(128) DEFAULT NULL,
      `tenant_id` varchar(128) DEFAULT '' COMMENT '租户字段',
      PRIMARY KEY (`id`),
      UNIQUE KEY `uk_configinfoaggr_datagrouptenantdatum` (`data_id`,`group_id`,`tenant_id`,`datum_id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='增加租户字段';
    
    
    /******************************************/
    /*   数据库全名 = nacos_config   */
    /*   表名称 = config_info_beta   */
    /******************************************/
    CREATE TABLE `config_info_beta` (
      `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
      `data_id` varchar(255) NOT NULL COMMENT 'data_id',
      `group_id` varchar(128) NOT NULL COMMENT 'group_id',
      `app_name` varchar(128) DEFAULT NULL COMMENT 'app_name',
      `content` longtext NOT NULL COMMENT 'content',
      `beta_ips` varchar(1024) DEFAULT NULL COMMENT 'betaIps',
      `md5` varchar(32) DEFAULT NULL COMMENT 'md5',
      `gmt_create` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
      `gmt_modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间',
      `src_user` text COMMENT 'source user',
      `src_ip` varchar(50) DEFAULT NULL COMMENT 'source ip',
      `tenant_id` varchar(128) DEFAULT '' COMMENT '租户字段',
      PRIMARY KEY (`id`),
      UNIQUE KEY `uk_configinfobeta_datagrouptenant` (`data_id`,`group_id`,`tenant_id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='config_info_beta';
    
    /******************************************/
    /*   数据库全名 = nacos_config   */
    /*   表名称 = config_info_tag   */
    /******************************************/
    CREATE TABLE `config_info_tag` (
      `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
      `data_id` varchar(255) NOT NULL COMMENT 'data_id',
      `group_id` varchar(128) NOT NULL COMMENT 'group_id',
      `tenant_id` varchar(128) DEFAULT '' COMMENT 'tenant_id',
      `tag_id` varchar(128) NOT NULL COMMENT 'tag_id',
      `app_name` varchar(128) DEFAULT NULL COMMENT 'app_name',
      `content` longtext NOT NULL COMMENT 'content',
      `md5` varchar(32) DEFAULT NULL COMMENT 'md5',
      `gmt_create` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
      `gmt_modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间',
      `src_user` text COMMENT 'source user',
      `src_ip` varchar(50) DEFAULT NULL COMMENT 'source ip',
      PRIMARY KEY (`id`),
      UNIQUE KEY `uk_configinfotag_datagrouptenanttag` (`data_id`,`group_id`,`tenant_id`,`tag_id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='config_info_tag';
    
    /******************************************/
    /*   数据库全名 = nacos_config   */
    /*   表名称 = config_tags_relation   */
    /******************************************/
    CREATE TABLE `config_tags_relation` (
      `id` bigint(20) NOT NULL COMMENT 'id',
      `tag_name` varchar(128) NOT NULL COMMENT 'tag_name',
      `tag_type` varchar(64) DEFAULT NULL COMMENT 'tag_type',
      `data_id` varchar(255) NOT NULL COMMENT 'data_id',
      `group_id` varchar(128) NOT NULL COMMENT 'group_id',
      `tenant_id` varchar(128) DEFAULT '' COMMENT 'tenant_id',
      `nid` bigint(20) NOT NULL AUTO_INCREMENT,
      PRIMARY KEY (`nid`),
      UNIQUE KEY `uk_configtagrelation_configidtag` (`id`,`tag_name`,`tag_type`),
      KEY `idx_tenant_id` (`tenant_id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='config_tag_relation';
    
    /******************************************/
    /*   数据库全名 = nacos_config   */
    /*   表名称 = group_capacity   */
    /******************************************/
    CREATE TABLE `group_capacity` (
      `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键ID',
      `group_id` varchar(128) NOT NULL DEFAULT '' COMMENT 'Group ID,空字符表示整个集群',
      `quota` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '配额,0表示使用默认值',
      `usage` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '使用量',
      `max_size` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '单个配置大小上限,单位为字节,0表示使用默认值',
      `max_aggr_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '聚合子配置最大个数,,0表示使用默认值',
      `max_aggr_size` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '单个聚合数据的子配置大小上限,单位为字节,0表示使用默认值',
      `max_history_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '最大变更历史数量',
      `gmt_create` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
      `gmt_modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间',
      PRIMARY KEY (`id`),
      UNIQUE KEY `uk_group_id` (`group_id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='集群、各Group容量信息表';
    
    /******************************************/
    /*   数据库全名 = nacos_config   */
    /*   表名称 = his_config_info   */
    /******************************************/
    CREATE TABLE `his_config_info` (
      `id` bigint(64) unsigned NOT NULL,
      `nid` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
      `data_id` varchar(255) NOT NULL,
      `group_id` varchar(128) NOT NULL,
      `app_name` varchar(128) DEFAULT NULL COMMENT 'app_name',
      `content` longtext NOT NULL,
      `md5` varchar(32) DEFAULT NULL,
      `gmt_create` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
      `gmt_modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
      `src_user` text,
      `src_ip` varchar(50) DEFAULT NULL,
      `op_type` char(10) DEFAULT NULL,
      `tenant_id` varchar(128) DEFAULT '' COMMENT '租户字段',
      PRIMARY KEY (`nid`),
      KEY `idx_gmt_create` (`gmt_create`),
      KEY `idx_gmt_modified` (`gmt_modified`),
      KEY `idx_did` (`data_id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='多租户改造';
    
    
    /******************************************/
    /*   数据库全名 = nacos_config   */
    /*   表名称 = tenant_capacity   */
    /******************************************/
    CREATE TABLE `tenant_capacity` (
      `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键ID',
      `tenant_id` varchar(128) NOT NULL DEFAULT '' COMMENT 'Tenant ID',
      `quota` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '配额,0表示使用默认值',
      `usage` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '使用量',
      `max_size` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '单个配置大小上限,单位为字节,0表示使用默认值',
      `max_aggr_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '聚合子配置最大个数',
      `max_aggr_size` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '单个聚合数据的子配置大小上限,单位为字节,0表示使用默认值',
      `max_history_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '最大变更历史数量',
      `gmt_create` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
      `gmt_modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间',
      PRIMARY KEY (`id`),
      UNIQUE KEY `uk_tenant_id` (`tenant_id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='租户容量信息表';
    
    
    CREATE TABLE `tenant_info` (
      `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
      `kp` varchar(128) NOT NULL COMMENT 'kp',
      `tenant_id` varchar(128) default '' COMMENT 'tenant_id',
      `tenant_name` varchar(128) default '' COMMENT 'tenant_name',
      `tenant_desc` varchar(256) DEFAULT NULL COMMENT 'tenant_desc',
      `create_source` varchar(32) DEFAULT NULL COMMENT 'create_source',
      `gmt_create` bigint(20) NOT NULL COMMENT '创建时间',
      `gmt_modified` bigint(20) NOT NULL COMMENT '修改时间',
      PRIMARY KEY (`id`),
      UNIQUE KEY `uk_tenant_info_kptenantid` (`kp`,`tenant_id`),
      KEY `idx_tenant_id` (`tenant_id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='tenant_info';
    
    CREATE TABLE `users` (
    	`username` varchar(50) NOT NULL PRIMARY KEY,
    	`password` varchar(500) NOT NULL,
    	`enabled` boolean NOT NULL
    );
    
    CREATE TABLE `roles` (
    	`username` varchar(50) NOT NULL,
    	`role` varchar(50) NOT NULL,
    	UNIQUE INDEX `idx_user_role` (`username` ASC, `role` ASC) USING BTREE
    );
    
    CREATE TABLE `permissions` (
        `role` varchar(50) NOT NULL,
        `resource` varchar(255) NOT NULL,
        `action` varchar(8) NOT NULL,
        UNIQUE INDEX `uk_role_permission` (`role`,`resource`,`action`) USING BTREE
    );
    
    INSERT INTO users (username, password, enabled) VALUES ('nacos', '$2a$10$EuWPZHzz32dJN7jexM34MOeYirDdFAZm2kuWj7VEOJhhZkDrxfvUu', TRUE);
    
    INSERT INTO roles (username, role) VALUES ('nacos', 'ROLE_ADMIN');
    

    3. 配置 nacos 支持 MySQL

    编辑 conf/application.properties (请根据实际情况修改)

    spring.datasource.platform=mysql
    db.num=1
    db.url.0=jdbc:mysql://mysql.jansora.app:3306/nacos-prod?characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useUnicode=true&useSSL=false&serverTimezone=UTC
    db.user.0=nacos
    db.password.0=nacos
    

    启动 nacos

    bash bin/startup.sh -m standone

    /Users/jansora/Library/Java/JavaVirtualMachines/adopt-openjdk-1.8.0_292/Contents/Home/bin/java -Djava.ext.dirs=/Users/jansora/Library/Java/JavaVirtualMachines/adopt-openjdk-1.8.0_292/Contents/Home/jre/lib/ext:/Users/jansora/Library/Java/JavaVirtualMachines/adopt-openjdk-1.8.0_292/Contents/Home/lib/ext  -Xms512m -Xmx512m -Xmn256m -Dnacos.standalone=true -Dnacos.member.list= -Xloggc:/Users/jansora/Documents/software/nacos/logs/nacos_gc.log -verbose:gc -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+PrintGCTimeStamps -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=10 -XX:GCLogFileSize=100M -Dloader.path=/Users/jansora/Documents/software/nacos/plugins/health,/Users/jansora/Documents/software/nacos/plugins/cmdb,/Users/jansora/Documents/software/nacos/plugins/selector -Dnacos.home=/Users/jansora/Documents/software/nacos -jar /Users/jansora/Documents/software/nacos/target/nacos-server.jar  --spring.config.additional-location=file:/Users/jansora/Documents/software/nacos/conf/ --logging.config=/Users/jansora/Documents/software/nacos/conf/nacos-logback.xml --server.max-http-header-size=524288
    

    监控日志

    root@s3:/data/app/nacos/nacos/logs# tail -f nacos.log
    2022-03-06 19:51:21,135 WARN [ThreadPoolManager] Start destroying ThreadPool
    
    2022-03-06 19:51:21,136 WARN [ThreadPoolManager] Destruction of the end
    
    2022-03-06 19:51:21,141 WARN [ConfigServer-HttpClientManager] Destruction of the end
    
    2022-03-06 19:51:21,143 WARN [HttpClientBeanHolder] Start destroying common HttpClient
    
    2022-03-06 19:51:21,145 WARN [HttpClientBeanHolder] Destruction of the end
    
    2022-03-06 19:51:26,506 INFO Starting Nacos v2.0.4 on s3 with PID 215286 (/data/app/nacos/nacos/target/nacos-server.jar started by root in /)
    
    2022-03-06 19:51:26,507 INFO The following profiles are active: standalone
    
    2022-03-06 19:51:34,592 INFO Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@21a5fd96' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
    
    2022-03-06 19:51:34,609 INFO Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
    
    2022-03-06 19:51:35,404 INFO Tomcat initialized with port(s): 8848 (http)
    
    2022-03-06 19:51:35,499 INFO Starting service [Tomcat]
    
    2022-03-06 19:51:35,500 INFO Starting Servlet engine: [Apache Tomcat/9.0.38]
    
    2022-03-06 19:51:36,081 INFO At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.
    
    2022-03-06 19:51:36,180 INFO Initializing Spring embedded WebApplicationContext
    
    2022-03-06 19:51:36,180 INFO Root WebApplicationContext: initialization completed in 9445 ms
    
    2022-03-06 19:51:36,934 INFO HikariPool-1 - Starting...
    
    2022-03-06 19:51:37,380 INFO HikariPool-1 - Start completed.
    
    2022-03-06 19:51:38,048 INFO Nacos-related cluster resource initialization
    
    2022-03-06 19:51:38,066 INFO Load com.alibaba.nacos.core.ability.RemoteAbilityInitializer for ServerAbilityInitializer
    
    2022-03-06 19:51:38,069 INFO Load com.alibaba.nacos.naming.ability.NamingAbilityInitializer for ServerAbilityInitializer
    
    2022-03-06 19:51:38,076 INFO The cluster resource is initialized
    
    2022-03-06 19:51:38,166 INFO Get Distro config from env, DistroConfig{syncDelayMillis=1000, syncTimeoutMillis=3000, syncRetryDelayMillis=3000, verifyIntervalMillis=5000, verifyTimeoutMillis=3000, loadDataRetryDelayMillis=30000}
    
    2022-03-06 19:51:39,251 INFO Reflections took 107 ms to scan 1 urls, producing 5 keys and 16 values 
    
    2022-03-06 19:51:39,325 INFO Reflections took 12 ms to scan 1 urls, producing 4 keys and 28 values 
    
    2022-03-06 19:51:39,360 INFO Reflections took 9 ms to scan 1 urls, producing 5 keys and 19 values 
    
    2022-03-06 19:51:39,375 INFO Reflections took 2 ms to scan 1 urls, producing 2 keys and 12 values 
    
    2022-03-06 19:51:40,267 INFO Reflections took 80 ms to scan 2 urls, producing 3 keys and 6 values 
    
    2022-03-06 19:51:40,352 INFO Reflections took 79 ms to scan 2 urls, producing 4 keys and 9 values 
    
    2022-03-06 19:51:40,432 INFO Reflections took 77 ms to scan 2 urls, producing 3 keys and 10 values 
    
    2022-03-06 19:51:40,440 INFO Reflections took 4 ms to scan 1 urls, producing 2 keys and 2 values 
    
    2022-03-06 19:51:40,584 INFO Reflections took 136 ms to scan 2 urls, producing 1 keys and 5 values 
    
    2022-03-06 19:51:40,659 INFO Reflections took 70 ms to scan 2 urls, producing 1 keys and 7 values 
    
    2022-03-06 19:51:40,739 INFO Reflections took 77 ms to scan 2 urls, producing 2 keys and 8 values 
    
    2022-03-06 19:51:40,749 INFO Reflections took 5 ms to scan 1 urls, producing 1 keys and 1 values 
    
    2022-03-06 19:51:44,470 INFO Initializing ExecutorService 'applicationTaskExecutor'
    
    2022-03-06 19:51:44,834 INFO Adding welcome page: class path resource [static/index.html]
    
    2022-03-06 19:51:45,691 INFO Creating filter chain: Ant [pattern='/**'], []
    
    2022-03-06 19:51:45,758 INFO Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@514cd540, org.springframework.security.web.context.SecurityContextPersistenceFilter@670ce331, org.springframework.security.web.header.HeaderWriterFilter@3d6a6bee, org.springframework.security.web.csrf.CsrfFilter@39c1fe0b, org.springframework.security.web.authentication.logout.LogoutFilter@41f4fe5, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@7c29adc8, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@f096f37, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@11d4dbd6, org.springframework.security.web.session.SessionManagementFilter@213c3543, org.springframework.security.web.access.ExceptionTranslationFilter@732c9b5c]
    
    2022-03-06 19:51:45,951 INFO Initializing ExecutorService 'taskScheduler'
    
    2022-03-06 19:51:45,995 INFO Exposing 16 endpoint(s) beneath base path '/actuator'
    
    2022-03-06 19:51:46,314 INFO Tomcat started on port(s): 8848 (http) with context path '/nacos'
    
    2022-03-06 19:51:46,321 INFO Started Nacos in 22.245 seconds (JVM running for 23.337)
    
    2022-03-06 19:51:46,324 INFO Nacos started successfully in stand alone mode. use external storage
    
    2022-03-06 19:52:33,977 INFO Initializing Spring DispatcherServlet 'dispatcherServlet'
    
    2022-03-06 19:52:33,977 INFO Initializing Servlet 'dispatcherServlet'
    
    2022-03-06 19:52:34,014 INFO Completed initialization in 36 ms
    
    2022-03-06 20:01:39,807 WARN clearConfigHistory start
    
    2022-03-06 20:01:39,808 WARN clearConfigHistory, getBeforeStamp:2022-02-04 20:01:39.0, pageSize:1000
    
    2022-03-06 20:01:39,877 INFO [capacityManagement] start correct usage
    
    2022-03-06 20:01:39,910 INFO [capacityManagement] end correct usage, cost: 0.032s
    

    4. 打开监控页面

    http://localhost:8848/nacos/

    (默认 Web 监控页面账户和密码都是 nacos,进入Web 页面登录后在右上角重置密码)

    image.png

    评论栏