Files
chuanqi-server-instance/DBServer/DBServerLinux.txt
aixianling 132b06e02b fix(DBServer): 修改数据库连接端口
- 将数据库连接端口从 3307 修改为 3308
- 此修改解决了端口冲突问题,提高了系统的稳定性
2024-12-17 15:48:53 +08:00

49 lines
836 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 = "127.0.0.1",
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",
}
}