diff --git a/config/discovery.yml b/config/discovery.yml index 9cd23c590..3d96ff9b6 100644 --- a/config/discovery.yml +++ b/config/discovery.yml @@ -1,13 +1,13 @@ enable: "etcd" etcd: rootDirectory: openim - address: [ 172.16.8.48:12379 ] + address: [ localhost:12379 ] username: '' password: '' zookeeper: schema: openim - address: [ 172.16.8.48:12181 ] + address: [ localhost:12181 ] username: '' password: '' diff --git a/config/kafka.yml b/config/kafka.yml index d9b7ffa3c..d412e1be0 100644 --- a/config/kafka.yml +++ b/config/kafka.yml @@ -7,7 +7,7 @@ producerAck: "" # Compression type to use (e.g., none, gzip, snappy) compressType: "none" # List of Kafka broker addresses -address: [ 172.16.8.48:19094 ] +address: [ localhost:19094 ] # Kafka topic for Redis integration toRedisTopic: "toRedis" # Kafka topic for MongoDB integration diff --git a/config/minio.yml b/config/minio.yml index d143a1da3..11a9ace35 100644 --- a/config/minio.yml +++ b/config/minio.yml @@ -7,9 +7,9 @@ secretAccessKey: "openIM123" # Session token for MinIO authentication (optional) sessionToken: '' # Internal address of the MinIO server -internalAddress: "172.16.8.48:10005" +internalAddress: "localhost:10005" # External address of the MinIO server, accessible from outside. Supports both HTTP and HTTPS using a domain name -externalAddress: "http://172.16.8.48:10005" +externalAddress: "http://external_ip:10005" # Flag to enable or disable public read access to the bucket publicRead: false diff --git a/config/mongodb.yml b/config/mongodb.yml index 53969298b..98f5694e4 100644 --- a/config/mongodb.yml +++ b/config/mongodb.yml @@ -1,7 +1,7 @@ # URI for database connection, leave empty if using address and credential settings directly uri: '' # List of MongoDB server addresses -address: [ 172.16.8.48:37017 ] +address: [ localhost:37017 ] # Name of the database database: openim_v3 # Username for database authentication diff --git a/config/redis.yml b/config/redis.yml index 404d18953..87abed0e1 100644 --- a/config/redis.yml +++ b/config/redis.yml @@ -1,4 +1,4 @@ -address: [ 172.16.8.48:16379 ] +address: [ localhost:16379 ] username: '' password: openIM123 clusterMode: false