Update RQLite raft port to 7001 in configuration files

This commit is contained in:
anonpenguin 2025-08-04 18:51:42 +03:00
parent cad45efb71
commit 0a0756d4da
4 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@ database:
max_database_size: 1073741824 # 1GB max_database_size: 1073741824 # 1GB
backup_interval: "24h" backup_interval: "24h"
rqlite_port: 5001 rqlite_port: 5001
rqlite_raft_port: 5002 rqlite_raft_port: 7001
discovery: discovery:
bootstrap_peers: [] # Bootstrap nodes don't need peers bootstrap_peers: [] # Bootstrap nodes don't need peers

View File

@ -15,7 +15,7 @@ database:
max_database_size: 1073741824 # 1GB max_database_size: 1073741824 # 1GB
backup_interval: "24h" backup_interval: "24h"
rqlite_port: 5001 rqlite_port: 5001
rqlite_raft_port: 5002 rqlite_raft_port: 7001
discovery: discovery:
bootstrap_peers: bootstrap_peers:

View File

@ -122,7 +122,7 @@ func DefaultConfig() *Config {
// RQLite-specific configuration // RQLite-specific configuration
RQLitePort: 5001, RQLitePort: 5001,
RQLiteRaftPort: 5002, RQLiteRaftPort: 7001,
RQLiteJoinAddress: "", // Empty for bootstrap node RQLiteJoinAddress: "", // Empty for bootstrap node
}, },
Discovery: DiscoveryConfig{ Discovery: DiscoveryConfig{

View File

@ -17,7 +17,7 @@ REPO_URL="https://git.debros.io/DeBros/network.git"
MIN_GO_VERSION="1.19" MIN_GO_VERSION="1.19"
NODE_PORT="4001" NODE_PORT="4001"
RQLITE_NODE_PORT="5001" RQLITE_NODE_PORT="5001"
RAFT_NODE_PORT="5002" RAFT_NODE_PORT="7001"
UPDATE_MODE=false UPDATE_MODE=false
NON_INTERACTIVE=false NON_INTERACTIVE=false