Files
chuanqi-server-instance/DBServer/DBServerLinux.txt
aixianling 3038e83417 feat(DBServer): 修改数据服务监听地址
- 将 DBService 的 Address 从 "127.0.0.1" 修改为 "0.0.0.0
2025-02-17 17:08:49 +08:00

49 lines
834 B
Plaintext
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

DBServer = {
--服务器名称
ServerName = "版本验收-数据服(sid=1001)",
ServerIndex = 1,
--随机生成名字的名字库文件的文件名,相对路径
BoyNameFile = "BoyNameList.dat",
GirlNameFile = "GirlNameList.dat",
utf8=1,
--监听:数据服务
DBService = {
Address = "0.0.0.0",
Port = 10319,
},
--连接:会话服务器
SessionServer = {
Address = "127.0.0.1",
Port = 31000,
},
--连接:日志服务器
LogServer = {
Address = "127.0.0.1",
Port = 34000,
},
--连接:名称服务器
NameServer = {
Address = "127.0.0.1",
Port = 35000,
},
--连接跨服的DB
DBCenter = {
Address = "127.0.0.1",
Port = 36000,
},
--数据库连接配置
SQL = {
Host = "127.0.0.1",
Port = 3308,
DBName = "mir_actor_s1",
DBUser = "root",
DBPass = "mysql_Adkijc",
}
}