Skip to content

🔥更新:2025-01-28📝字数: 0 字⏰时长: 0 分钟

Deployment Parameter Guide

To support various scenarios, the same application package must allow custom parameter settings.

r-nacos runtime parameters can be configured via environment variables or a specified configuration file. If not set, it will operate with default parameters.

Methods to Configure Runtime Parameters

Setting Parameters via Environment Variables

Example:

sh
RNACOS_HTTP_PORT=8848 ./rnacos

This approach is handy for customizing a few parameters.

Setting Parameters via Configuration File

Example:

sh
# Starting from version 0.3.0, the -e env_file runtime parameter is supported
./rnacos -e env_file

If no file is specified, it will attempt to load configuration parameters from the .env file in the current directory.

The env_file content format is:

KEY1=VALUE1
KEY2=VALUE2
KEY3=VALUE3

r-nacos supports these environment variables at runtime; if not set, it will use default configurations.

Runtime Parameter Details

Parameter KEYDescriptionDefault ValueExampleVersion Supported From
RNACOS_HTTP_PORTrnacos http listening port884888480.1.x
RNACOS_GRPC_PORTrnacos grpc listening portDefault is HTTP port + 100098480.1.x
RNACOS_HTTP_CONSOLE_PORTr-nacos independent console portDefault is HTTP port + 2000; set to 0 to disable the independent console108480.4.x
RNACOS_CONSOLE_LOGIN_ONE_HOUR_LIMITr-nacos console login failure limit within one hourDefault is 5; a user will be locked for one hour after 5 consecutive login failures50.4.x
RNACOS_HTTP_WORKERSNumber of http worker threadsNumber of CPU cores80.1.x
RNACOS_CONFIG_DB_FILELocal database file address for the configuration center [no longer used after 0.2.x]config.dbconfig.db0.1.x
RNACOS_CONFIG_DB_DIRLocal database directory for the configuration center, automatically created during system runtime [recommended to use RNACOS_DATA_DIR after v0.6.x due to semantic reasons]nacos_dbnacos_db0.2.x
RNACOS_DATA_DIRLocal database directory, automatically created during system runtime [equivalent to RNACOS_CONFIG_DB_DIR, used to replace RNACOS_CONFIG_DB_DIR]Default is ~/.local/share/r-nacos/nacos_db for Linux, MacOS; nacos_db for Windows, Dockernacos_db0.6.x
RNACOS_RAFT_NODE_IDNode ID110.3.0
RNACOS_RAFT_NODE_ADDRNode address Ip:GrpcPort, effective every time when running as a single node; for multi-node cluster deployment, only the value configured when joining the cluster is taken127.0.0.1:GrpcPort127.0.0.1:98480.3.0
RNACOS_RAFT_AUTO_INITWhether to initialize as the master node (only effective during the first startup)Default is true for node 1, false for other nodestrue0.3.0
RNACOS_RAFT_JOIN_ADDRWhether to join the corresponding master node as a node, LeaderIp:GrpcPort; only effective during the first startupEmpty127.0.0.1:98480.3.0
RNACOS_RAFT_SNAPSHOT_LOG_SIZENumber of logs for raft to package a snapshot; a snapshot will be triggered when the change log exceeds this valueDefault is 10000100000.5.0
RUST_LOGLog level: debug, info, warn, error; all http, grpc requests will log info, if not concerned, set to error to reduce log volumeinfoerror0.3.0
RNACOS_ENABLE_NO_AUTH_CONSOLEWhether to enable no-auth consolefalsefalse0.5.2
RNACOS_CONSOLE_LOGIN_TIMEOUTConsole login validity period (in seconds)One day, 86400 seconds864000.5.0
RNACOS_GMT_OFFSET_HOURSTimezone for log time, in hours; default is local timezone, needs to be specified when running in Dockerlocal8 (UTC+8), -5 (UTC-5)0.5.7
RNACOS_ENABLE_OPEN_API_AUTHWhether to enable authentication for openapi (Note: do not enable authentication when switching from nacos to r-nacos)falsetrue0.5.8
RNACOS_API_LOGIN_TIMEOUTOpen api authentication validity period, in seconds (Note: when switching from no authentication to enabling authentication, the corresponding duration needs to be waited to ensure client token updates take effect)One hour, 3600 seconds36000.5.8
RNACOS_CLUSTER_TOKENCommunication request verification token between clusters, empty means no verification, only nodes with the same token can communicateEmpty string1234567890abcdefg0.5.8
RNACOS_BACKUP_TOKENData backup interface request verification token, empty or less than 32 characters means no backup interface is enabledEmpty string1234567890abcdefg1234567890abcdefg0.6.6
RNACOS_INIT_ADMIN_USERNAMEInitial admin username, only effective during the first startup of the master nodeadminrnacos0.5.11
RNACOS_INIT_ADMIN_PASSWORDInitial admin password, only effective during the first startup of the master nodeadminrnacos1234560.5.11
RNACOS_ENABLE_METRICSWhether to enable monitoring metricstruetrue0.5.13
RNACOS_METRICS_ENABLE_LOGWhether to enable printing monitoring metrics logsfalsefalse0.5.21
RNACOS_METRICS_COLLECT_INTERVAL_SECONDMonitoring metrics collection interval, in seconds, minimum interval is 1 second, cannot be less than RNACOS_METRICS_LOG_INTERVAL_SECOND1550.5.14
RNACOS_METRICS_LOG_INTERVAL_SECONDMonitoring metrics log printing interval, in seconds, minimum interval is 5 seconds60300.5.13
RNACOS_CONSOLE_ENABLE_CAPTCHACaptcha switchtruetrue0.5.14

Note: Starting from v0.3.0, nodes started with default parameters will be treated as a single-node cluster deployment where the current node is the master node. Supports joining additional slave nodes.

Released under the MIT License.