init
This commit is contained in:
9
.idea/.gitignore
generated
vendored
Normal file
9
.idea/.gitignore
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
# Default ignored files
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
|
# Editor-based HTTP Client requests
|
||||||
|
/httpRequests/
|
||||||
|
# Datasource local storage ignored files
|
||||||
|
/dataSources/
|
||||||
|
/dataSources.local.xml
|
||||||
|
/CopilotChatHistory.xml
|
||||||
12
.idea/chuanqi-server.iml
generated
Normal file
12
.idea/chuanqi-server.iml
generated
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module type="WEB_MODULE" version="4">
|
||||||
|
<component name="NewModuleRootManager">
|
||||||
|
<content url="file://$MODULE_DIR$">
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
||||||
|
</content>
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
</module>
|
||||||
14
.idea/inspectionProfiles/Project_Default.xml
generated
Normal file
14
.idea/inspectionProfiles/Project_Default.xml
generated
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
<component name="InspectionProjectProfileManager">
|
||||||
|
<profile version="1.0">
|
||||||
|
<option name="myName" value="Project Default" />
|
||||||
|
<inspection_tool class="PyPackageRequirementsInspection" enabled="true" level="WARNING" enabled_by_default="true">
|
||||||
|
<option name="ignoredPackages">
|
||||||
|
<value>
|
||||||
|
<list size="1">
|
||||||
|
<item index="0" class="java.lang.String" itemvalue="websocket" />
|
||||||
|
</list>
|
||||||
|
</value>
|
||||||
|
</option>
|
||||||
|
</inspection_tool>
|
||||||
|
</profile>
|
||||||
|
</component>
|
||||||
32
.idea/misc.xml
generated
Normal file
32
.idea/misc.xml
generated
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectUserFactors">
|
||||||
|
<factor id="completionFinishedType">
|
||||||
|
<dailyData date="26-06-2024">
|
||||||
|
<observation name="cancelled" value="4.0" />
|
||||||
|
</dailyData>
|
||||||
|
</factor>
|
||||||
|
<factor id="completionType">
|
||||||
|
<dailyData date="26-06-2024">
|
||||||
|
<observation name="BASIC" value="3.0" />
|
||||||
|
</dailyData>
|
||||||
|
</factor>
|
||||||
|
<factor id="completionUsage">
|
||||||
|
<dailyData date="26-06-2024">
|
||||||
|
<observation name="count" value="4.0" />
|
||||||
|
</dailyData>
|
||||||
|
</factor>
|
||||||
|
<factor id="fullLineFactors" />
|
||||||
|
<factor id="itemPosition" />
|
||||||
|
<factor id="mnemonicsUsage" />
|
||||||
|
<factor id="prefixLength" />
|
||||||
|
<factor id="prefixMatchingType" />
|
||||||
|
<factor id="templatesUsage" />
|
||||||
|
<factor id="timeBetweenTyping">
|
||||||
|
<dailyData date="26-06-2024">
|
||||||
|
<observation name="average" value="159.8" />
|
||||||
|
<observation name="count" value="5.0" />
|
||||||
|
</dailyData>
|
||||||
|
</factor>
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
8
.idea/modules.xml
generated
Normal file
8
.idea/modules.xml
generated
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectModuleManager">
|
||||||
|
<modules>
|
||||||
|
<module fileurl="file://$PROJECT_DIR$/.idea/chuanqi-server.iml" filepath="$PROJECT_DIR$/.idea/chuanqi-server.iml" />
|
||||||
|
</modules>
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
6
.idea/vcs.xml
generated
Normal file
6
.idea/vcs.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
16
run.sh
Normal file
16
run.sh
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
ln -sf /usr/lib64/mysql/libmysqlclient.so.18 /usr/lib64/libmysqlclient.so.16
|
||||||
|
|
||||||
|
echo ""> /data/yfbx_server/s1/nohup.out
|
||||||
|
|
||||||
|
echo ""> /data/yfbx_server/build/nohup.out
|
||||||
|
|
||||||
|
echo ""> /data/yfbx_server/cross/nohup.out
|
||||||
|
|
||||||
|
|
||||||
|
cd /data/yfbx_server/build && ./run.sh
|
||||||
|
|
||||||
|
cd /data/yfbx_server/s1 && ./run.sh
|
||||||
|
|
||||||
|
cd /data/yfbx_server/cross && ./run.sh
|
||||||
29
server/build/AMServer/AMServerLinux.txt
Normal file
29
server/build/AMServer/AMServerLinux.txt
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
amconfig=
|
||||||
|
{
|
||||||
|
httpport =11001, --绑定的http回调的端口
|
||||||
|
amport =5660, --连接地址
|
||||||
|
platform =
|
||||||
|
{
|
||||||
|
{
|
||||||
|
spid="wyi2",
|
||||||
|
codeid=1, --产品的编号
|
||||||
|
code="djrm", --产品的code
|
||||||
|
db="mir_amdb", --数据库名
|
||||||
|
host="127.0.0.1", --数据库主机
|
||||||
|
port=3307, --数据库端口
|
||||||
|
user="root", --数据库账号
|
||||||
|
pass="mysql_Adkijc", --数据库密码
|
||||||
|
paykey="GAmqXI8ao8kGAOIQmjFVqg==", --
|
||||||
|
awdkey="GAmqXI8ao8kGAOIQmjFVqg==", --
|
||||||
|
bianma="utf8", --
|
||||||
|
|
||||||
|
--允许的ip列表,最多32个
|
||||||
|
hosts=
|
||||||
|
{
|
||||||
|
"116.22.44.53",
|
||||||
|
"127.0.0.1",
|
||||||
|
"116.233.207.20"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
server/build/AMServer/amserver_r
Normal file
BIN
server/build/AMServer/amserver_r
Normal file
Binary file not shown.
8
server/build/AMServer/log/AMServer_20241210.txt.log.txt
Normal file
8
server/build/AMServer/log/AMServer_20241210.txt.log.txt
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
[24-12-10 15:12:12][TIP]正在启动AM充值服务……
|
||||||
|
[24-12-10 15:12:12][TIP]load file from /data/yfbx_server/build/AMServer/AMServerLinux.txt
|
||||||
|
[24-12-10 15:12:12][TIP]mysql connection character set: utf8
|
||||||
|
[24-12-10 15:12:12][TIP]连接MYSQL数据库(mir_amdb:3307)成功
|
||||||
|
[24-12-10 15:12:12][TIP]启动AM充值服务成功!
|
||||||
|
[24-12-10 15:12:17][TIP]接受客户端连接!<127.0.0.1>
|
||||||
|
[24-12-10 15:12:17][TIP][会话] client ([]:[52746]) registe success [SessionSrv]
|
||||||
|
[24-12-10 15:12:17][TIP]注册成功
|
||||||
28
server/build/AMServer/log/AMServer_2024125.txt.log.txt
Normal file
28
server/build/AMServer/log/AMServer_2024125.txt.log.txt
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
[24-12-05 08:57:34][TIP]正在启动AM充值服务……
|
||||||
|
[24-12-05 08:57:34][TIP]load file from /data/yfbx_server/build/AMServer/AMServerLinux.txt
|
||||||
|
[24-12-05 08:57:34][TIP]mysql connection character set: utf8
|
||||||
|
[24-12-05 08:57:34][TIP]连接MYSQL数据库(mir_amdb:3306)成功
|
||||||
|
[24-12-05 08:57:34][TIP]启动AM充值服务成功!
|
||||||
|
[24-12-05 08:57:36][TIP]接受客户端连接!<127.0.0.1>
|
||||||
|
[24-12-05 08:57:36][TIP][会话] client ([]:[33012]) registe success [SessionSrv]
|
||||||
|
[24-12-05 08:57:36][TIP]注册成功
|
||||||
|
[24-12-05 08:59:09][TIP]正在退出...
|
||||||
|
[24-12-05 08:59:09][TIP]接受客户端连接!<127.0.0.1>
|
||||||
|
[24-12-05 08:59:13][TIP]正在启动AM充值服务……
|
||||||
|
[24-12-05 08:59:13][TIP]load file from /data/yfbx_server/build/AMServer/AMServerLinux.txt
|
||||||
|
[24-12-05 08:59:13][TIP]mysql connection character set: utf8
|
||||||
|
[24-12-05 08:59:13][TIP]连接MYSQL数据库(mir_amdb:3306)成功
|
||||||
|
[24-12-05 08:59:13][TIP]启动AM充值服务成功!
|
||||||
|
[24-12-05 08:59:18][TIP]接受客户端连接!<127.0.0.1>
|
||||||
|
[24-12-05 08:59:18][TIP][会话] client ([]:[33592]) registe success [SessionSrv]
|
||||||
|
[24-12-05 08:59:18][TIP]注册成功
|
||||||
|
[24-12-05 09:17:58][TIP]正在退出...
|
||||||
|
[24-12-05 09:17:59][TIP]正在启动AM充值服务……
|
||||||
|
[24-12-05 09:17:59][TIP]load file from /data/yfbx_server/build/AMServer/AMServerLinux.txt
|
||||||
|
[24-12-05 09:17:59][TIP]mysql connection character set: utf8
|
||||||
|
[24-12-05 09:17:59][TIP]连接MYSQL数据库(mir_amdb:3306)成功
|
||||||
|
[24-12-05 09:17:59][TIP]启动AM充值服务成功!
|
||||||
|
[24-12-05 09:18:04][TIP]接受客户端连接!<127.0.0.1>
|
||||||
|
[24-12-05 09:18:05][TIP][会话] client ([]:[39660]) registe success [SessionSrv]
|
||||||
|
[24-12-05 09:18:05][TIP]注册成功
|
||||||
|
[24-12-06 04:15:15][TIP]正在退出...
|
||||||
8
server/build/AMServer/log/AMServer_2024126.txt.log.txt
Normal file
8
server/build/AMServer/log/AMServer_2024126.txt.log.txt
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
[24-12-06 04:15:16][TIP]正在启动AM充值服务……
|
||||||
|
[24-12-06 04:15:16][TIP]load file from /data/yfbx_server/build/AMServer/AMServerLinux.txt
|
||||||
|
[24-12-06 04:15:16][TIP]mysql connection character set: utf8
|
||||||
|
[24-12-06 04:15:16][TIP]连接MYSQL数据库(mir_amdb:3307)成功
|
||||||
|
[24-12-06 04:15:16][TIP]启动AM充值服务成功!
|
||||||
|
[24-12-06 04:15:20][TIP]接受客户端连接!<127.0.0.1>
|
||||||
|
[24-12-06 04:15:21][TIP][会话] client ([]:[40260]) registe success [SessionSrv]
|
||||||
|
[24-12-06 04:15:21][TIP]注册成功
|
||||||
8
server/build/AMServer/log/AMServer_2024128.txt.log.txt
Normal file
8
server/build/AMServer/log/AMServer_2024128.txt.log.txt
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
[24-12-08 21:16:13][TIP]正在启动AM充值服务……
|
||||||
|
[24-12-08 21:16:13][TIP]load file from /data/yfbx_server/build/AMServer/AMServerLinux.txt
|
||||||
|
[24-12-08 21:16:13][TIP]mysql connection character set: utf8
|
||||||
|
[24-12-08 21:16:13][TIP]连接MYSQL数据库(mir_amdb:3307)成功
|
||||||
|
[24-12-08 21:16:13][TIP]启动AM充值服务成功!
|
||||||
|
[24-12-08 21:16:18][TIP]接受客户端连接!<127.0.0.1>
|
||||||
|
[24-12-08 21:16:18][TIP][会话] client ([]:[55624]) registe success [SessionSrv]
|
||||||
|
[24-12-08 21:16:18][TIP]注册成功
|
||||||
9
server/build/AMServer/log/AMServer_2024129.txt.log.txt
Normal file
9
server/build/AMServer/log/AMServer_2024129.txt.log.txt
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
[24-12-09 10:57:30][TIP]正在启动AM充值服务……
|
||||||
|
[24-12-09 10:57:30][TIP]load file from /data/yfbx_server/build/AMServer/AMServerLinux.txt
|
||||||
|
[24-12-09 10:57:30][TIP]mysql connection character set: utf8
|
||||||
|
[24-12-09 10:57:30][TIP]连接MYSQL数据库(mir_amdb:3307)成功
|
||||||
|
[24-12-09 10:57:30][TIP]启动AM充值服务成功!
|
||||||
|
[24-12-09 10:57:35][TIP]接受客户端连接!<127.0.0.1>
|
||||||
|
[24-12-09 10:57:35][TIP][会话] client ([]:[34952]) registe success [SessionSrv]
|
||||||
|
[24-12-09 10:57:35][TIP]注册成功
|
||||||
|
[24-12-10 15:12:11][TIP]正在退出...
|
||||||
7
server/build/AMServer/run.sh
Normal file
7
server/build/AMServer/run.sh
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
if [ "$1" == "Debug" ]; then
|
||||||
|
./amserver_d AMServerLinux.txt
|
||||||
|
else
|
||||||
|
./amserver_r AMServerLinux.txt
|
||||||
|
fi
|
||||||
0
server/build/AMServer/sedaUTihI
Normal file
0
server/build/AMServer/sedaUTihI
Normal file
24
server/build/BackStageServer/BackStageServerLinux.txt
Normal file
24
server/build/BackStageServer/BackStageServerLinux.txt
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
BackServer =
|
||||||
|
{
|
||||||
|
spguid = 1, --默认的spid
|
||||||
|
|
||||||
|
--监听:服务器参数配置
|
||||||
|
Server =
|
||||||
|
{
|
||||||
|
ServiceName="BackStageServer",
|
||||||
|
BindAddress = "0.0.0.0",
|
||||||
|
Port = 8500 ,
|
||||||
|
HttpPort = 111,
|
||||||
|
},
|
||||||
|
|
||||||
|
--数据库连接相关
|
||||||
|
SQL =
|
||||||
|
{
|
||||||
|
Host = "127.0.0.1",
|
||||||
|
Port = 3307,
|
||||||
|
DBName = "mir_command",
|
||||||
|
DBUser = "root",
|
||||||
|
DBPass = "mysql_Adkijc",
|
||||||
|
utf8=1,
|
||||||
|
},
|
||||||
|
}
|
||||||
BIN
server/build/BackStageServer/backstageserver_r
Normal file
BIN
server/build/BackStageServer/backstageserver_r
Normal file
Binary file not shown.
@@ -0,0 +1,185 @@
|
|||||||
|
[24-12-10 15:12:12][TIP]load file from /data/yfbx_server/build/BackStageServer/BackStageServerLinux.txt
|
||||||
|
[24-12-10 15:12:12][TIP]连接数据库成功
|
||||||
|
[24-12-10 15:12:12][TIP]mysql connection character set: utf8
|
||||||
|
[24-12-10 15:12:12][TIP]HTTPSERVER启动完成!
|
||||||
|
[24-12-10 15:12:12][TIP]正在启动后台服务……
|
||||||
|
[24-12-10 15:12:12][TIP]启动后台服务成功!
|
||||||
|
[24-12-10 15:12:17][TIP]接受客户端连接!
|
||||||
|
[24-12-10 15:12:17][TIP]接受客户端连接!
|
||||||
|
[24-12-10 15:12:17][TIP]逻辑 client (:55622) registe success (版本验收-逻辑服(sid=10001))
|
||||||
|
[24-12-10 15:12:17][TIP]逻辑 client (:55620) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-10 15:12:24]log client[] Destroy
|
||||||
|
[24-12-10 15:12:30][TIP]接受客户端连接!
|
||||||
|
[24-12-10 15:12:30][TIP]逻辑 client (:55686) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-10 15:12:40]log client[] Destroy
|
||||||
|
[24-12-10 15:12:46][TIP]接受客户端连接!
|
||||||
|
[24-12-10 15:12:46][TIP]逻辑 client (:55754) registe success (版本验收-逻辑服(sid=10001))
|
||||||
|
[24-12-10 15:31:23]log client[] Destroy
|
||||||
|
[24-12-10 15:31:25][TIP]接受客户端连接!
|
||||||
|
[24-12-10 15:31:25][TIP]逻辑 client (:59036) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-10 15:31:27]log client[] Destroy
|
||||||
|
[24-12-10 15:31:33][TIP]接受客户端连接!
|
||||||
|
[24-12-10 15:31:33][TIP]逻辑 client (:59066) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-10 16:06:58]log client[] Destroy
|
||||||
|
[24-12-10 16:07:03][TIP]接受客户端连接!
|
||||||
|
[24-12-10 16:07:03][TIP]逻辑 client (:37008) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-10 16:07:05]log client[] Destroy
|
||||||
|
[24-12-10 16:07:11][TIP]接受客户端连接!
|
||||||
|
[24-12-10 16:07:11][TIP]逻辑 client (:37034) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-10 19:20:29]log client[] Destroy
|
||||||
|
[24-12-10 19:20:32][TIP]接受客户端连接!
|
||||||
|
[24-12-10 19:20:32][TIP]逻辑 client (:36150) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-11 02:02:29]log client[] Destroy
|
||||||
|
[24-12-11 02:02:38][TIP]接受客户端连接!
|
||||||
|
[24-12-11 02:02:38][TIP]逻辑 client (:48104) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-11 02:02:41]log client[] Destroy
|
||||||
|
[24-12-11 02:02:46][TIP]接受客户端连接!
|
||||||
|
[24-12-11 02:02:46][TIP]逻辑 client (:48128) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-11 11:17:36]log client[] Destroy
|
||||||
|
[24-12-11 11:17:47][TIP]接受客户端连接!
|
||||||
|
[24-12-11 11:17:47][TIP]逻辑 client (:60664) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-11 16:58:09][TIP]POST /?operid=10026&server_num=1&user=undefined&spid=1&command=undefined HTTP/1.0
|
||||||
|
Host: 100.88.157.105:111
|
||||||
|
Accept: */*
|
||||||
|
Content-Length: 547
|
||||||
|
Content-Type: multipart/form-data; boundary=------------------------404f0159e2ff9eb7
|
||||||
|
|
||||||
|
--------------------------404f0159e2ff9eb7
|
||||||
|
Content-Disposition: form-data; name="operid"
|
||||||
|
|
||||||
|
10026
|
||||||
|
--------------------------404f0159e2ff9eb7
|
||||||
|
Content-Disposition: form-data; name="server_num"
|
||||||
|
|
||||||
|
1
|
||||||
|
--------------------------404f0159e2ff9eb7
|
||||||
|
Content-Disposition: form-data; name="user"
|
||||||
|
|
||||||
|
undefined
|
||||||
|
--------------------------404f0159e2ff9eb7
|
||||||
|
Content-Disposition: form-data; name="spid"
|
||||||
|
|
||||||
|
1
|
||||||
|
--------------------------404f0159e2ff9eb7
|
||||||
|
Content-Disposition: form-data; name="command"
|
||||||
|
|
||||||
|
undefined
|
||||||
|
--------------------------404f0159e2ff9eb7--
|
||||||
|
|
||||||
|
[24-12-11 16:58:09][TIP]发送命令10026到1,spid:1
|
||||||
|
[24-12-11 16:58:09][TIP]Result:65537,1,10026 Id:0 Spid:1
|
||||||
|
[24-12-11 16:58:12][TIP]POST /?operid=10026&server_num=1&user=undefined&spid=1&command=undefined HTTP/1.0
|
||||||
|
Host: 100.88.157.105:111
|
||||||
|
Accept: */*
|
||||||
|
Content-Length: 547
|
||||||
|
Content-Type: multipart/form-data; boundary=------------------------e86b7b9933312ec7
|
||||||
|
|
||||||
|
--------------------------e86b7b9933312ec7
|
||||||
|
Content-Disposition: form-data; name="operid"
|
||||||
|
|
||||||
|
10026
|
||||||
|
--------------------------e86b7b9933312ec7
|
||||||
|
Content-Disposition: form-data; name="server_num"
|
||||||
|
|
||||||
|
1
|
||||||
|
--------------------------e86b7b9933312ec7
|
||||||
|
Content-Disposition: form-data; name="user"
|
||||||
|
|
||||||
|
undefined
|
||||||
|
--------------------------e86b7b9933312ec7
|
||||||
|
Content-Disposition: form-data; name="spid"
|
||||||
|
|
||||||
|
1
|
||||||
|
--------------------------e86b7b9933312ec7
|
||||||
|
Content-Disposition: form-data; name="command"
|
||||||
|
|
||||||
|
undefined
|
||||||
|
--------------------------e86b7b9933312ec7--
|
||||||
|
|
||||||
|
[24-12-11 16:58:12][TIP]发送命令10026到1,spid:1
|
||||||
|
[24-12-11 16:58:12][TIP]Result:65537,1,10026 Id:0 Spid:1
|
||||||
|
[24-12-11 16:59:38][TIP]POST /?operid=10026&server_num=1&user=undefined&spid=1&command=undefined HTTP/1.0
|
||||||
|
Host: 100.88.157.105:111
|
||||||
|
Accept: */*
|
||||||
|
Content-Length: 547
|
||||||
|
Content-Type: multipart/form-data; boundary=------------------------86c1b48e8951ac7e
|
||||||
|
|
||||||
|
--------------------------86c1b48e8951ac7e
|
||||||
|
Content-Disposition: form-data; name="operid"
|
||||||
|
|
||||||
|
10026
|
||||||
|
--------------------------86c1b48e8951ac7e
|
||||||
|
Content-Disposition: form-data; name="server_num"
|
||||||
|
|
||||||
|
1
|
||||||
|
--------------------------86c1b48e8951ac7e
|
||||||
|
Content-Disposition: form-data; name="user"
|
||||||
|
|
||||||
|
undefined
|
||||||
|
--------------------------86c1b48e8951ac7e
|
||||||
|
Content-Disposition: form-data; name="spid"
|
||||||
|
|
||||||
|
1
|
||||||
|
--------------------------86c1b48e8951ac7e
|
||||||
|
Content-Disposition: form-data; name="command"
|
||||||
|
|
||||||
|
undefined
|
||||||
|
--------------------------86c1b48e8951ac7e--
|
||||||
|
|
||||||
|
[24-12-11 16:59:38][TIP]发送命令10026到1,spid:1
|
||||||
|
[24-12-11 16:59:38][TIP]Result:65537,1,10026 Id:0 Spid:1
|
||||||
|
[24-12-11 16:59:40][TIP]POST /?operid=10026&server_num=1&user=undefined&spid=1&command=undefined HTTP/1.0
|
||||||
|
Host: 100.88.157.105:111
|
||||||
|
Accept: */*
|
||||||
|
Content-Length: 547
|
||||||
|
Content-Type: multipart/form-data; boundary=------------------------40282f4371108e5d
|
||||||
|
|
||||||
|
--------------------------40282f4371108e5d
|
||||||
|
Content-Disposition: form-data; name="operid"
|
||||||
|
|
||||||
|
10026
|
||||||
|
--------------------------40282f4371108e5d
|
||||||
|
Content-Disposition: form-data; name="server_num"
|
||||||
|
|
||||||
|
1
|
||||||
|
--------------------------40282f4371108e5d
|
||||||
|
Content-Disposition: form-data; name="user"
|
||||||
|
|
||||||
|
undefined
|
||||||
|
--------------------------40282f4371108e5d
|
||||||
|
Content-Disposition: form-data; name="spid"
|
||||||
|
|
||||||
|
1
|
||||||
|
--------------------------40282f4371108e5d
|
||||||
|
Content-Disposition: form-data; name="command"
|
||||||
|
|
||||||
|
undefined
|
||||||
|
--------------------------40282f4371108e5d--
|
||||||
|
|
||||||
|
[24-12-11 16:59:40][TIP]发送命令10026到1,spid:1
|
||||||
|
[24-12-11 16:59:40][TIP]Result:65537,1,10026 Id:0 Spid:1
|
||||||
|
[24-12-11 17:54:57]log client[] Destroy
|
||||||
|
[24-12-11 17:54:59][TIP]接受客户端连接!
|
||||||
|
[24-12-11 17:54:59][TIP]逻辑 client (:34410) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-11 21:15:20]log client[] Destroy
|
||||||
|
[24-12-12 17:49:50]log client[] Destroy
|
||||||
|
[24-12-12 17:49:57][TIP]接受客户端连接!
|
||||||
|
[24-12-12 17:49:57][TIP]逻辑 client (:46094) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-12 17:54:57]log client[] Destroy
|
||||||
|
[24-12-12 17:54:59][TIP]接受客户端连接!
|
||||||
|
[24-12-12 17:55:00][TIP]逻辑 client (:47038) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-12 18:00:34]log client[] Destroy
|
||||||
|
[24-12-12 18:00:40][TIP]接受客户端连接!
|
||||||
|
[24-12-12 18:00:40][TIP]逻辑 client (:47884) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-12 18:20:00]log client[] Destroy
|
||||||
|
[24-12-12 18:20:03][TIP]接受客户端连接!
|
||||||
|
[24-12-12 18:20:03][TIP]逻辑 client (:50712) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-13 01:43:50]log client[] Destroy
|
||||||
|
[24-12-13 01:43:52][TIP]接受客户端连接!
|
||||||
|
[24-12-13 01:43:52][TIP]逻辑 client (:48150) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-13 10:30:47]log client[] Destroy
|
||||||
|
[24-12-13 10:30:49][TIP]接受客户端连接!
|
||||||
|
[24-12-13 10:30:49][TIP]逻辑 client (:58572) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-13 11:19:36]log client[] Destroy
|
||||||
|
[24-12-13 11:19:38][TIP]接受客户端连接!
|
||||||
|
[24-12-13 11:19:38][TIP]逻辑 client (:36586) registe success (版本验收-逻辑服(sid=1001))
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
[24-12-05 12:31:52][TIP]load file from /home/cq/data/yfbx_server/build/BackStageServer/BackStageServerLinux.txt
|
||||||
|
[24-12-05 12:31:52][ERR]无法连接到数据库:Authentication plugin 'caching_sha2_password' cannot be loaded: /usr/lib64/mysql/plugin/caching_sha2_password.so: cannot open shared object file: No such file or directory
|
||||||
|
[24-12-05 12:31:52][ERR]连接数据库失败
|
||||||
|
[24-12-05 12:31:52][TIP]HTTPSERVER启动完成!
|
||||||
|
[24-12-05 12:31:52][TIP]正在启动后台服务……
|
||||||
|
[24-12-05 12:31:52][TIP]启动后台服务成功!
|
||||||
|
[24-12-05 04:44:52][TIP]load file from /data/yfbx_server/build/BackStageServer/BackStageServerLinux.txt
|
||||||
|
[24-12-05 04:44:52][ERR]无法连接到数据库:Authentication plugin 'caching_sha2_password' cannot be loaded: /usr/lib64/mysql/plugin/caching_sha2_password.so: cannot open shared object file: No such file or directory
|
||||||
|
[24-12-05 04:44:52][ERR]连接数据库失败
|
||||||
|
[24-12-05 04:44:52][TIP]HTTPSERVER启动完成!
|
||||||
|
[24-12-05 04:44:52][TIP]正在启动后台服务……
|
||||||
|
[24-12-05 04:44:52][TIP]启动后台服务成功!
|
||||||
|
[24-12-05 04:44:54][TIP]接受客户端连接!
|
||||||
|
[24-12-05 04:44:54][TIP]逻辑 client (:39354) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-05 04:44:54][ERR]MySQL server has gone away
|
||||||
|
[24-12-05 04:44:54][TIP]接受客户端连接!
|
||||||
|
[24-12-05 04:44:54][TIP]逻辑 client (:39366) registe success (版本验收-逻辑服(sid=10001))
|
||||||
|
[24-12-05 04:44:54][ERR]MySQL server has gone away
|
||||||
|
[24-12-05 04:48:36][TIP]load file from /data/yfbx_server/build/BackStageServer/BackStageServerLinux.txt
|
||||||
|
[24-12-05 04:48:36][ERR]无法连接到数据库:Authentication plugin 'caching_sha2_password' cannot be loaded: /usr/lib64/mysql/plugin/caching_sha2_password.so: cannot open shared object file: No such file or directory
|
||||||
|
[24-12-05 04:48:36][ERR]连接数据库失败
|
||||||
|
[24-12-05 04:48:36][TIP]HTTPSERVER启动完成!
|
||||||
|
[24-12-05 04:48:36][TIP]正在启动后台服务……
|
||||||
|
[24-12-05 04:48:36][TIP]启动后台服务成功!
|
||||||
|
[24-12-05 04:48:36][TIP]接受客户端连接!
|
||||||
|
[24-12-05 04:48:36][TIP]接受客户端连接!
|
||||||
|
[24-12-05 04:48:36][TIP]逻辑 client (:41868) registe success (版本验收-逻辑服(sid=10001))
|
||||||
|
[24-12-05 04:48:36][ERR]MySQL server has gone away
|
||||||
|
[24-12-05 04:48:36][TIP]逻辑 client (:41866) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-05 04:48:36][ERR]MySQL server has gone away
|
||||||
|
[24-12-05 04:48:43]log client[] Destroy
|
||||||
|
[24-12-05 04:48:47][TIP]接受客户端连接!
|
||||||
|
[24-12-05 04:48:47][TIP]逻辑 client (:42020) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-05 04:48:47][ERR]MySQL server has gone away
|
||||||
|
[24-12-05 04:48:58]log client[] Destroy
|
||||||
|
[24-12-05 04:49:01][TIP]接受客户端连接!
|
||||||
|
[24-12-05 04:49:01][TIP]逻辑 client (:42210) registe success (版本验收-逻辑服(sid=10001))
|
||||||
|
[24-12-05 04:49:01][ERR]MySQL server has gone away
|
||||||
|
[24-12-05 05:08:36][ERR]MySQL server has gone away
|
||||||
|
[24-12-05 05:08:36][ERR]MySQL server has gone away
|
||||||
|
[24-12-05 06:08:36][ERR]MySQL server has gone away
|
||||||
|
[24-12-05 06:08:36][ERR]MySQL server has gone away
|
||||||
|
[24-12-05 07:08:36][ERR]MySQL server has gone away
|
||||||
|
[24-12-05 07:08:36][ERR]MySQL server has gone away
|
||||||
|
[24-12-05 08:08:36][ERR]MySQL server has gone away
|
||||||
|
[24-12-05 08:08:36][ERR]MySQL server has gone away
|
||||||
|
[24-12-05 08:59:13][TIP]load file from /data/yfbx_server/build/BackStageServer/BackStageServerLinux.txt
|
||||||
|
[24-12-05 08:59:13][TIP]连接数据库成功
|
||||||
|
[24-12-05 08:59:13][TIP]mysql connection character set: utf8
|
||||||
|
[24-12-05 08:59:14][TIP]HTTPSERVER启动完成!
|
||||||
|
[24-12-05 08:59:14][TIP]正在启动后台服务……
|
||||||
|
[24-12-05 08:59:14][TIP]启动后台服务成功!
|
||||||
|
[24-12-05 08:59:18][TIP]接受客户端连接!
|
||||||
|
[24-12-05 08:59:18][TIP]接受客户端连接!
|
||||||
|
[24-12-05 08:59:18][TIP]逻辑 client (:36466) registe success (版本验收-逻辑服(sid=10001))
|
||||||
|
[24-12-05 08:59:18][TIP]逻辑 client (:36468) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-05 08:59:25]log client[] Destroy
|
||||||
|
[24-12-05 08:59:30][TIP]接受客户端连接!
|
||||||
|
[24-12-05 08:59:30][TIP]逻辑 client (:36570) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-05 08:59:41]log client[] Destroy
|
||||||
|
[24-12-05 08:59:44][TIP]接受客户端连接!
|
||||||
|
[24-12-05 08:59:44][TIP]逻辑 client (:36684) registe success (版本验收-逻辑服(sid=10001))
|
||||||
|
[24-12-05 09:17:59][TIP]load file from /data/yfbx_server/build/BackStageServer/BackStageServerLinux.txt
|
||||||
|
[24-12-05 09:17:59][TIP]连接数据库成功
|
||||||
|
[24-12-05 09:17:59][TIP]mysql connection character set: utf8
|
||||||
|
[24-12-05 09:18:00][TIP]HTTPSERVER启动完成!
|
||||||
|
[24-12-05 09:18:00][TIP]正在启动后台服务……
|
||||||
|
[24-12-05 09:18:00][TIP]启动后台服务成功!
|
||||||
|
[24-12-05 09:18:04][TIP]接受客户端连接!
|
||||||
|
[24-12-05 09:18:04][TIP]接受客户端连接!
|
||||||
|
[24-12-05 09:18:04][TIP]逻辑 client (:42534) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-05 09:18:04][TIP]逻辑 client (:42532) registe success (版本验收-逻辑服(sid=10001))
|
||||||
|
[24-12-05 09:18:12]log client[] Destroy
|
||||||
|
[24-12-05 09:18:14][TIP]接受客户端连接!
|
||||||
|
[24-12-05 09:18:14][TIP]逻辑 client (:42628) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-05 09:18:25]log client[] Destroy
|
||||||
|
[24-12-05 09:18:29][TIP]接受客户端连接!
|
||||||
|
[24-12-05 09:18:29][TIP]逻辑 client (:42736) registe success (版本验收-逻辑服(sid=10001))
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
[24-12-06 04:15:16][TIP]load file from /data/yfbx_server/build/BackStageServer/BackStageServerLinux.txt
|
||||||
|
[24-12-06 04:15:16][TIP]连接数据库成功
|
||||||
|
[24-12-06 04:15:16][TIP]mysql connection character set: utf8
|
||||||
|
[24-12-06 04:15:16][TIP]HTTPSERVER启动完成!
|
||||||
|
[24-12-06 04:15:16][TIP]正在启动后台服务……
|
||||||
|
[24-12-06 04:15:16][TIP]启动后台服务成功!
|
||||||
|
[24-12-06 04:15:21][TIP]接受客户端连接!
|
||||||
|
[24-12-06 04:15:21][TIP]接受客户端连接!
|
||||||
|
[24-12-06 04:15:21][TIP]逻辑 client (:43162) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-06 04:15:21][TIP]逻辑 client (:43160) registe success (版本验收-逻辑服(sid=10001))
|
||||||
|
[24-12-06 04:15:29]log client[] Destroy
|
||||||
|
[24-12-06 04:15:33][TIP]接受客户端连接!
|
||||||
|
[24-12-06 04:15:33][TIP]逻辑 client (:43220) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-06 04:15:44]log client[] Destroy
|
||||||
|
[24-12-06 04:15:48][TIP]接受客户端连接!
|
||||||
|
[24-12-06 04:15:48][TIP]逻辑 client (:43318) registe success (版本验收-逻辑服(sid=10001))
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
[24-12-08 21:16:13][TIP]load file from /data/yfbx_server/build/BackStageServer/BackStageServerLinux.txt
|
||||||
|
[24-12-08 21:16:13][TIP]连接数据库成功
|
||||||
|
[24-12-08 21:16:13][TIP]mysql connection character set: utf8
|
||||||
|
[24-12-08 21:16:13][TIP]HTTPSERVER启动完成!
|
||||||
|
[24-12-08 21:16:13][TIP]正在启动后台服务……
|
||||||
|
[24-12-08 21:16:13][TIP]启动后台服务成功!
|
||||||
|
[24-12-08 21:16:15][TIP]接受客户端连接!
|
||||||
|
[24-12-08 21:16:15][TIP]逻辑 client (:58490) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-08 21:16:15][TIP]接受客户端连接!
|
||||||
|
[24-12-08 21:16:15][TIP]逻辑 client (:58500) registe success (版本验收-逻辑服(sid=10001))
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
[24-12-09 10:57:35][TIP]load file from /data/yfbx_server/build/BackStageServer/BackStageServerLinux.txt
|
||||||
|
[24-12-09 10:57:35][TIP]连接数据库成功
|
||||||
|
[24-12-09 10:57:35][TIP]mysql connection character set: utf8
|
||||||
|
[24-12-09 10:57:35][TIP]HTTPSERVER启动完成!
|
||||||
|
[24-12-09 10:57:35][TIP]正在启动后台服务……
|
||||||
|
[24-12-09 10:57:35][TIP]启动后台服务成功!
|
||||||
|
[24-12-09 10:57:36][TIP]接受客户端连接!
|
||||||
|
[24-12-09 10:57:36][TIP]逻辑 client (:37854) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-09 10:57:37][TIP]接受客户端连接!
|
||||||
|
[24-12-09 10:57:37][TIP]逻辑 client (:37860) registe success (版本验收-逻辑服(sid=10001))
|
||||||
|
[24-12-09 13:03:37]log client[] Destroy
|
||||||
|
[24-12-09 13:03:39][TIP]接受客户端连接!
|
||||||
|
[24-12-09 13:03:39][TIP]逻辑 client (:53586) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-09 23:39:10]log client[] Destroy
|
||||||
|
[24-12-09 23:39:12][TIP]接受客户端连接!
|
||||||
|
[24-12-09 23:39:12][TIP]逻辑 client (:37556) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-10 06:55:27]log client[] Destroy
|
||||||
|
[24-12-10 06:55:29][TIP]接受客户端连接!
|
||||||
|
[24-12-10 06:55:29][TIP]逻辑 client (:56230) registe success (版本验收-逻辑服(sid=1001))
|
||||||
|
[24-12-10 08:28:26]log client[] Destroy
|
||||||
|
[24-12-10 08:28:29][TIP]接受客户端连接!
|
||||||
|
[24-12-10 08:28:29][TIP]逻辑 client (:37768) registe success (版本验收-逻辑服(sid=1001))
|
||||||
7
server/build/BackStageServer/run.sh
Normal file
7
server/build/BackStageServer/run.sh
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
if [ "$1" == "Debug" ]; then
|
||||||
|
./backstageserver_d BackStageServerLinux.txt
|
||||||
|
else
|
||||||
|
./backstageserver_r BackStageServerLinux.txt
|
||||||
|
fi
|
||||||
0
server/build/BackStageServer/sedbAAHeJ
Normal file
0
server/build/BackStageServer/sedbAAHeJ
Normal file
22
server/build/GateServer/GateServerLinux.txt
Normal file
22
server/build/GateServer/GateServerLinux.txt
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
GateServer =
|
||||||
|
{
|
||||||
|
--逻辑网关
|
||||||
|
{
|
||||||
|
--监听:客户端连接
|
||||||
|
LocalService =
|
||||||
|
{
|
||||||
|
ServerName = "网关服(sid=1)",
|
||||||
|
Address = "0.0.0.0",
|
||||||
|
Port = 9901,
|
||||||
|
MaxSession = 8192,--网关中客户端连接池的最大连接数
|
||||||
|
SendThreadCount = 2,--数据发送线程池中工作线程数量
|
||||||
|
},
|
||||||
|
|
||||||
|
--连接:逻辑服务器
|
||||||
|
BackServer =
|
||||||
|
{
|
||||||
|
Host = "127.0.0.1",
|
||||||
|
Port = 23001
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
BIN
server/build/GateServer/gateserver_r
Normal file
BIN
server/build/GateServer/gateserver_r
Normal file
Binary file not shown.
10
server/build/GateServer/run.sh
Normal file
10
server/build/GateServer/run.sh
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
path=`pwd`
|
||||||
|
|
||||||
|
if [ "$1" == "Debug" ]; then
|
||||||
|
$path/gateserver_d $path/GateServerLinux.txt
|
||||||
|
else
|
||||||
|
$path/gateserver_r $path/GateServerLinux.txt
|
||||||
|
fi
|
||||||
|
|
||||||
30
server/build/LoggerServer/Config.txt
Normal file
30
server/build/LoggerServer/Config.txt
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
Config=
|
||||||
|
{
|
||||||
|
--登录Url
|
||||||
|
login_url="api.ms.longchen80.com/",
|
||||||
|
--快捷禁言时间
|
||||||
|
gagtime=5,
|
||||||
|
|
||||||
|
--如果不需要转发协议 内容为空
|
||||||
|
--0:360 1:YY接口 2:4399 3:91w
|
||||||
|
sid=3,
|
||||||
|
|
||||||
|
--num类型 0:不推送只列表显示 1:推送并且不显示列表 2:推送并且显示列表
|
||||||
|
num=2,
|
||||||
|
|
||||||
|
--TCP端口
|
||||||
|
TcpPort=0,
|
||||||
|
|
||||||
|
--post操作Url
|
||||||
|
post_url="http://chat.ms.longchen80.com/game/chat/push",
|
||||||
|
|
||||||
|
--游戏标识
|
||||||
|
gkey="ms",
|
||||||
|
|
||||||
|
--签名(双方协定)
|
||||||
|
sign="adaedff05116cb2d93630151aa15f449",
|
||||||
|
|
||||||
|
|
||||||
|
--监测的服务器的范围,支持多个范围,比如1到100,201-300,用,分开
|
||||||
|
servers={9000-9010,10000,10001,10009},
|
||||||
|
}
|
||||||
29
server/build/LoggerServer/LoggerServerLinux.txt
Normal file
29
server/build/LoggerServer/LoggerServerLinux.txt
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
LoggerServer =
|
||||||
|
{
|
||||||
|
--监听:服务器参数配置
|
||||||
|
Server =
|
||||||
|
{
|
||||||
|
BindAddress = "0.0.0.0",
|
||||||
|
Port = 34000 ,
|
||||||
|
ServiceName="LoggerServer",
|
||||||
|
},
|
||||||
|
|
||||||
|
--监听:发送聊天消息给工具
|
||||||
|
ChatLog =
|
||||||
|
{
|
||||||
|
ServiceName="LogServer",
|
||||||
|
BindAddress = "0.0.0.0",
|
||||||
|
Port = 35010,
|
||||||
|
},
|
||||||
|
|
||||||
|
--数据库连接相关
|
||||||
|
SQL =
|
||||||
|
{
|
||||||
|
Host = "127.0.0.1",
|
||||||
|
Port = 3307,
|
||||||
|
DBName = "mir_log_s1",
|
||||||
|
DBUser = "root",
|
||||||
|
DBPass = "mysql_Adkijc",
|
||||||
|
utf8=1,
|
||||||
|
},
|
||||||
|
}
|
||||||
21653
server/build/LoggerServer/log/LoggerServer_20241210.txt.log
Normal file
21653
server/build/LoggerServer/log/LoggerServer_20241210.txt.log
Normal file
File diff suppressed because it is too large
Load Diff
225950
server/build/LoggerServer/log/LoggerServer_2024125.txt.log
Normal file
225950
server/build/LoggerServer/log/LoggerServer_2024125.txt.log
Normal file
File diff suppressed because it is too large
Load Diff
2764
server/build/LoggerServer/log/LoggerServer_2024126.txt.log
Normal file
2764
server/build/LoggerServer/log/LoggerServer_2024126.txt.log
Normal file
File diff suppressed because it is too large
Load Diff
1576
server/build/LoggerServer/log/LoggerServer_2024128.txt.log
Normal file
1576
server/build/LoggerServer/log/LoggerServer_2024128.txt.log
Normal file
File diff suppressed because it is too large
Load Diff
19758
server/build/LoggerServer/log/LoggerServer_2024129.txt.log
Normal file
19758
server/build/LoggerServer/log/LoggerServer_2024129.txt.log
Normal file
File diff suppressed because it is too large
Load Diff
BIN
server/build/LoggerServer/loggerserver_r
Normal file
BIN
server/build/LoggerServer/loggerserver_r
Normal file
Binary file not shown.
8
server/build/LoggerServer/run.sh
Normal file
8
server/build/LoggerServer/run.sh
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
if [ "$1" == "Debug" ]; then
|
||||||
|
./loggerserver_d LoggerServerLinux.txt
|
||||||
|
else
|
||||||
|
./loggerserver_r LoggerServerLinux.txt
|
||||||
|
fi
|
||||||
|
|
||||||
0
server/build/LoggerServer/sed5rwg9H
Normal file
0
server/build/LoggerServer/sed5rwg9H
Normal file
24
server/build/NameServer/NameServerLinux.txt
Normal file
24
server/build/NameServer/NameServerLinux.txt
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
NameServer =
|
||||||
|
{
|
||||||
|
--服务器名称
|
||||||
|
ServerName = "zgame-nameserver",
|
||||||
|
spguid=1,
|
||||||
|
|
||||||
|
--监听:名称服务绑定地址和端口
|
||||||
|
NameService =
|
||||||
|
{
|
||||||
|
Address = "0.0.0.0",
|
||||||
|
Port = 35000
|
||||||
|
},
|
||||||
|
|
||||||
|
--数据库连接配置
|
||||||
|
SQL =
|
||||||
|
{
|
||||||
|
--Host = "192.168.0.173",
|
||||||
|
Host = "127.0.0.1",
|
||||||
|
Port = 3307,
|
||||||
|
DBName = "mir_name",
|
||||||
|
DBUser = "root",
|
||||||
|
DBPass = "mysql_Adkijc"
|
||||||
|
}
|
||||||
|
}
|
||||||
50
server/build/NameServer/log/NameServer_20241210.txt.log
Normal file
50
server/build/NameServer/log/NameServer_20241210.txt.log
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
[24-12-10 15:12:12][TIP]Start Name Server
|
||||||
|
[24-12-10 15:12:12][TIP]spid=1
|
||||||
|
[24-12-10 15:12:12][TIP]spid=zgame-nameserver,spguid=1
|
||||||
|
[24-12-10 15:12:12][ERR]Query :select max(charid) from charnames, CurrentThreadId[29050]
|
||||||
|
[24-12-10 15:12:12][TIP] max actorid=16777569
|
||||||
|
[24-12-10 15:12:12][ERR]ResetQuery CurrentThreadId[29050]
|
||||||
|
[24-12-10 15:12:12][ERR]Query :select charid from charnames where serverindex =0, CurrentThreadId[29050]
|
||||||
|
[24-12-10 15:12:12][TIP]nCurrentFixActorId =16777569
|
||||||
|
[24-12-10 15:12:12][ERR]ResetQuery CurrentThreadId[29050]
|
||||||
|
[24-12-10 15:12:12][TIP]actorid has init,max=16777569
|
||||||
|
[24-12-10 15:12:12][ERR]Query :select max(guildid) from guildnames, CurrentThreadId[29050]
|
||||||
|
[24-12-10 15:12:12][TIP] max guildid=16777266
|
||||||
|
[24-12-10 15:12:12][ERR]ResetQuery CurrentThreadId[29050]
|
||||||
|
[24-12-10 15:12:12][ERR]Query :select guildid from guildnames where serverindex =0, CurrentThreadId[29050]
|
||||||
|
[24-12-10 15:12:12][TIP]nCurrentFixGuildId =16777266
|
||||||
|
[24-12-10 15:12:12][ERR]ResetQuery CurrentThreadId[29050]
|
||||||
|
[24-12-10 15:12:12][TIP]guildid has init,max=16777266
|
||||||
|
[24-12-10 15:12:12][TIP]-------------------------------------------
|
||||||
|
[24-12-10 15:12:12][TIP]名称服务器启动成功,核心版本号是17.3.24.1
|
||||||
|
[24-12-10 15:12:12][TIP]quit命令可以停止服务并退出程序
|
||||||
|
[24-12-10 15:12:12][TIP]-------------------------------------------
|
||||||
|
[24-12-10 15:12:17][TIP]Name client :56886 connected
|
||||||
|
[24-12-10 15:12:17][TIP]数据 client (:56886) registe success (版本验收-数据服(sid=10001))
|
||||||
|
[24-12-10 15:12:17][TIP]Name client :56888 connected
|
||||||
|
[24-12-10 15:12:17][TIP]数据 client (:56888) registe success (版本验收-数据服(sid=1001))
|
||||||
|
[24-12-10 15:12:27][WRN]Name client 版本验收-数据服(sid=1001)(:56888) connection closed
|
||||||
|
[24-12-10 15:12:29][TIP]Name client :56916 connected
|
||||||
|
[24-12-10 15:12:29][TIP]数据 client (:56916) registe success (版本验收-数据服(sid=1001))
|
||||||
|
[24-12-10 15:12:43][WRN]Name client 版本验收-数据服(sid=10001)(:56886) connection closed
|
||||||
|
[24-12-10 15:12:45][TIP]Name client :56986 connected
|
||||||
|
[24-12-10 15:12:45][TIP]数据 client (:56986) registe success (版本验收-数据服(sid=10001))
|
||||||
|
[24-12-10 15:31:24][WRN]Name client 版本验收-数据服(sid=1001)(:56916) connection closed
|
||||||
|
[24-12-10 15:31:24][TIP]Name client :60274 connected
|
||||||
|
[24-12-10 15:31:24][TIP]数据 client (:60274) registe success (版本验收-数据服(sid=1001))
|
||||||
|
[24-12-10 16:07:00][WRN]Name client 版本验收-数据服(sid=1001)(:60274) connection closed
|
||||||
|
[24-12-10 16:07:01][TIP]Name client :38240 connected
|
||||||
|
[24-12-10 16:07:01][TIP]数据 client (:38240) registe success (版本验收-数据服(sid=1001))
|
||||||
|
[24-12-11 21:15:21][WRN]Name client 版本验收-数据服(sid=10001)(:56986) connection closed
|
||||||
|
[24-12-12 17:49:54][WRN]Name client 版本验收-数据服(sid=1001)(:38240) connection closed
|
||||||
|
[24-12-12 17:49:55][TIP]Name client :47328 connected
|
||||||
|
[24-12-12 17:49:55][TIP]数据 client (:47328) registe success (版本验收-数据服(sid=1001))
|
||||||
|
[24-12-12 17:54:57][WRN]Name client 版本验收-数据服(sid=1001)(:47328) connection closed
|
||||||
|
[24-12-12 17:54:59][TIP]Name client :48274 connected
|
||||||
|
[24-12-12 17:54:59][TIP]数据 client (:48274) registe success (版本验收-数据服(sid=1001))
|
||||||
|
[24-12-12 18:00:37][WRN]Name client 版本验收-数据服(sid=1001)(:48274) connection closed
|
||||||
|
[24-12-12 18:00:37][TIP]Name client :49116 connected
|
||||||
|
[24-12-12 18:00:37][TIP]数据 client (:49116) registe success (版本验收-数据服(sid=1001))
|
||||||
|
[24-12-12 18:20:01][WRN]Name client 版本验收-数据服(sid=1001)(:49116) connection closed
|
||||||
|
[24-12-12 18:20:02][TIP]Name client :51944 connected
|
||||||
|
[24-12-12 18:20:02][TIP]数据 client (:51944) registe success (版本验收-数据服(sid=1001))
|
||||||
7707
server/build/NameServer/log/NameServer_2024125.txt.log
Normal file
7707
server/build/NameServer/log/NameServer_2024125.txt.log
Normal file
File diff suppressed because it is too large
Load Diff
37
server/build/NameServer/log/NameServer_2024126.txt.log
Normal file
37
server/build/NameServer/log/NameServer_2024126.txt.log
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
[24-12-06 04:15:16][TIP]Start Name Server
|
||||||
|
[24-12-06 04:15:16][TIP]spid=1
|
||||||
|
[24-12-06 04:15:16][TIP]spid=zgame-nameserver,spguid=1
|
||||||
|
[24-12-06 04:15:16][ERR]Query :select max(charid) from charnames, CurrentThreadId[13762]
|
||||||
|
[24-12-06 04:15:16][TIP] max actorid=16777568
|
||||||
|
[24-12-06 04:15:16][ERR]ResetQuery CurrentThreadId[13762]
|
||||||
|
[24-12-06 04:15:16][ERR]Query :select charid from charnames where serverindex =0, CurrentThreadId[13762]
|
||||||
|
[24-12-06 04:15:16][TIP]nCurrentFixActorId =16777568
|
||||||
|
[24-12-06 04:15:16][ERR]ResetQuery CurrentThreadId[13762]
|
||||||
|
[24-12-06 04:15:16][TIP]actorid has init,max=16777568
|
||||||
|
[24-12-06 04:15:16][ERR]Query :select max(guildid) from guildnames, CurrentThreadId[13762]
|
||||||
|
[24-12-06 04:15:16][TIP] max guildid=16777265
|
||||||
|
[24-12-06 04:15:16][ERR]ResetQuery CurrentThreadId[13762]
|
||||||
|
[24-12-06 04:15:16][ERR]Query :select guildid from guildnames where serverindex =0, CurrentThreadId[13762]
|
||||||
|
[24-12-06 04:15:16][TIP]nCurrentFixGuildId =16777265
|
||||||
|
[24-12-06 04:15:16][ERR]ResetQuery CurrentThreadId[13762]
|
||||||
|
[24-12-06 04:15:16][TIP]guildid has init,max=16777265
|
||||||
|
[24-12-06 04:15:16][TIP]-------------------------------------------
|
||||||
|
[24-12-06 04:15:16][TIP]名称服务器启动成功,核心版本号是17.3.24.1
|
||||||
|
[24-12-06 04:15:16][TIP]quit命令可以停止服务并退出程序
|
||||||
|
[24-12-06 04:15:16][TIP]-------------------------------------------
|
||||||
|
[24-12-06 04:15:21][TIP]Name client :44426 connected
|
||||||
|
[24-12-06 04:15:21][TIP]Name client :44428 connected
|
||||||
|
[24-12-06 04:15:21][TIP]数据 client (:44428) registe success (版本验收-数据服(sid=1001))
|
||||||
|
[24-12-06 04:15:21][TIP]数据 client (:44426) registe success (版本验收-数据服(sid=10001))
|
||||||
|
[24-12-06 04:15:31][WRN]Name client 版本验收-数据服(sid=1001)(:44428) connection closed
|
||||||
|
[24-12-06 04:15:32][TIP]Name client :44456 connected
|
||||||
|
[24-12-06 04:15:32][TIP]数据 client (:44456) registe success (版本验收-数据服(sid=1001))
|
||||||
|
[24-12-06 04:15:45][WRN]Name client 版本验收-数据服(sid=10001)(:44426) connection closed
|
||||||
|
[24-12-06 04:15:46][TIP]Name client :44540 connected
|
||||||
|
[24-12-06 04:15:46][TIP]数据 client (:44540) registe success (版本验收-数据服(sid=10001))
|
||||||
|
[24-12-06 04:22:12][ERR]Query :CALL v2_allocnewcharid("%s",%u), CurrentThreadId[13793]
|
||||||
|
[24-12-06 04:22:12][TIP]server[1], actorname[kubbo],id[16777569]
|
||||||
|
[24-12-06 04:22:12][ERR]ResetQuery CurrentThreadId[13793]
|
||||||
|
[24-12-06 04:34:15][ERR]Query :CALL v2_allocnewguildid("%s",%u), CurrentThreadId[13793]
|
||||||
|
[24-12-06 04:34:15][TIP]server[1], guildname[linuxd],id[16777266]
|
||||||
|
[24-12-06 04:34:15][ERR]ResetQuery CurrentThreadId[13793]
|
||||||
25
server/build/NameServer/log/NameServer_2024128.txt.log
Normal file
25
server/build/NameServer/log/NameServer_2024128.txt.log
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
[24-12-08 21:16:17][TIP]Start Name Server
|
||||||
|
[24-12-08 21:16:18][TIP]spid=1
|
||||||
|
[24-12-08 21:16:18][TIP]spid=zgame-nameserver,spguid=1
|
||||||
|
[24-12-08 21:16:18][ERR]Query :select max(charid) from charnames, CurrentThreadId[2105]
|
||||||
|
[24-12-08 21:16:18][TIP] max actorid=16777569
|
||||||
|
[24-12-08 21:16:18][ERR]ResetQuery CurrentThreadId[2105]
|
||||||
|
[24-12-08 21:16:18][ERR]Query :select charid from charnames where serverindex =0, CurrentThreadId[2105]
|
||||||
|
[24-12-08 21:16:18][TIP]nCurrentFixActorId =16777569
|
||||||
|
[24-12-08 21:16:18][ERR]ResetQuery CurrentThreadId[2105]
|
||||||
|
[24-12-08 21:16:18][TIP]actorid has init,max=16777569
|
||||||
|
[24-12-08 21:16:18][ERR]Query :select max(guildid) from guildnames, CurrentThreadId[2105]
|
||||||
|
[24-12-08 21:16:18][TIP] max guildid=16777266
|
||||||
|
[24-12-08 21:16:18][ERR]ResetQuery CurrentThreadId[2105]
|
||||||
|
[24-12-08 21:16:18][ERR]Query :select guildid from guildnames where serverindex =0, CurrentThreadId[2105]
|
||||||
|
[24-12-08 21:16:18][TIP]nCurrentFixGuildId =16777266
|
||||||
|
[24-12-08 21:16:18][ERR]ResetQuery CurrentThreadId[2105]
|
||||||
|
[24-12-08 21:16:18][TIP]guildid has init,max=16777266
|
||||||
|
[24-12-08 21:16:18][TIP]-------------------------------------------
|
||||||
|
[24-12-08 21:16:18][TIP]名称服务器启动成功,核心版本号是17.3.24.1
|
||||||
|
[24-12-08 21:16:18][TIP]quit命令可以停止服务并退出程序
|
||||||
|
[24-12-08 21:16:18][TIP]-------------------------------------------
|
||||||
|
[24-12-08 21:16:18][TIP]Name client :59774 connected
|
||||||
|
[24-12-08 21:16:18][TIP]数据 client (:59774) registe success (版本验收-数据服(sid=1001))
|
||||||
|
[24-12-08 21:16:18][TIP]Name client :59776 connected
|
||||||
|
[24-12-08 21:16:18][TIP]数据 client (:59776) registe success (版本验收-数据服(sid=10001))
|
||||||
25
server/build/NameServer/log/NameServer_2024129.txt.log
Normal file
25
server/build/NameServer/log/NameServer_2024129.txt.log
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
[24-12-09 10:57:34][TIP]Start Name Server
|
||||||
|
[24-12-09 10:57:34][TIP]spid=1
|
||||||
|
[24-12-09 10:57:34][TIP]spid=zgame-nameserver,spguid=1
|
||||||
|
[24-12-09 10:57:35][ERR]Query :select max(charid) from charnames, CurrentThreadId[110]
|
||||||
|
[24-12-09 10:57:35][TIP] max actorid=16777569
|
||||||
|
[24-12-09 10:57:35][ERR]ResetQuery CurrentThreadId[110]
|
||||||
|
[24-12-09 10:57:35][ERR]Query :select charid from charnames where serverindex =0, CurrentThreadId[110]
|
||||||
|
[24-12-09 10:57:35][TIP]nCurrentFixActorId =16777569
|
||||||
|
[24-12-09 10:57:35][ERR]ResetQuery CurrentThreadId[110]
|
||||||
|
[24-12-09 10:57:35][TIP]actorid has init,max=16777569
|
||||||
|
[24-12-09 10:57:35][ERR]Query :select max(guildid) from guildnames, CurrentThreadId[110]
|
||||||
|
[24-12-09 10:57:35][TIP] max guildid=16777266
|
||||||
|
[24-12-09 10:57:35][ERR]ResetQuery CurrentThreadId[110]
|
||||||
|
[24-12-09 10:57:35][ERR]Query :select guildid from guildnames where serverindex =0, CurrentThreadId[110]
|
||||||
|
[24-12-09 10:57:35][TIP]nCurrentFixGuildId =16777266
|
||||||
|
[24-12-09 10:57:35][ERR]ResetQuery CurrentThreadId[110]
|
||||||
|
[24-12-09 10:57:35][TIP]guildid has init,max=16777266
|
||||||
|
[24-12-09 10:57:35][TIP]-------------------------------------------
|
||||||
|
[24-12-09 10:57:35][TIP]名称服务器启动成功,核心版本号是17.3.24.1
|
||||||
|
[24-12-09 10:57:35][TIP]quit命令可以停止服务并退出程序
|
||||||
|
[24-12-09 10:57:35][TIP]-------------------------------------------
|
||||||
|
[24-12-09 10:57:35][TIP]Name client :39086 connected
|
||||||
|
[24-12-09 10:57:35][TIP]数据 client (:39086) registe success (版本验收-数据服(sid=1001))
|
||||||
|
[24-12-09 10:57:35][TIP]Name client :39104 connected
|
||||||
|
[24-12-09 10:57:35][TIP]数据 client (:39104) registe success (版本验收-数据服(sid=10001))
|
||||||
BIN
server/build/NameServer/nameserver_r
Normal file
BIN
server/build/NameServer/nameserver_r
Normal file
Binary file not shown.
6
server/build/NameServer/run.sh
Normal file
6
server/build/NameServer/run.sh
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
if [ "$1" == "Debug" ]; then
|
||||||
|
./nameserver_d NameServerLinux.txt
|
||||||
|
else
|
||||||
|
./nameserver_r NameServerLinux.txt
|
||||||
|
fi
|
||||||
0
server/build/NameServer/sed0nQjmI
Normal file
0
server/build/NameServer/sed0nQjmI
Normal file
22
server/build/RobotGate/GateServerLinux.txt
Normal file
22
server/build/RobotGate/GateServerLinux.txt
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
GateServer =
|
||||||
|
{
|
||||||
|
--逻辑网关
|
||||||
|
{
|
||||||
|
--监听:客户端连接
|
||||||
|
LocalService =
|
||||||
|
{
|
||||||
|
ServerName = "BeiJiaan网关服",
|
||||||
|
Address = "0.0.0.0",
|
||||||
|
Port = 9901,
|
||||||
|
MaxSession = 8192,--网关中客户端连接池的最大连接数
|
||||||
|
SendThreadCount = 2,--数据发送线程池中工作线程数量
|
||||||
|
},
|
||||||
|
|
||||||
|
--连接:逻辑服务器
|
||||||
|
BackServer =
|
||||||
|
{
|
||||||
|
Host = "127.0.0.1",
|
||||||
|
Port = 23002
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
BIN
server/build/RobotGate/robootgate_r
Normal file
BIN
server/build/RobotGate/robootgate_r
Normal file
Binary file not shown.
7
server/build/RobotGate/run.sh
Normal file
7
server/build/RobotGate/run.sh
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
path=`pwd`
|
||||||
|
if [ "$1" == "Debug" ]; then
|
||||||
|
$path/robootgate_d GateServerLinux.txt
|
||||||
|
else
|
||||||
|
$path/robootgate_r GateServerLinux.txt
|
||||||
|
fi
|
||||||
31
server/build/RobotGate/stop.sh
Normal file
31
server/build/RobotGate/stop.sh
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
cd $(cd "$(dirname "$0")" && pwd)
|
||||||
|
|
||||||
|
path=`pwd`
|
||||||
|
datetime=`date "+%Y-%m-%d.%H:%M:%S"`
|
||||||
|
curdoc=$(pwd|awk -F \/ '{print $NF}')
|
||||||
|
|
||||||
|
#关闭基础服务
|
||||||
|
arr_srv="robootgate"
|
||||||
|
|
||||||
|
for srv in ${arr_srv[@]};
|
||||||
|
do
|
||||||
|
pid=`ps aux |grep $path|grep $srv|grep -v grep|grep "\<$curdoc\>"|grep -v "/bin/bash"|awk '{print $2}'`
|
||||||
|
if [[ -n $pid ]]; then
|
||||||
|
echo "开始结束服务器: $srv (pid=$pid)"
|
||||||
|
kill -15 $pid
|
||||||
|
while true; do
|
||||||
|
datetime=`date "+%Y-%m-%d.%H:%M:%S"`
|
||||||
|
proc=`ps aux |grep $path|grep $srv|grep -v grep|grep "\<$curdoc\>"|grep -v "/bin/bash"|wc -l`
|
||||||
|
if [ $proc == 0 ];
|
||||||
|
then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
echo $datetime" 游戏服务 "$path" "$srv" 结束中..."
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
echo "已结束服务器: $srv"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
exit 0
|
||||||
29
server/build/SessionServer/GM.txt
Normal file
29
server/build/SessionServer/GM.txt
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
--GM配置,用于登陆个数限制等
|
||||||
|
--在控制台使用 rgm指令可以刷新本配置
|
||||||
|
GMConfig=
|
||||||
|
{
|
||||||
|
loginlimit = 2000, --1个ip最多登陆多少个连接,默认是这么多
|
||||||
|
|
||||||
|
--限制的登陆IP列表,gm只能在这些ip登陆,我们公司的ip默认是加入了,不需要加入
|
||||||
|
gmloginip=
|
||||||
|
{
|
||||||
|
},
|
||||||
|
|
||||||
|
--允许机器人测试的ip,这里一般限制我们自己的机器,我们公司的ip默认是加入了,不需要加入
|
||||||
|
robotip=
|
||||||
|
{
|
||||||
|
--"81.71.147.89",
|
||||||
|
},
|
||||||
|
|
||||||
|
--禁止ip,配置到这里,表示是无法登陆游戏的
|
||||||
|
blackip=
|
||||||
|
{
|
||||||
|
--"172.168.0.188",
|
||||||
|
},
|
||||||
|
|
||||||
|
--不限制ip的端口,一般是一些公司的ip地址,这个ip里的不做任何登陆限制,我们公司的ip默认是加入了,不需要加入
|
||||||
|
whiteip=
|
||||||
|
{
|
||||||
|
"183.61.71.98",
|
||||||
|
},
|
||||||
|
}
|
||||||
51
server/build/SessionServer/SessionServerLinux.txt
Normal file
51
server/build/SessionServer/SessionServerLinux.txt
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
SessionServer =
|
||||||
|
{
|
||||||
|
--服务器名称
|
||||||
|
ServerName = "会话服(sid=1)",
|
||||||
|
--SPID(运营商ID)定义
|
||||||
|
SPID = "wyi2",
|
||||||
|
spguid = 1,
|
||||||
|
fcmOpen=false,
|
||||||
|
checksign=0,
|
||||||
|
autoaccount = 1,
|
||||||
|
autocard = 1,
|
||||||
|
phptime = 1200,
|
||||||
|
|
||||||
|
--监听:会话服务器
|
||||||
|
SessionService =
|
||||||
|
{
|
||||||
|
Address = "0.0.0.0",
|
||||||
|
Port = 31000
|
||||||
|
},
|
||||||
|
|
||||||
|
--监听:网关服务器(无用)
|
||||||
|
GateService =
|
||||||
|
{
|
||||||
|
Address = "0.0.0.0",
|
||||||
|
Port = 21001
|
||||||
|
},
|
||||||
|
|
||||||
|
--连接:Log服务器
|
||||||
|
LogServer =
|
||||||
|
{
|
||||||
|
Host = "127.0.0.1",
|
||||||
|
Port = 34000
|
||||||
|
},
|
||||||
|
|
||||||
|
--连接:AM服务器
|
||||||
|
AMServer =
|
||||||
|
{
|
||||||
|
Host = "127.0.0.1",
|
||||||
|
Port = 5660
|
||||||
|
},
|
||||||
|
|
||||||
|
--数据库连接配置
|
||||||
|
SQL =
|
||||||
|
{
|
||||||
|
Host = "127.0.0.1",
|
||||||
|
Port = 3307,
|
||||||
|
DBName = "mir_account",
|
||||||
|
DBUser = "root",
|
||||||
|
DBPass = "mysql_Adkijc",
|
||||||
|
}
|
||||||
|
}
|
||||||
295
server/build/SessionServer/log/SessionServer_20241210.txt.log
Normal file
295
server/build/SessionServer/log/SessionServer_20241210.txt.log
Normal file
@@ -0,0 +1,295 @@
|
|||||||
|
[24-12-10 15:12:12][TIP]spid=wyi2,spguid=1,spguidmd5=19139b9b9d8804aeeeec8aa828a40f49,sTotal=wyi21
|
||||||
|
[24-12-10 15:12:12][TIP]Add whiteip ip=183.61.71.98
|
||||||
|
[24-12-10 15:12:12][ERR]连接到AMC服务器失败 111
|
||||||
|
[24-12-10 15:12:12][ERR]连接到日志服务器失败 111
|
||||||
|
[24-12-10 15:12:12][TIP]-------------------------------------------
|
||||||
|
[24-12-10 15:12:12][TIP]会话管理器启动成功,核心版本号是17.3.24.1
|
||||||
|
[24-12-10 15:12:12][TIP]quit - 停止服务并退出程序
|
||||||
|
[24-12-10 15:12:12][TIP]spfw - 显示性能状态窗口
|
||||||
|
[24-12-10 15:12:12][TIP]sscw - 显示服务器连接窗口
|
||||||
|
[24-12-10 15:12:12][TIP]lgr - 重新加载角色网关路由表
|
||||||
|
[24-12-10 15:12:12][TIP]lal - 重新加载管理员登录表
|
||||||
|
[24-12-10 15:12:12][TIP]kks - 踢账号下线
|
||||||
|
[24-12-10 15:12:12][TIP]fcmclose - 关闭fcm
|
||||||
|
[24-12-10 15:12:12][TIP]fcmopen - 开启fcm
|
||||||
|
[24-12-10 15:12:12][TIP]-------------------------------------------
|
||||||
|
[24-12-10 15:12:12][ERR]RealQuery :select max(userid) from globaluser, CurrentThreadId[29065]
|
||||||
|
[24-12-10 15:12:12][TIP]InitACCountId spid=1
|
||||||
|
[24-12-10 15:12:12][TIP]max spid account=16777216
|
||||||
|
[24-12-10 15:12:12][TIP]db max account=16777416
|
||||||
|
[24-12-10 15:12:12][TIP]account has init
|
||||||
|
[24-12-10 15:12:12][ERR]RealQuery :call loadcsrank(), CurrentThreadId[29065]
|
||||||
|
[24-12-10 15:12:12][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_account.a.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-10 15:12:17][TIP]逻辑 client (:34084) registe success (版本验收-逻辑服(sid=10001)-V15.4)
|
||||||
|
[24-12-10 15:12:17][TIP]Client id=10001,set commonserverId=-1
|
||||||
|
[24-12-10 15:12:17][TIP]逻辑 client (:34082) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-10 15:12:17][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-10 15:12:17][TIP]AMC服务器连接成功
|
||||||
|
[24-12-10 15:12:17][TIP]日志服务器连接成功
|
||||||
|
[24-12-10 15:12:17][TIP][AMC]regist client success!
|
||||||
|
[24-12-10 15:12:24][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:34082)连接已断开
|
||||||
|
[24-12-10 15:12:30][TIP]逻辑 client (:34128) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-10 15:12:30][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-10 15:12:30][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-10 15:12:33][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-10 15:12:33][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-10 15:12:33][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-10 15:12:33][TIP]当前会话数量:1
|
||||||
|
[24-12-10 15:12:40][WRN]逻辑服务器(版本验收-逻辑服(sid=10001)-V15.4)(:34084)连接已断开
|
||||||
|
[24-12-10 15:12:46][TIP]逻辑 client (:34198) registe success (版本验收-逻辑服(sid=10001)-V15.4)
|
||||||
|
[24-12-10 15:12:46][TIP]Client id=10001,set commonserverId=-1
|
||||||
|
[24-12-10 15:12:46][TIP]Client id=10001,set commonserverId=-1
|
||||||
|
[24-12-10 15:31:10][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-10 15:31:23][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:34128)连接已断开
|
||||||
|
[24-12-10 15:31:25][TIP]逻辑 client (:37480) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-10 15:31:25][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-10 15:31:26][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-10 15:31:27][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:37480)连接已断开
|
||||||
|
[24-12-10 15:31:29][WRN]未知服务器(:37498)连接已断开
|
||||||
|
[24-12-10 15:31:33][TIP]逻辑 client (:37510) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-10 15:31:33][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-10 15:31:34][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-10 15:31:36][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-10 15:31:36][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-10 15:31:36][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-10 15:31:36][TIP]当前会话数量:1
|
||||||
|
[24-12-10 15:34:10][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-10 15:34:12][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-10 15:34:12][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-10 15:34:12][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-10 15:34:12][TIP]当前会话数量:1
|
||||||
|
[24-12-10 16:06:46][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-10 16:06:58][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:37510)连接已断开
|
||||||
|
[24-12-10 16:07:03][TIP]逻辑 client (:43682) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-10 16:07:03][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-10 16:07:03][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-10 16:07:05][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:43682)连接已断开
|
||||||
|
[24-12-10 16:07:07][WRN]未知服务器(:43700)连接已断开
|
||||||
|
[24-12-10 16:07:11][TIP]逻辑 client (:43710) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-10 16:07:11][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-10 16:07:11][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-10 16:07:19][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-10 16:07:19][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-10 16:07:19][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-10 16:07:19][TIP]当前会话数量:1
|
||||||
|
[24-12-10 19:20:25][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-10 19:20:29][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:43710)连接已断开
|
||||||
|
[24-12-10 19:20:30][TIP]逻辑 client (:42818) registe success (版本验收-逻辑服(sid=10001)-V15.4)
|
||||||
|
[24-12-10 19:20:30][TIP]Client id=10001,set commonserverId=-1
|
||||||
|
[24-12-10 19:20:30][WRN]逻辑服务器(版本验收-逻辑服(sid=10001)-V15.4)(:42818)连接已断开
|
||||||
|
[24-12-10 19:20:31][TIP]逻辑 client (:42826) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-10 19:20:31][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-10 19:20:32][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-10 21:12:19][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-10 21:12:19][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-10 21:12:19][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-10 21:12:19][TIP]当前会话数量:1
|
||||||
|
[24-12-10 21:23:38][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-10 21:26:40][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-10 21:26:40][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-10 21:26:40][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-10 21:26:40][TIP]当前会话数量:1
|
||||||
|
[24-12-11 02:02:26][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-11 02:02:29][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:42826)连接已断开
|
||||||
|
[24-12-11 02:02:31][TIP]逻辑 client (:54768) registe success (版本验收-逻辑服(sid=10001)-V15.4)
|
||||||
|
[24-12-11 02:02:31][TIP]Client id=10001,set commonserverId=-1
|
||||||
|
[24-12-11 02:02:31][WRN]逻辑服务器(版本验收-逻辑服(sid=10001)-V15.4)(:54768)连接已断开
|
||||||
|
[24-12-11 02:02:37][TIP]逻辑 client (:54780) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-11 02:02:37][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-11 02:02:38][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-11 02:02:41][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:54780)连接已断开
|
||||||
|
[24-12-11 02:02:42][TIP]逻辑 client (:54798) registe success (版本验收-逻辑服(sid=10001)-V15.4)
|
||||||
|
[24-12-11 02:02:42][TIP]Client id=10001,set commonserverId=-1
|
||||||
|
[24-12-11 02:02:42][WRN]逻辑服务器(版本验收-逻辑服(sid=10001)-V15.4)(:54798)连接已断开
|
||||||
|
[24-12-11 02:02:46][TIP]逻辑 client (:54804) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-11 02:02:46][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-11 02:02:46][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-11 08:53:58][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-11 08:53:58][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-11 08:53:58][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-11 08:53:58][TIP]当前会话数量:1
|
||||||
|
[24-12-11 11:17:33][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-11 11:17:36][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:54804)连接已断开
|
||||||
|
[24-12-11 11:17:38][TIP]逻辑 client (:39090) registe success (版本验收-逻辑服(sid=10001)-V15.4)
|
||||||
|
[24-12-11 11:17:38][TIP]Client id=10001,set commonserverId=-1
|
||||||
|
[24-12-11 11:17:38][WRN]逻辑服务器(版本验收-逻辑服(sid=10001)-V15.4)(:39090)连接已断开
|
||||||
|
[24-12-11 11:17:46][TIP]逻辑 client (:39108) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-11 11:17:46][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-11 11:17:47][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-11 12:00:36][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-11 12:00:36][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-11 12:00:36][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-11 12:00:36][TIP]当前会话数量:1
|
||||||
|
[24-12-11 12:01:00][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-11 14:03:28][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-11 14:03:28][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-11 14:03:28][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-11 14:03:28][TIP]当前会话数量:1
|
||||||
|
[24-12-11 14:05:31][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-11 14:07:57][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-11 14:07:57][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-11 14:07:57][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-11 14:07:57][TIP]当前会话数量:1
|
||||||
|
[24-12-11 14:18:09][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-11 14:18:35][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-11 14:18:35][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-11 14:18:35][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-11 14:18:35][TIP]当前会话数量:1
|
||||||
|
[24-12-11 17:54:54][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-11 17:54:57][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:39108)连接已断开
|
||||||
|
[24-12-11 17:54:59][TIP]逻辑 client (:41086) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-11 17:54:59][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-11 17:54:59][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-11 20:03:37][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-11 20:03:37][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-11 20:03:37][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-11 20:03:37][TIP]当前会话数量:1
|
||||||
|
[24-12-11 21:15:20][WRN]逻辑服务器(版本验收-逻辑服(sid=10001)-V15.4)(:34198)连接已断开
|
||||||
|
[24-12-11 21:25:22][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-11 21:25:32][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-11 21:25:32][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-11 21:25:32][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-11 21:25:32][TIP]当前会话数量:1
|
||||||
|
[24-12-11 21:59:07][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-11 21:59:11][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-11 21:59:11][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-11 21:59:11][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-11 21:59:11][TIP]当前会话数量:1
|
||||||
|
[24-12-11 21:59:37][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-11 21:59:41][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-11 21:59:41][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-11 21:59:41][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-11 21:59:41][TIP]当前会话数量:1
|
||||||
|
[24-12-11 22:03:36][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-11 22:03:56][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-11 22:03:56][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-11 22:03:56][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-11 22:03:56][TIP]当前会话数量:1
|
||||||
|
[24-12-11 22:11:09][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-12 12:58:40][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-12 12:58:40][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-12 12:58:40][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-12 12:58:40][TIP]当前会话数量:1
|
||||||
|
[24-12-12 15:14:37][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-12 15:14:41][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-12 15:14:41][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-12 15:14:41][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-12 15:14:41][TIP]当前会话数量:1
|
||||||
|
[24-12-12 15:15:19][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-12 15:15:25][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-12 15:15:25][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-12 15:15:25][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-12 15:15:25][TIP]当前会话数量:1
|
||||||
|
[24-12-12 15:21:49][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-12 15:21:53][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-12 15:21:53][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-12 15:21:53][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-12 15:21:53][TIP]当前会话数量:1
|
||||||
|
[24-12-12 16:42:30][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-12 16:42:40][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-12 16:42:40][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-12 16:42:40][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-12 16:42:40][TIP]当前会话数量:1
|
||||||
|
[24-12-12 17:47:16][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-12 17:47:21][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-12 17:47:21][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-12 17:47:21][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-12 17:47:21][TIP]当前会话数量:1
|
||||||
|
[24-12-12 17:49:38][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-12 17:49:50][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:41086)连接已断开
|
||||||
|
[24-12-12 17:49:57][TIP]逻辑 client (:52770) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-12 17:49:57][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-12 17:49:57][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-12 17:50:01][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-12 17:50:01][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-12 17:50:01][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-12 17:50:01][TIP]当前会话数量:1
|
||||||
|
[24-12-12 17:50:31][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-12 17:50:35][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-12 17:50:35][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-12 17:50:35][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-12 17:50:35][TIP]当前会话数量:1
|
||||||
|
[24-12-12 17:53:03][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-12 17:53:06][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-12 17:53:06][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-12 17:53:06][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-12 17:53:06][TIP]当前会话数量:1
|
||||||
|
[24-12-12 17:54:45][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-12 17:54:57][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:52770)连接已断开
|
||||||
|
[24-12-12 17:55:00][TIP]逻辑 client (:53716) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-12 17:55:00][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-12 17:55:00][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-12 17:55:04][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-12 17:55:04][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-12 17:55:04][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-12 17:55:04][TIP]当前会话数量:1
|
||||||
|
[24-12-12 17:59:34][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-12 17:59:38][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-12 17:59:38][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-12 17:59:38][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-12 17:59:38][TIP]当前会话数量:1
|
||||||
|
[24-12-12 18:00:22][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-12 18:00:34][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:53716)连接已断开
|
||||||
|
[24-12-12 18:00:40][TIP]逻辑 client (:54560) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-12 18:00:40][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-12 18:00:40][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-12 18:00:55][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-12 18:00:55][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-12 18:00:55][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-12 18:00:55][TIP]当前会话数量:1
|
||||||
|
[24-12-12 18:19:48][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-12 18:20:00][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:54560)连接已断开
|
||||||
|
[24-12-12 18:20:03][TIP]逻辑 client (:57388) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-12 18:20:03][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-12 18:20:04][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-12 18:20:21][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-12 18:20:21][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-12 18:20:21][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-12 18:20:21][TIP]当前会话数量:1
|
||||||
|
[24-12-12 18:21:19][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-12 18:21:22][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-12 18:21:22][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-12 18:21:22][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-12 18:21:22][TIP]当前会话数量:1
|
||||||
|
[24-12-12 18:21:39][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-12 18:21:43][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-12 18:21:43][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-12 18:21:43][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-12 18:21:43][TIP]当前会话数量:1
|
||||||
|
[24-12-12 18:22:08][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-12 18:22:12][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-12 18:22:12][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-12 18:22:12][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-12 18:22:12][TIP]当前会话数量:1
|
||||||
|
[24-12-12 21:48:31][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-12 21:52:52][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-12 21:52:52][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-12 21:52:52][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-12 21:52:52][TIP]当前会话数量:1
|
||||||
|
[24-12-13 01:43:47][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-13 01:43:50][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:57388)连接已断开
|
||||||
|
[24-12-13 01:43:52][TIP]逻辑 client (:54824) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-13 01:43:52][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-13 01:43:52][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-13 01:43:59][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-13 01:43:59][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-13 01:43:59][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-13 01:43:59][TIP]当前会话数量:1
|
||||||
|
[24-12-13 10:30:44][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-13 10:30:47][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:54824)连接已断开
|
||||||
|
[24-12-13 10:30:49][TIP]逻辑 client (:37016) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-13 10:30:49][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-13 10:30:49][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-13 10:30:56][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-13 10:30:56][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-13 10:30:56][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-13 10:30:56][TIP]当前会话数量:1
|
||||||
|
[24-12-13 11:19:33][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-13 11:19:36][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:37016)连接已断开
|
||||||
|
[24-12-13 11:19:39][TIP]逻辑 client (:43262) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-13 11:19:39][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-13 11:19:39][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-13 11:19:46][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-13 11:19:46][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[29065]
|
||||||
|
[24-12-13 11:19:46][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[29065]
|
||||||
|
[24-12-13 11:19:46][TIP]当前会话数量:1
|
||||||
6444
server/build/SessionServer/log/SessionServer_2024125.txt.log
Normal file
6444
server/build/SessionServer/log/SessionServer_2024125.txt.log
Normal file
File diff suppressed because it is too large
Load Diff
64
server/build/SessionServer/log/SessionServer_2024126.txt.log
Normal file
64
server/build/SessionServer/log/SessionServer_2024126.txt.log
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
[24-12-06 04:15:20][TIP]spid=wyi2,spguid=1,spguidmd5=19139b9b9d8804aeeeec8aa828a40f49,sTotal=wyi21
|
||||||
|
[24-12-06 04:15:20][TIP]Add whiteip ip=183.61.71.98
|
||||||
|
[24-12-06 04:15:20][TIP]-------------------------------------------
|
||||||
|
[24-12-06 04:15:20][TIP]会话管理器启动成功,核心版本号是17.3.24.1
|
||||||
|
[24-12-06 04:15:20][TIP]quit - 停止服务并退出程序
|
||||||
|
[24-12-06 04:15:20][TIP]spfw - 显示性能状态窗口
|
||||||
|
[24-12-06 04:15:20][TIP]sscw - 显示服务器连接窗口
|
||||||
|
[24-12-06 04:15:20][TIP]lgr - 重新加载角色网关路由表
|
||||||
|
[24-12-06 04:15:20][TIP]lal - 重新加载管理员登录表
|
||||||
|
[24-12-06 04:15:20][TIP]kks - 踢账号下线
|
||||||
|
[24-12-06 04:15:20][TIP]fcmclose - 关闭fcm
|
||||||
|
[24-12-06 04:15:20][TIP]fcmopen - 开启fcm
|
||||||
|
[24-12-06 04:15:20][TIP]-------------------------------------------
|
||||||
|
[24-12-06 04:15:20][TIP]AMC服务器连接成功
|
||||||
|
[24-12-06 04:15:20][TIP]日志服务器连接成功
|
||||||
|
[24-12-06 04:15:21][ERR]RealQuery :select max(userid) from globaluser, CurrentThreadId[13883]
|
||||||
|
[24-12-06 04:15:21][TIP]InitACCountId spid=1
|
||||||
|
[24-12-06 04:15:21][TIP]max spid account=16777216
|
||||||
|
[24-12-06 04:15:21][TIP]db max account=16777414
|
||||||
|
[24-12-06 04:15:21][TIP]account has init
|
||||||
|
[24-12-06 04:15:21][ERR]RealQuery :call loadcsrank(), CurrentThreadId[13883]
|
||||||
|
[24-12-06 04:15:21][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_account.a.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-06 04:15:21][TIP][AMC]regist client success!
|
||||||
|
[24-12-06 04:15:21][TIP]逻辑 client (:49854) registe success (版本验收-逻辑服(sid=10001)-V15.4)
|
||||||
|
[24-12-06 04:15:21][TIP]Client id=10001,set commonserverId=-1
|
||||||
|
[24-12-06 04:15:21][TIP]逻辑 client (:49856) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-06 04:15:21][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-06 04:15:29][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:49856)连接已断开
|
||||||
|
[24-12-06 04:15:33][TIP]逻辑 client (:49896) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-06 04:15:33][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-06 04:15:34][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-06 04:15:44][WRN]逻辑服务器(版本验收-逻辑服(sid=10001)-V15.4)(:49854)连接已断开
|
||||||
|
[24-12-06 04:15:48][TIP]逻辑 client (:49994) registe success (版本验收-逻辑服(sid=10001)-V15.4)
|
||||||
|
[24-12-06 04:15:48][TIP]Client id=10001,set commonserverId=-1
|
||||||
|
[24-12-06 04:15:48][TIP]Client id=10001,set commonserverId=-1
|
||||||
|
[24-12-06 04:16:43][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-06 04:16:43][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[13883]
|
||||||
|
[24-12-06 04:16:43][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[13883]
|
||||||
|
[24-12-06 04:16:43][TIP]当前会话数量:1
|
||||||
|
[24-12-06 04:16:50][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-06 04:22:00][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-06 04:22:00][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[13883]
|
||||||
|
[24-12-06 04:22:00][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[13883]
|
||||||
|
[24-12-06 04:22:00][TIP]当前会话数量:1
|
||||||
|
[24-12-07 14:51:06][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-07 14:51:16][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-07 14:51:16][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[13883]
|
||||||
|
[24-12-07 14:51:16][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[13883]
|
||||||
|
[24-12-07 14:51:16][TIP]当前会话数量:1
|
||||||
|
[24-12-07 22:27:52][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-07 22:27:57][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-07 22:27:57][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[13883]
|
||||||
|
[24-12-07 22:27:57][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[13883]
|
||||||
|
[24-12-07 22:27:57][TIP]当前会话数量:1
|
||||||
|
[24-12-08 11:11:35][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-08 12:22:20][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-08 12:22:20][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[13883]
|
||||||
|
[24-12-08 12:22:20][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[13883]
|
||||||
|
[24-12-08 12:22:20][TIP]当前会话数量:1
|
||||||
|
[24-12-08 12:25:16][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-08 12:29:29][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-08 12:29:29][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[13883]
|
||||||
|
[24-12-08 12:29:29][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[13883]
|
||||||
|
[24-12-08 12:29:29][TIP]当前会话数量:1
|
||||||
35
server/build/SessionServer/log/SessionServer_2024128.txt.log
Normal file
35
server/build/SessionServer/log/SessionServer_2024128.txt.log
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
[24-12-08 21:16:13][TIP]spid=wyi2,spguid=1,spguidmd5=19139b9b9d8804aeeeec8aa828a40f49,sTotal=wyi21
|
||||||
|
[24-12-08 21:16:13][TIP]Add whiteip ip=183.61.71.98
|
||||||
|
[24-12-08 21:16:13][TIP]-------------------------------------------
|
||||||
|
[24-12-08 21:16:13][TIP]会话管理器启动成功,核心版本号是17.3.24.1
|
||||||
|
[24-12-08 21:16:13][TIP]quit - 停止服务并退出程序
|
||||||
|
[24-12-08 21:16:13][TIP]spfw - 显示性能状态窗口
|
||||||
|
[24-12-08 21:16:13][TIP]sscw - 显示服务器连接窗口
|
||||||
|
[24-12-08 21:16:13][TIP]lgr - 重新加载角色网关路由表
|
||||||
|
[24-12-08 21:16:13][TIP]lal - 重新加载管理员登录表
|
||||||
|
[24-12-08 21:16:13][TIP]kks - 踢账号下线
|
||||||
|
[24-12-08 21:16:13][TIP]fcmclose - 关闭fcm
|
||||||
|
[24-12-08 21:16:13][TIP]fcmopen - 开启fcm
|
||||||
|
[24-12-08 21:16:13][TIP]-------------------------------------------
|
||||||
|
[24-12-08 21:16:13][ERR]连接到日志服务器失败 111
|
||||||
|
[24-12-08 21:16:13][ERR]连接到AMC服务器失败 111
|
||||||
|
[24-12-08 21:16:13][ERR]RealQuery :select max(userid) from globaluser, CurrentThreadId[2120]
|
||||||
|
[24-12-08 21:16:13][TIP]InitACCountId spid=1
|
||||||
|
[24-12-08 21:16:13][TIP]max spid account=16777216
|
||||||
|
[24-12-08 21:16:13][TIP]db max account=16777415
|
||||||
|
[24-12-08 21:16:13][TIP]account has init
|
||||||
|
[24-12-08 21:16:13][ERR]RealQuery :call loadcsrank(), CurrentThreadId[2120]
|
||||||
|
[24-12-08 21:16:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_account.a.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-08 21:16:15][TIP]逻辑 client (:36934) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-08 21:16:15][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-08 21:16:15][TIP]逻辑 client (:36946) registe success (版本验收-逻辑服(sid=10001)-V15.4)
|
||||||
|
[24-12-08 21:16:15][TIP]Client id=10001,set commonserverId=-1
|
||||||
|
[24-12-08 21:16:15][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-08 21:16:15][TIP]Client id=10001,set commonserverId=-1
|
||||||
|
[24-12-08 21:16:18][TIP]日志服务器连接成功
|
||||||
|
[24-12-08 21:16:18][TIP]AMC服务器连接成功
|
||||||
|
[24-12-08 21:16:18][TIP][AMC]regist client success!
|
||||||
|
[24-12-08 21:16:25][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-08 21:16:25][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[2120]
|
||||||
|
[24-12-08 21:16:25][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[2120]
|
||||||
|
[24-12-08 21:16:25][TIP]当前会话数量:1
|
||||||
122
server/build/SessionServer/log/SessionServer_2024129.txt.log
Normal file
122
server/build/SessionServer/log/SessionServer_2024129.txt.log
Normal file
@@ -0,0 +1,122 @@
|
|||||||
|
[24-12-09 10:57:30][TIP]spid=wyi2,spguid=1,spguidmd5=19139b9b9d8804aeeeec8aa828a40f49,sTotal=wyi21
|
||||||
|
[24-12-09 10:57:30][TIP]Add whiteip ip=183.61.71.98
|
||||||
|
[24-12-09 10:57:30][ERR]连接到日志服务器失败 111
|
||||||
|
[24-12-09 10:57:30][TIP]-------------------------------------------
|
||||||
|
[24-12-09 10:57:30][ERR]连接到AMC服务器失败 111
|
||||||
|
[24-12-09 10:57:30][TIP]会话管理器启动成功,核心版本号是17.3.24.1
|
||||||
|
[24-12-09 10:57:30][TIP]quit - 停止服务并退出程序
|
||||||
|
[24-12-09 10:57:30][TIP]spfw - 显示性能状态窗口
|
||||||
|
[24-12-09 10:57:30][TIP]sscw - 显示服务器连接窗口
|
||||||
|
[24-12-09 10:57:30][TIP]lgr - 重新加载角色网关路由表
|
||||||
|
[24-12-09 10:57:30][TIP]lal - 重新加载管理员登录表
|
||||||
|
[24-12-09 10:57:30][TIP]kks - 踢账号下线
|
||||||
|
[24-12-09 10:57:30][TIP]fcmclose - 关闭fcm
|
||||||
|
[24-12-09 10:57:30][TIP]fcmopen - 开启fcm
|
||||||
|
[24-12-09 10:57:30][TIP]-------------------------------------------
|
||||||
|
[24-12-09 10:57:30][ERR]RealQuery :select max(userid) from globaluser, CurrentThreadId[128]
|
||||||
|
[24-12-09 10:57:30][TIP]InitACCountId spid=1
|
||||||
|
[24-12-09 10:57:30][TIP]max spid account=16777216
|
||||||
|
[24-12-09 10:57:30][TIP]db max account=16777415
|
||||||
|
[24-12-09 10:57:30][TIP]account has init
|
||||||
|
[24-12-09 10:57:30][ERR]RealQuery :call loadcsrank(), CurrentThreadId[128]
|
||||||
|
[24-12-09 10:57:30][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_account.a.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 10:57:31][TIP]逻辑 client (:44474) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-09 10:57:31][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-09 10:57:32][TIP]逻辑 client (:44486) registe success (版本验收-逻辑服(sid=10001)-V15.4)
|
||||||
|
[24-12-09 10:57:32][TIP]Client id=10001,set commonserverId=-1
|
||||||
|
[24-12-09 10:57:32][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-09 10:57:32][TIP]Client id=10001,set commonserverId=-1
|
||||||
|
[24-12-09 10:57:35][TIP]AMC服务器连接成功
|
||||||
|
[24-12-09 10:57:35][TIP]日志服务器连接成功
|
||||||
|
[24-12-09 10:57:35][TIP][AMC]regist client success!
|
||||||
|
[24-12-09 10:57:36][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-09 10:57:55][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-09 10:57:55][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[128]
|
||||||
|
[24-12-09 10:57:55][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[128]
|
||||||
|
[24-12-09 10:57:55][TIP]当前会话数量:1
|
||||||
|
[24-12-09 13:03:34][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-09 13:03:37][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:44474)连接已断开
|
||||||
|
[24-12-09 13:03:39][TIP]逻辑 client (:60262) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-09 13:03:39][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-09 13:03:39][TIP]逻辑 client (:60276) registe success (版本验收-逻辑服(sid=10001)-V15.4)
|
||||||
|
[24-12-09 13:03:39][TIP]Client id=10001,set commonserverId=-1
|
||||||
|
[24-12-09 13:03:39][WRN]逻辑服务器(版本验收-逻辑服(sid=10001)-V15.4)(:60276)连接已断开
|
||||||
|
[24-12-09 13:03:39][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-09 13:03:46][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-09 13:03:46][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[128]
|
||||||
|
[24-12-09 13:03:46][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[128]
|
||||||
|
[24-12-09 13:03:46][TIP]当前会话数量:1
|
||||||
|
[24-12-09 17:19:41][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-09 17:19:46][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-09 17:19:46][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[128]
|
||||||
|
[24-12-09 17:19:46][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[128]
|
||||||
|
[24-12-09 17:19:46][TIP]当前会话数量:1
|
||||||
|
[24-12-09 17:48:39][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-09 17:48:49][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-09 17:48:49][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[128]
|
||||||
|
[24-12-09 17:48:49][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[128]
|
||||||
|
[24-12-09 17:48:49][TIP]当前会话数量:1
|
||||||
|
[24-12-09 21:06:10][TIP]linuxdo_flora Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-09 21:06:10][ERR]RealQuery :call djimportspuser("linuxdo_flora","9585e02322485fcc62cd1e9db319713f",1,"000000198010100000",1736265060), CurrentThreadId[128]
|
||||||
|
[24-12-09 21:06:10][ERR]RealQuery :call logingetglobaluser("linuxdo_flora"), CurrentThreadId[128]
|
||||||
|
[24-12-09 21:06:10][TIP]当前会话数量:2
|
||||||
|
[24-12-09 21:06:15][TIP]close Session,ID=16777416,account=linuxdo_flora,serverin=1
|
||||||
|
[24-12-09 21:08:50][TIP]linuxdo_flora Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-09 21:08:50][ERR]RealQuery :call djimportspuser("linuxdo_flora","9585e02322485fcc62cd1e9db319713f",1,"000000198010100000",228160612), CurrentThreadId[128]
|
||||||
|
[24-12-09 21:08:50][ERR]RealQuery :call logingetglobaluser("linuxdo_flora"), CurrentThreadId[128]
|
||||||
|
[24-12-09 21:08:50][TIP]当前会话数量:2
|
||||||
|
[24-12-09 21:23:50][TIP]close Session,ID=16777416,account=linuxdo_flora,serverin=1
|
||||||
|
[24-12-09 21:33:40][TIP]linuxdo_flora Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-09 21:33:40][ERR]RealQuery :call djimportspuser("linuxdo_flora","9585e02322485fcc62cd1e9db319713f",1,"000000198010100000",228160612), CurrentThreadId[128]
|
||||||
|
[24-12-09 21:33:40][ERR]RealQuery :call logingetglobaluser("linuxdo_flora"), CurrentThreadId[128]
|
||||||
|
[24-12-09 21:33:40][TIP]当前会话数量:2
|
||||||
|
[24-12-09 21:34:46][TIP]close Session,ID=16777416,account=linuxdo_flora,serverin=1
|
||||||
|
[24-12-09 22:04:55][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-09 22:11:59][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-09 22:11:59][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[128]
|
||||||
|
[24-12-09 22:11:59][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[128]
|
||||||
|
[24-12-09 22:11:59][TIP]当前会话数量:1
|
||||||
|
[24-12-09 23:39:07][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-09 23:39:10][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:60262)连接已断开
|
||||||
|
[24-12-09 23:39:12][TIP]逻辑 client (:44232) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-09 23:39:12][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-09 23:39:12][TIP]逻辑 client (:44242) registe success (版本验收-逻辑服(sid=10001)-V15.4)
|
||||||
|
[24-12-09 23:39:12][TIP]Client id=10001,set commonserverId=-1
|
||||||
|
[24-12-09 23:39:12][WRN]逻辑服务器(版本验收-逻辑服(sid=10001)-V15.4)(:44242)连接已断开
|
||||||
|
[24-12-09 23:39:13][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-09 23:39:19][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-09 23:39:19][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[128]
|
||||||
|
[24-12-09 23:39:19][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[128]
|
||||||
|
[24-12-09 23:39:19][TIP]当前会话数量:1
|
||||||
|
[24-12-10 06:55:24][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-10 06:55:27][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:44232)连接已断开
|
||||||
|
[24-12-10 06:55:29][TIP]逻辑 client (:34674) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-10 06:55:29][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-10 06:55:29][TIP]逻辑 client (:34684) registe success (版本验收-逻辑服(sid=10001)-V15.4)
|
||||||
|
[24-12-10 06:55:29][TIP]Client id=10001,set commonserverId=-1
|
||||||
|
[24-12-10 06:55:29][WRN]逻辑服务器(版本验收-逻辑服(sid=10001)-V15.4)(:34684)连接已断开
|
||||||
|
[24-12-10 06:55:29][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-10 06:55:36][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-10 06:55:36][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[128]
|
||||||
|
[24-12-10 06:55:36][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[128]
|
||||||
|
[24-12-10 06:55:36][TIP]当前会话数量:1
|
||||||
|
[24-12-10 08:28:23][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-10 08:28:26][WRN]逻辑服务器(版本验收-逻辑服(sid=1001)-V15.4.)(:34674)连接已断开
|
||||||
|
[24-12-10 08:28:29][TIP]逻辑 client (:44444) registe success (版本验收-逻辑服(sid=1001)-V15.4.)
|
||||||
|
[24-12-10 08:28:29][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-10 08:28:29][TIP]Client id=1,set commonserverId=-1
|
||||||
|
[24-12-10 08:28:29][WRN]未知服务器(:44456)连接已断开
|
||||||
|
[24-12-10 08:28:35][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-10 08:28:35][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[128]
|
||||||
|
[24-12-10 08:28:35][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[128]
|
||||||
|
[24-12-10 08:28:35][TIP]当前会话数量:1
|
||||||
|
[24-12-10 13:47:25][TIP]close Session,ID=16777415,account=aceykubbo,serverin=1
|
||||||
|
[24-12-10 14:05:54][TIP]aceykubbo Login,nRawServerindex = 1,serverid=1
|
||||||
|
[24-12-10 14:05:54][ERR]RealQuery :call djimportspuser("aceykubbo","028c0cd62f93f33c1161704dbbc08ddd",1,"000000198010100000",1736265060), CurrentThreadId[128]
|
||||||
|
[24-12-10 14:05:54][ERR]RealQuery :call logingetglobaluser("aceykubbo"), CurrentThreadId[128]
|
||||||
|
[24-12-10 14:05:54][TIP]当前会话数量:1
|
||||||
|
[24-12-10 15:12:11][WRN]AMC服务器连接已断开
|
||||||
|
[24-12-10 15:12:11][TIP]AMC服务器连接成功
|
||||||
|
[24-12-10 15:12:11][WRN]AMC服务器连接已断开
|
||||||
|
[24-12-10 15:12:12][WRN]日志服务器连接已断开
|
||||||
|
[24-12-10 15:12:12][ERR]连接到日志服务器失败 111
|
||||||
7
server/build/SessionServer/run.sh
Normal file
7
server/build/SessionServer/run.sh
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
path=`pwd`
|
||||||
|
if [ "$1" == "Debug" ]; then
|
||||||
|
$path/sessionserver_d SessionServerLinux.txt
|
||||||
|
else
|
||||||
|
$path/sessionserver_r SessionServerLinux.txt
|
||||||
|
fi
|
||||||
0
server/build/SessionServer/sedq1A62I
Normal file
0
server/build/SessionServer/sedq1A62I
Normal file
BIN
server/build/SessionServer/sessionserver_r
Normal file
BIN
server/build/SessionServer/sessionserver_r
Normal file
Binary file not shown.
67
server/build/daemon.sh
Normal file
67
server/build/daemon.sh
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
if [ -n "$1" ]; then
|
||||||
|
dm=$1
|
||||||
|
else
|
||||||
|
dm='_r'
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -n "$2" ]; then
|
||||||
|
path=$2
|
||||||
|
else
|
||||||
|
path=`pwd`
|
||||||
|
fi
|
||||||
|
|
||||||
|
while true;
|
||||||
|
do
|
||||||
|
#echo "Begin Check"
|
||||||
|
sleep 10
|
||||||
|
|
||||||
|
ret=`ps x |grep $path/AMServer/amserver$dm|grep -v grep|grep -v "/bin/bash"|wc -l`
|
||||||
|
if [ $ret == 0 ];
|
||||||
|
then
|
||||||
|
$path/AMServer/amserver$dm $path/AMServer/AMServerLinux.txt > /dev/null &
|
||||||
|
echo "$path/AMServer/amserver$dm $path/AMServer/AMServerLinux.txt"
|
||||||
|
fi
|
||||||
|
|
||||||
|
ret=`ps x |grep $path/BackStageServer/backstageserver$dm|grep -v grep|grep -v "/bin/bash"|wc -l`
|
||||||
|
if [ $ret == 0 ];
|
||||||
|
then
|
||||||
|
$path/BackStageServer/backstageserver$dm $path/BackStageServer/BackStageServerLinux.txt > /dev/null &
|
||||||
|
echo "$path/BackStageServer/backstageserver$dm $path/BackStageServer/BackStageServerLinux.txt"
|
||||||
|
fi
|
||||||
|
|
||||||
|
ret=`ps x |grep $path/LoggerServer/loggerserver$dm|grep -v grep|grep -v "/bin/bash"|wc -l`
|
||||||
|
if [ $ret == 0 ];
|
||||||
|
then
|
||||||
|
$path/LoggerServer/loggerserver$dm $path/LoggerServer/LoggerServerLinux.txt > /dev/null &
|
||||||
|
echo "$path/LoggerServer/loggerserver$dm $path/LoggerServer/LoggerServerLinux.txt"
|
||||||
|
fi
|
||||||
|
|
||||||
|
ret=`ps x |grep $path/NameServer/nameserver$dm|grep -v grep|grep -v "/bin/bash"|wc -l`
|
||||||
|
if [ $ret == 0 ];
|
||||||
|
then
|
||||||
|
$path/NameServer/nameserver$dm $path/NameServer/NameServerLinux.txt > /dev/null &
|
||||||
|
echo "$path/NameServer/nameserver$dm $path/NameServer/NameServerLinux.txt"
|
||||||
|
fi
|
||||||
|
|
||||||
|
ret=`ps x |grep $path/SessionServer/sessionserver$dm|grep -v grep|grep -v "/bin/bash"|wc -l`
|
||||||
|
if [ $ret == 0 ];
|
||||||
|
then
|
||||||
|
$path/SessionServer/sessionserver$dm $path/SessionServer/SessionServerLinux.txt > /dev/null &
|
||||||
|
echo "$path/SessionServer/sessionserver$dm $path/SessionServer/SessionServerLinux.txt"
|
||||||
|
fi
|
||||||
|
|
||||||
|
#ret=`ps x |grep $path/GateServer/gateserver$dm|grep -v grep|grep -v "/bin/bash"|wc -l`
|
||||||
|
#if [ $ret == 0 ];
|
||||||
|
#then
|
||||||
|
#$path/GateServer/gateserver$dm $path/GateServer/GateServerLinux.txt > /dev/null &
|
||||||
|
#echo "$path/GateServer/gateserver$dm $path/GateServer/GateServerLinux.txt"
|
||||||
|
#fi
|
||||||
|
|
||||||
|
#ret=`ps x |grep $path/RobotGate/robootgate$dm|grep -v grep|grep -v "/bin/bash"|wc -l`
|
||||||
|
#if [ $ret == 0 ];
|
||||||
|
#then
|
||||||
|
#$path/RobotGate/robootgate$dm $path/RobotGate/GateServerLinux.txt > /dev/null &
|
||||||
|
#echo "$path/RobotGate/robootgate$dm $path/RobotGate/GateServerLinux.txt"
|
||||||
|
#fi
|
||||||
|
done
|
||||||
1
server/build/nohup.out
Normal file
1
server/build/nohup.out
Normal file
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
45
server/build/run.sh
Normal file
45
server/build/run.sh
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
cd $(cd "$(dirname "$0")" && pwd)
|
||||||
|
path=`pwd`
|
||||||
|
./stop.sh
|
||||||
|
|
||||||
|
echo "======================【启动】========================"
|
||||||
|
if [ "$1" == "Debug" ]; then
|
||||||
|
dm='_d'
|
||||||
|
else
|
||||||
|
dm='_r'
|
||||||
|
fi
|
||||||
|
|
||||||
|
datetime=`date "+%Y-%m-%d.%H:%M:%S"`
|
||||||
|
|
||||||
|
echo "["$datetime"] 正在启动 AM 服务器 [amserver$dm]..."
|
||||||
|
$path/AMServer/amserver$dm $path/AMServer/AMServerLinux.txt > /dev/null &
|
||||||
|
echo "执行命令:$path/AMServer/amserver$dm $path/AMServer/AMServerLinux.txt"
|
||||||
|
|
||||||
|
echo "["$datetime"] 正在启动 Back 服务器 [backstageserver$dm]..."
|
||||||
|
$path/BackStageServer/backstageserver$dm $path/BackStageServer/BackStageServerLinux.txt > /dev/null &
|
||||||
|
echo "执行命令:$path/BackStageServer/backstageserver$dm $path/BackStageServer/BackStageServerLinux.txt"
|
||||||
|
|
||||||
|
echo "["$datetime"] 正在启动 LOGGER 服务器 [loggerserver$dm]..."
|
||||||
|
$path/LoggerServer/loggerserver$dm $path/LoggerServer/LoggerServerLinux.txt > /dev/null &
|
||||||
|
echo "执行命令:$path/LoggerServer/loggerserver$dm $path/LoggerServer/LoggerServerLinux.txt"
|
||||||
|
|
||||||
|
echo "["$datetime"] 正在启动 NAME 服务器 [nameserver$dm]..."
|
||||||
|
$path/NameServer/nameserver$dm $path/NameServer/NameServerLinux.txt > /dev/null &
|
||||||
|
echo "执行命令:$path/NameServer/nameserver$dm $path/NameServer/NameServerLinux.txt"
|
||||||
|
|
||||||
|
echo "["$datetime"] 正在启动 Session 服务器 [sessionserver$dm]..."
|
||||||
|
$path/SessionServer/sessionserver$dm $path/SessionServer/SessionServerLinux.txt > /dev/null &
|
||||||
|
echo "执行命令:$path/SessionServer/sessionserver$dm $path/SessionServer/SessionServerLinux.txt"
|
||||||
|
|
||||||
|
#echo "["$datetime"] 正在启动 Gate 服务器 [gateserver$dm]..."
|
||||||
|
#$path/GateServer/gateserver$dm $path/GateServer/GateServerLinux.txt > /dev/null &
|
||||||
|
#echo "执行命令:$path/GateServer/gateserver$dm $path/GateServer/GateServerLinux.txt"
|
||||||
|
|
||||||
|
#echo "["$datetime"] 正在启动 Robot 服务器 [robootgate$dm]..."
|
||||||
|
#$path/RobotGate/robootgate$dm $path/RobotGate/GateServerLinux.txt > /dev/null &
|
||||||
|
#echo "执行命令:$path/RobotGate/robootgate$dm $path/RobotGate/GateServerLinux.txt"
|
||||||
|
|
||||||
|
echo "["$datetime"] 正在启动 守护进程..."
|
||||||
|
nohup $path/daemon.sh "$dm" "$path" &
|
||||||
|
echo $datetime" 服务器启用完成!"
|
||||||
39
server/build/stop.sh
Normal file
39
server/build/stop.sh
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
cd $(cd "$(dirname "$0")" && pwd)
|
||||||
|
|
||||||
|
echo "======================【停止】========================"
|
||||||
|
|
||||||
|
path=`pwd`
|
||||||
|
datetime=`date "+%Y-%m-%d.%H:%M:%S"`
|
||||||
|
curdoc=$(pwd|awk -F \/ '{print $NF}')
|
||||||
|
|
||||||
|
daemon_pid=`ps aux |grep $path|grep daemon.sh|grep -v grep|awk '{print $2}'`
|
||||||
|
if [[ -n $daemon_pid ]]; then
|
||||||
|
echo "结束守护进程:$path daemon.sh"
|
||||||
|
kill -15 $daemon_pid
|
||||||
|
fi
|
||||||
|
|
||||||
|
#关闭基础服务
|
||||||
|
arr_srv="amserver backstageserver loggerserver nameserver robootgate sessionserver gateserver"
|
||||||
|
|
||||||
|
for srv in ${arr_srv[@]};
|
||||||
|
do
|
||||||
|
pid=`ps aux |grep $path|grep $srv|grep -v grep|grep "\<$curdoc\>"|grep -v "/bin/bash"|awk '{print $2}'`
|
||||||
|
if [[ -n $pid ]]; then
|
||||||
|
echo "开始结束服务器: $srv (pid=$pid)"
|
||||||
|
kill -15 $pid
|
||||||
|
while true; do
|
||||||
|
datetime=`date "+%Y-%m-%d.%H:%M:%S"`
|
||||||
|
proc=`ps aux |grep $path|grep $srv|grep -v grep|grep "\<$curdoc\>"|grep -v "/bin/bash"|wc -l`
|
||||||
|
if [ $proc == 0 ];
|
||||||
|
then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
echo $datetime" 游戏服务 "$path" "$srv" 结束中..."
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
echo "已结束服务器: $srv"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
exit 0
|
||||||
33
server/build/valgrind_run.sh
Normal file
33
server/build/valgrind_run.sh
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
cd $(cd "$(dirname "$0")" && pwd)
|
||||||
|
path=`pwd`
|
||||||
|
./stop.sh
|
||||||
|
|
||||||
|
echo "======================【启动】========================"
|
||||||
|
if [ "$1" == "Debug" ]; then
|
||||||
|
dm='_d'
|
||||||
|
else
|
||||||
|
dm='_r'
|
||||||
|
fi
|
||||||
|
|
||||||
|
datetime=`date "+%Y-%m-%d.%H:%M:%S"`
|
||||||
|
|
||||||
|
echo "["$datetime"] 正在启动 DB 服务器 [dbserver$dm]..."
|
||||||
|
$path/DBServer/dbserver$dm $path/DBServer/DBServerLinux.txt > /dev/null &
|
||||||
|
echo "执行命令:$path/DBServer/dbserver$dm $path/DBServer/DBServerLinux.txt"
|
||||||
|
|
||||||
|
echo "["$datetime"] 正在启动 Gate 服务器 [gateserver$dm]..."
|
||||||
|
$path/GateServer/gateserver$dm $path/GateServer/GateServerLinux.txt > /dev/null &
|
||||||
|
echo "执行命令:$path/GateServer/gateserver$dm $path/GateServer/GateServerLinux.txt"
|
||||||
|
|
||||||
|
echo "["$datetime"] 正在启动 Session 服务器 [sessionserver$dm]..."
|
||||||
|
$path/SessionServer/sessionserver$dm $path/SessionServer/SessionServerLinux.txt > /dev/null &
|
||||||
|
echo "执行命令:$path/SessionServer/sessionserver$dm $path/SessionServer/SessionServerLinux.txt"
|
||||||
|
|
||||||
|
echo "["$datetime"] 正在启动 Logic 服务器 [logicserver$dm]..."
|
||||||
|
valgrind --tool=memcheck --leak-check=full --time-stamp=yes --log-file=$path/valgrind_logic.txt $path/LogicServer/logicserver$dm $path/LogicServer/LogicServerLinux.txt
|
||||||
|
echo "执行命令:$path/LogicServer/logicserver$dm $path/LogicServer/LogicServerLinux.txt"
|
||||||
|
|
||||||
|
echo "["$datetime"] 正在启动 守护进程..."
|
||||||
|
nohup $path/daemon.sh "$dm" "$path" &
|
||||||
|
echo $datetime" 服务器启用完成!"
|
||||||
496
server/cross/DBServer/BoyNameList.dat
Normal file
496
server/cross/DBServer/BoyNameList.dat
Normal file
@@ -0,0 +1,496 @@
|
|||||||
|
赵
|
||||||
|
钱
|
||||||
|
孙
|
||||||
|
李
|
||||||
|
周
|
||||||
|
吴
|
||||||
|
郑
|
||||||
|
王
|
||||||
|
冯
|
||||||
|
陈
|
||||||
|
褚
|
||||||
|
卫
|
||||||
|
蒋
|
||||||
|
沈
|
||||||
|
韩
|
||||||
|
杨
|
||||||
|
朱
|
||||||
|
秦
|
||||||
|
尤
|
||||||
|
许
|
||||||
|
何
|
||||||
|
吕
|
||||||
|
施
|
||||||
|
张
|
||||||
|
孔
|
||||||
|
曹
|
||||||
|
严
|
||||||
|
华
|
||||||
|
金
|
||||||
|
魏
|
||||||
|
陶
|
||||||
|
姜
|
||||||
|
戚
|
||||||
|
谢
|
||||||
|
邹
|
||||||
|
喻
|
||||||
|
柏
|
||||||
|
水
|
||||||
|
窦
|
||||||
|
章
|
||||||
|
云
|
||||||
|
苏
|
||||||
|
潘
|
||||||
|
葛
|
||||||
|
奚
|
||||||
|
范
|
||||||
|
彭
|
||||||
|
郎
|
||||||
|
鲁
|
||||||
|
韦
|
||||||
|
昌
|
||||||
|
马
|
||||||
|
苗
|
||||||
|
凤
|
||||||
|
花
|
||||||
|
方
|
||||||
|
俞
|
||||||
|
任
|
||||||
|
袁
|
||||||
|
柳
|
||||||
|
邓
|
||||||
|
鲍
|
||||||
|
史
|
||||||
|
唐
|
||||||
|
费
|
||||||
|
廉
|
||||||
|
岑
|
||||||
|
薛
|
||||||
|
雷
|
||||||
|
贺
|
||||||
|
倪
|
||||||
|
汤
|
||||||
|
藤
|
||||||
|
殷
|
||||||
|
罗
|
||||||
|
毕
|
||||||
|
郝
|
||||||
|
邬
|
||||||
|
安
|
||||||
|
常
|
||||||
|
乐
|
||||||
|
于
|
||||||
|
时
|
||||||
|
付
|
||||||
|
皮
|
||||||
|
卞
|
||||||
|
齐
|
||||||
|
康
|
||||||
|
伍
|
||||||
|
余
|
||||||
|
元
|
||||||
|
卜
|
||||||
|
顾
|
||||||
|
孟
|
||||||
|
平
|
||||||
|
黄
|
||||||
|
和
|
||||||
|
穆
|
||||||
|
肖
|
||||||
|
尹
|
||||||
|
姚
|
||||||
|
邵
|
||||||
|
湛
|
||||||
|
汪
|
||||||
|
祁
|
||||||
|
毛
|
||||||
|
禹
|
||||||
|
狄
|
||||||
|
米
|
||||||
|
贝
|
||||||
|
明
|
||||||
|
藏
|
||||||
|
计
|
||||||
|
伏
|
||||||
|
成
|
||||||
|
戴
|
||||||
|
谈
|
||||||
|
宋
|
||||||
|
茅
|
||||||
|
庞
|
||||||
|
熊
|
||||||
|
纪
|
||||||
|
舒
|
||||||
|
屈
|
||||||
|
项
|
||||||
|
祝
|
||||||
|
董
|
||||||
|
梁
|
||||||
|
杜
|
||||||
|
阮
|
||||||
|
蓝
|
||||||
|
闵
|
||||||
|
席
|
||||||
|
季
|
||||||
|
麻
|
||||||
|
强
|
||||||
|
贾
|
||||||
|
路
|
||||||
|
娄
|
||||||
|
危
|
||||||
|
江
|
||||||
|
童
|
||||||
|
颜
|
||||||
|
郭
|
||||||
|
梅
|
||||||
|
盛
|
||||||
|
林
|
||||||
|
刁
|
||||||
|
钟
|
||||||
|
徐
|
||||||
|
邱
|
||||||
|
骆
|
||||||
|
高
|
||||||
|
夏
|
||||||
|
蔡
|
||||||
|
田
|
||||||
|
樊
|
||||||
|
胡
|
||||||
|
凌
|
||||||
|
霍
|
||||||
|
虞
|
||||||
|
万
|
||||||
|
支
|
||||||
|
柯
|
||||||
|
昝
|
||||||
|
管
|
||||||
|
卢
|
||||||
|
莫
|
||||||
|
经
|
||||||
|
房
|
||||||
|
裘
|
||||||
|
缪
|
||||||
|
干
|
||||||
|
解
|
||||||
|
应
|
||||||
|
宗
|
||||||
|
丁
|
||||||
|
宣
|
||||||
|
贲
|
||||||
|
郁
|
||||||
|
单
|
||||||
|
杭
|
||||||
|
洪
|
||||||
|
包
|
||||||
|
诸
|
||||||
|
左
|
||||||
|
石
|
||||||
|
崔
|
||||||
|
吉
|
||||||
|
钮
|
||||||
|
龚
|
||||||
|
程
|
||||||
|
嵇
|
||||||
|
邢
|
||||||
|
滑
|
||||||
|
裴
|
||||||
|
陆
|
||||||
|
荣
|
||||||
|
翁
|
||||||
|
荀
|
||||||
|
羊
|
||||||
|
惠
|
||||||
|
甄
|
||||||
|
曲
|
||||||
|
家
|
||||||
|
封
|
||||||
|
芮
|
||||||
|
羿
|
||||||
|
储
|
||||||
|
靳
|
||||||
|
汲
|
||||||
|
邴
|
||||||
|
糜
|
||||||
|
松
|
||||||
|
井
|
||||||
|
段
|
||||||
|
富
|
||||||
|
巫
|
||||||
|
乌
|
||||||
|
焦
|
||||||
|
巴
|
||||||
|
弓
|
||||||
|
牧
|
||||||
|
隗
|
||||||
|
山
|
||||||
|
谷
|
||||||
|
车
|
||||||
|
侯
|
||||||
|
宓
|
||||||
|
蓬
|
||||||
|
全
|
||||||
|
郗
|
||||||
|
班
|
||||||
|
仰
|
||||||
|
秋
|
||||||
|
仲
|
||||||
|
伊
|
||||||
|
宫
|
||||||
|
宁
|
||||||
|
仇
|
||||||
|
栾
|
||||||
|
暴
|
||||||
|
甘
|
||||||
|
钭
|
||||||
|
厉
|
||||||
|
戎
|
||||||
|
祖
|
||||||
|
武
|
||||||
|
符
|
||||||
|
刘
|
||||||
|
景
|
||||||
|
詹
|
||||||
|
束
|
||||||
|
龙
|
||||||
|
叶
|
||||||
|
幸
|
||||||
|
司
|
||||||
|
韶
|
||||||
|
郜
|
||||||
|
黎
|
||||||
|
蓟
|
||||||
|
薄
|
||||||
|
印
|
||||||
|
宿
|
||||||
|
白
|
||||||
|
怀
|
||||||
|
蒲
|
||||||
|
邰
|
||||||
|
从
|
||||||
|
鄂
|
||||||
|
索
|
||||||
|
咸
|
||||||
|
籍
|
||||||
|
赖
|
||||||
|
卓
|
||||||
|
蔺
|
||||||
|
屠
|
||||||
|
蒙
|
||||||
|
池
|
||||||
|
乔
|
||||||
|
阴
|
||||||
|
胥
|
||||||
|
能
|
||||||
|
苍
|
||||||
|
双
|
||||||
|
闻
|
||||||
|
莘
|
||||||
|
党
|
||||||
|
翟
|
||||||
|
谭
|
||||||
|
贡
|
||||||
|
劳
|
||||||
|
逄
|
||||||
|
姬
|
||||||
|
申
|
||||||
|
扶
|
||||||
|
堵
|
||||||
|
冉
|
||||||
|
宰
|
||||||
|
郦
|
||||||
|
雍
|
||||||
|
隙
|
||||||
|
璩
|
||||||
|
桑
|
||||||
|
桂
|
||||||
|
濮
|
||||||
|
牛
|
||||||
|
寿
|
||||||
|
通
|
||||||
|
边
|
||||||
|
扈
|
||||||
|
燕
|
||||||
|
冀
|
||||||
|
郏
|
||||||
|
浦
|
||||||
|
尚
|
||||||
|
农
|
||||||
|
温
|
||||||
|
别
|
||||||
|
庄
|
||||||
|
晏
|
||||||
|
柴
|
||||||
|
瞿
|
||||||
|
阎
|
||||||
|
充
|
||||||
|
慕
|
||||||
|
连
|
||||||
|
茹
|
||||||
|
习
|
||||||
|
宦
|
||||||
|
艾
|
||||||
|
鱼
|
||||||
|
容
|
||||||
|
向
|
||||||
|
古
|
||||||
|
易
|
||||||
|
慎
|
||||||
|
戈
|
||||||
|
廖
|
||||||
|
庾
|
||||||
|
终
|
||||||
|
暨
|
||||||
|
居
|
||||||
|
衡
|
||||||
|
步
|
||||||
|
都
|
||||||
|
耿
|
||||||
|
满
|
||||||
|
弘
|
||||||
|
匡
|
||||||
|
文
|
||||||
|
国
|
||||||
|
寇
|
||||||
|
广
|
||||||
|
禄
|
||||||
|
阙
|
||||||
|
东
|
||||||
|
欧
|
||||||
|
殳
|
||||||
|
沃
|
||||||
|
利
|
||||||
|
蔚
|
||||||
|
越
|
||||||
|
夔
|
||||||
|
隆
|
||||||
|
师
|
||||||
|
巩
|
||||||
|
厍
|
||||||
|
聂
|
||||||
|
晁
|
||||||
|
勾
|
||||||
|
敖
|
||||||
|
融
|
||||||
|
冷
|
||||||
|
訾
|
||||||
|
辛
|
||||||
|
阚
|
||||||
|
那
|
||||||
|
简
|
||||||
|
饶
|
||||||
|
空
|
||||||
|
曾
|
||||||
|
毋
|
||||||
|
沙
|
||||||
|
乜
|
||||||
|
养
|
||||||
|
鞠
|
||||||
|
须
|
||||||
|
丰
|
||||||
|
巢
|
||||||
|
关
|
||||||
|
蒯
|
||||||
|
相
|
||||||
|
查
|
||||||
|
后
|
||||||
|
荆
|
||||||
|
红
|
||||||
|
游
|
||||||
|
竺
|
||||||
|
权
|
||||||
|
逯
|
||||||
|
盖
|
||||||
|
益
|
||||||
|
桓
|
||||||
|
公
|
||||||
|
俟
|
||||||
|
上官
|
||||||
|
欧阳
|
||||||
|
夏候
|
||||||
|
诸葛
|
||||||
|
闻人
|
||||||
|
东方
|
||||||
|
赫连
|
||||||
|
皇甫
|
||||||
|
尉迟
|
||||||
|
公羊
|
||||||
|
澹台
|
||||||
|
公冶
|
||||||
|
宗政
|
||||||
|
濮阳
|
||||||
|
淳于
|
||||||
|
单于
|
||||||
|
太叔
|
||||||
|
申屠
|
||||||
|
公孙
|
||||||
|
仲孙
|
||||||
|
轩辕
|
||||||
|
令狐
|
||||||
|
钟离
|
||||||
|
宇文
|
||||||
|
长孙
|
||||||
|
慕容
|
||||||
|
鲜于
|
||||||
|
闾丘
|
||||||
|
司徒
|
||||||
|
司空
|
||||||
|
亓官
|
||||||
|
司寇
|
||||||
|
仉督
|
||||||
|
子车
|
||||||
|
颛孙
|
||||||
|
端木
|
||||||
|
巫马
|
||||||
|
公西
|
||||||
|
漆雕
|
||||||
|
乐正
|
||||||
|
壤驷
|
||||||
|
公良
|
||||||
|
拓拔
|
||||||
|
夹谷
|
||||||
|
宰父
|
||||||
|
谷梁
|
||||||
|
楚
|
||||||
|
晋
|
||||||
|
闫
|
||||||
|
法
|
||||||
|
汝
|
||||||
|
鄢
|
||||||
|
涂
|
||||||
|
钦
|
||||||
|
段干
|
||||||
|
百里
|
||||||
|
东郭
|
||||||
|
南门
|
||||||
|
呼延
|
||||||
|
归海
|
||||||
|
羊舌
|
||||||
|
微生
|
||||||
|
岳
|
||||||
|
帅
|
||||||
|
缑
|
||||||
|
亢
|
||||||
|
况
|
||||||
|
有
|
||||||
|
琴
|
||||||
|
梁丘
|
||||||
|
左丘
|
||||||
|
东门
|
||||||
|
西门
|
||||||
|
商
|
||||||
|
牟
|
||||||
|
佘
|
||||||
|
耳
|
||||||
|
伯
|
||||||
|
赏
|
||||||
|
南宫
|
||||||
|
墨
|
||||||
|
哈
|
||||||
|
谯笪
|
||||||
|
年
|
||||||
|
爱
|
||||||
|
阳
|
||||||
|
佟
|
||||||
|
第五
|
||||||
|
言
|
||||||
|
福
|
||||||
49
server/cross/DBServer/DBServerLinux.txt
Normal file
49
server/cross/DBServer/DBServerLinux.txt
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
DBServer = {
|
||||||
|
--服务器名称
|
||||||
|
ServerName = "版本验收-数据服(sid=10001)",
|
||||||
|
ServerIndex = 10001,
|
||||||
|
|
||||||
|
--随机生成名字的名字库文件的文件名,相对路径
|
||||||
|
BoyNameFile = "BoyNameList.dat",
|
||||||
|
GirlNameFile = "GirlNameList.dat",
|
||||||
|
utf8=1,
|
||||||
|
|
||||||
|
--监听:数据服务
|
||||||
|
DBService = {
|
||||||
|
Address = "127.0.0.1",
|
||||||
|
Port = 42102,
|
||||||
|
},
|
||||||
|
|
||||||
|
--连接:会话服务器
|
||||||
|
--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 = 3307,
|
||||||
|
DBName = "mir_actor_cross1",
|
||||||
|
DBUser = "root",
|
||||||
|
DBPass = "mysql_Adkijc",
|
||||||
|
}
|
||||||
|
}
|
||||||
4477
server/cross/DBServer/GirlNameList.dat
Normal file
4477
server/cross/DBServer/GirlNameList.dat
Normal file
File diff suppressed because it is too large
Load Diff
130
server/cross/DBServer/allowword.txt
Normal file
130
server/cross/DBServer/allowword.txt
Normal file
@@ -0,0 +1,130 @@
|
|||||||
|
0x4E00,0x9FA5
|
||||||
|
0x0021,0X007E
|
||||||
|
0X00B0,0x0241
|
||||||
|
0X0250,0x02FF
|
||||||
|
0X03D2,0X0486
|
||||||
|
0X0488,0X04F9
|
||||||
|
0X0500,0X0509
|
||||||
|
0X0531,0X0556
|
||||||
|
0X055B,0X055F
|
||||||
|
0X0561,0X0587
|
||||||
|
0X0589,0X0589
|
||||||
|
0X0591,0X05B8
|
||||||
|
0X05BB,0X05C7
|
||||||
|
0X05D1,0X05EA
|
||||||
|
0X05F0,0X05F4
|
||||||
|
0X060B,0X0615
|
||||||
|
0X0621,0X063A
|
||||||
|
0X0641,0X065E
|
||||||
|
0X0661,0X06DF
|
||||||
|
0X06F0,0X074A
|
||||||
|
0X074D,0X076D
|
||||||
|
0X0780,0X07B1
|
||||||
|
0X0901,0X0939
|
||||||
|
0X093C,0X094D
|
||||||
|
0X0958,0X0970
|
||||||
|
0X0985,0X098C
|
||||||
|
0X0993,0X09A8
|
||||||
|
0X09AA,0X09B0
|
||||||
|
0X09BC,0X09C4
|
||||||
|
0X09CB,0X09CE
|
||||||
|
0X09DF,0X09E3
|
||||||
|
0X09E6,0X09FA
|
||||||
|
0x0A01,0X0A03
|
||||||
|
0x0A05,0x0A0A
|
||||||
|
0x0A0F,0x0A10
|
||||||
|
0x0A13,0x0A28
|
||||||
|
0x0A2A,0x0A30
|
||||||
|
0X0A66,0x0A74
|
||||||
|
0x0AE6,0X0AEF
|
||||||
|
0X0B01,0X0B03
|
||||||
|
0X0B05,0X0B0C
|
||||||
|
0X0B13,0X0B28
|
||||||
|
0X0B2A,0X0B30
|
||||||
|
0X0B35,0X0B39
|
||||||
|
0X0B3C,0X0B43
|
||||||
|
0X0B66,0X0B71
|
||||||
|
0X0B82,0X0B83
|
||||||
|
0X0B85,0X0B8A
|
||||||
|
0X0B8E,0X0B90
|
||||||
|
0X0B92,0X0B95
|
||||||
|
0X0B99,0X0B9A
|
||||||
|
0X0B9E,0X0B9F
|
||||||
|
0X0BB0,0X0BB9
|
||||||
|
0X0BBE,0X0BC3
|
||||||
|
0X0BE7,0X0BFA
|
||||||
|
0X0C01,0X0C03
|
||||||
|
0X0C05,0X0C0C
|
||||||
|
0X0C0E,0X0C10
|
||||||
|
0X0C12,0X0C28
|
||||||
|
0X0C2A,0X0C33
|
||||||
|
0X0C35,0X0C39
|
||||||
|
0X0C3E,0X0C44
|
||||||
|
0X0C66,0X0C6F
|
||||||
|
0X0C85,0X0C8C
|
||||||
|
0X0C92,0X0CA8
|
||||||
|
0X0CAA,0X0CB3
|
||||||
|
0X0CB5,0X0CB8
|
||||||
|
0X0CBC,0X0CC4
|
||||||
|
0X0CE6,0X0CEF
|
||||||
|
0X10A0,0X10C5
|
||||||
|
0X10D0,0X10DC
|
||||||
|
0X13A0,0X13F4
|
||||||
|
0X1401,0X14FF
|
||||||
|
0X1500,0X15FF
|
||||||
|
0X1600,0X1676
|
||||||
|
0X1680,0X169C
|
||||||
|
0X16A0,0X16F0
|
||||||
|
0X1780,0X17DD
|
||||||
|
0X1800,0X1809
|
||||||
|
0X1810,0X1819
|
||||||
|
0X1820,0X1877
|
||||||
|
0X1880,0X18A9
|
||||||
|
0X1950,0X196D
|
||||||
|
0X1970,0X1974
|
||||||
|
0X1980,0X19A9
|
||||||
|
0X19B0,0X19C9
|
||||||
|
0X1D00,0X1DC3
|
||||||
|
0X1E00,0X1E9B
|
||||||
|
0X1EA0,0X1EF9
|
||||||
|
0X1F00,0X1F15
|
||||||
|
0x3001,0x303F
|
||||||
|
0x3041,0x3096
|
||||||
|
0x3099,0x30FF
|
||||||
|
0x3105,0x312C
|
||||||
|
0x3131,0x318E
|
||||||
|
0x3190,0x31B7
|
||||||
|
0x31C0,0x31CF
|
||||||
|
0x31F0,0x31FF
|
||||||
|
0x3220,0x3229
|
||||||
|
0x3280,0x3289
|
||||||
|
0X3400,0x4DB5
|
||||||
|
0X4E00,0X9FB0
|
||||||
|
0XA000,0XA48C
|
||||||
|
0XAC00,0XD7A3
|
||||||
|
0XF900,0XFA2D
|
||||||
|
0XFA30,0XFA6A
|
||||||
|
0xFE10,0xFE19
|
||||||
|
0xFE20,0xFE23
|
||||||
|
0xFE30,0xFE52
|
||||||
|
0xFE54,0xFE66
|
||||||
|
0xFE68,0xFE6B
|
||||||
|
0xFE80,0xFEFC
|
||||||
|
0xFF01,0xFFBE
|
||||||
|
0xFFC2,0XFFC7
|
||||||
|
0XFFCA,0XFFCF
|
||||||
|
0xFFD2,0XFFD7
|
||||||
|
0XFFDA,0XFFDC
|
||||||
|
0XFFE0,0XFFE6
|
||||||
|
0XFFE8,0XFFEE
|
||||||
|
0X25A0,0X25FF
|
||||||
|
0X2600,0x26FF
|
||||||
|
0X27C0,0X27EF
|
||||||
|
0x2980,0x29FF
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
30
server/cross/DBServer/crossserver.txt
Normal file
30
server/cross/DBServer/crossserver.txt
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
-- 一个运营商所有服都配置使用1份配置,避免维护麻烦,该配置在逻辑服和数据服下面各放置一份。
|
||||||
|
|
||||||
|
crossserver =
|
||||||
|
{
|
||||||
|
|
||||||
|
--中心数据服的配置,所有中心数据服配置id,ip和端口,
|
||||||
|
--id跨服的服务器id,这里表示该运营商有2个跨服数据库
|
||||||
|
--commondbsrv表示公共数据服务器的地址
|
||||||
|
--dbport表示公共数据服务器的端口
|
||||||
|
--loginsrv 表示跨服逻辑服务器的ip或者域名,外网要是有域名
|
||||||
|
--minport表示跨服逻辑服务器最小端口
|
||||||
|
--maxport表示跨服逻辑服务器最大端口,[minport,maxport]之间随机
|
||||||
|
center=
|
||||||
|
{
|
||||||
|
{id=10000,commondbsrv="192.168.0.235", dbport =36000,loginsrv="61.144.23.107",minport=12500,maxport=12500},
|
||||||
|
{id=10001,commondbsrv="172.168.0.191", dbport =36000,loginsrv="172.168.0.191",minport=13001,maxport=13001},
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
--跨服的对应表,分别对应逻辑服从[start-end]对应哪些跨服的id
|
||||||
|
--下面表示1-20服使用10000服跨服,21-30服使用10001跨服
|
||||||
|
--如果没有配置的表示该服务器没有开启跨服
|
||||||
|
map=
|
||||||
|
{
|
||||||
|
{start=1,idend=100,centerid=10000}, --从1到20服,使用跨服10000
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
BIN
server/cross/DBServer/dbserver_r
Normal file
BIN
server/cross/DBServer/dbserver_r
Normal file
Binary file not shown.
1504
server/cross/DBServer/log/DBServer_20241210.txt.log
Normal file
1504
server/cross/DBServer/log/DBServer_20241210.txt.log
Normal file
File diff suppressed because it is too large
Load Diff
10724
server/cross/DBServer/log/DBServer_2024125.txt.log
Normal file
10724
server/cross/DBServer/log/DBServer_2024125.txt.log
Normal file
File diff suppressed because it is too large
Load Diff
2715
server/cross/DBServer/log/DBServer_2024126.txt.log
Normal file
2715
server/cross/DBServer/log/DBServer_2024126.txt.log
Normal file
File diff suppressed because it is too large
Load Diff
641
server/cross/DBServer/log/DBServer_2024128.txt.log
Normal file
641
server/cross/DBServer/log/DBServer_2024128.txt.log
Normal file
@@ -0,0 +1,641 @@
|
|||||||
|
[24-12-08 21:16:13]EsqlTool not exist
|
||||||
|
[24-12-08 21:16:13]加载了BoyNameList.dat,数量496
|
||||||
|
[24-12-08 21:16:13]加载了GirlNameList.dat,数量4477
|
||||||
|
[24-12-08 21:16:13][TIP]2950 filter name loaded
|
||||||
|
[24-12-08 21:16:13][WRN]name filter error:晗日
|
||||||
|
[24-12-08 21:16:13][WRN]name filter error:日星
|
||||||
|
[24-12-08 21:16:13][WRN]name filter error:安南
|
||||||
|
[24-12-08 21:16:13][WRN]name filter error:善和
|
||||||
|
[24-12-08 21:16:13][ERR]连接到名称服务器失败 111
|
||||||
|
[24-12-08 21:16:13][TIP]m_FeeSQLConnection fail
|
||||||
|
[24-12-08 21:16:13][TIP]m_FeeSQLConnection success
|
||||||
|
[24-12-08 21:16:13][TIP]DbServer Startup success
|
||||||
|
[24-12-08 21:16:13][TIP]-------------------------------------------
|
||||||
|
[24-12-08 21:16:13][TIP]数据服务器启动成功,核心版本号是17.3.1.1
|
||||||
|
[24-12-08 21:16:13][TIP]quit命令可以停止服务并退出程序
|
||||||
|
[24-12-08 21:16:13][TIP]lgr 命令可以重新加载游戏网关路由表
|
||||||
|
[24-12-08 21:16:13][TIP]-------------------------------------------
|
||||||
|
[24-12-08 21:16:13][TIP]m_NowSQLConnection fail
|
||||||
|
[24-12-08 21:16:13][TIP]NowSQL mysql connection character set: utf8
|
||||||
|
[24-12-08 21:16:15]Mgr Start: wait for StartEvent 1 minutes ,CurThreadId=2269
|
||||||
|
[24-12-08 21:16:16]ThreadLogicProc Start! CurThreadId=2294
|
||||||
|
[24-12-08 21:16:16]Mgr Start: finish and return, CurThreadId=2269
|
||||||
|
[24-12-08 21:16:16][TIP]逻辑 client (:59332) registe success (版本验收-逻辑服(sid=10001)-V15.4)
|
||||||
|
[24-12-08 21:16:16][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-08 21:16:16][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-08 21:16:18][TIP]名称服务器连接成功
|
||||||
|
[24-12-08 21:26:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-08 21:26:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-08 21:26:13]Save all Actor Data End
|
||||||
|
[24-12-08 21:26:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-08 21:26:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-08 21:36:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-08 21:36:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-08 21:36:13]Save all Actor Data End
|
||||||
|
[24-12-08 21:36:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-08 21:36:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-08 21:46:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-08 21:46:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-08 21:46:13]Save all Actor Data End
|
||||||
|
[24-12-08 21:46:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-08 21:46:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-08 21:56:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-08 21:56:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-08 21:56:13]Save all Actor Data End
|
||||||
|
[24-12-08 21:56:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-08 21:56:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-08 22:06:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-08 22:06:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-08 22:06:13]Save all Actor Data End
|
||||||
|
[24-12-08 22:06:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-08 22:06:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-08 22:16:14][TIP][Global Activity] 活动存储(0),活动Type=10015, 活动ID=10098 !
|
||||||
|
[24-12-08 22:16:14][TIP][Global Activity] 活动存储(1),活动Type=10009, 活动ID=10182 !
|
||||||
|
[24-12-08 22:16:14][TIP][Global Activity] 活动存储(2),活动Type=10009, 活动ID=10244 !
|
||||||
|
[24-12-08 22:16:14][TIP][Global Activity] 活动存储(3),活动Type=10009, 活动ID=10245 !
|
||||||
|
[24-12-08 22:16:14][TIP][Global Activity] 活动存储(4),活动Type=10009, 活动ID=10246 !
|
||||||
|
[24-12-08 22:16:14][TIP][Global Activity] 活动存储(5),活动Type=10009, 活动ID=10247 !
|
||||||
|
[24-12-08 22:16:14][TIP][Global Activity] 活动存储(6),活动Type=10009, 活动ID=10248 !
|
||||||
|
[24-12-08 22:16:14][TIP][Global Activity] 活动存储(7),活动Type=10015, 活动ID=10249 !
|
||||||
|
[24-12-08 22:16:14][TIP][Global Activity] 活动存储(8),活动Type=10017, 活动ID=10250 !
|
||||||
|
[24-12-08 22:16:14][TIP][Global Activity] 活动存储(9),活动Type=10017, 活动ID=10251 !
|
||||||
|
[24-12-08 22:16:14][TIP][Global Activity] 活动存储(10),活动Type=10009, 活动ID=10252 !
|
||||||
|
[24-12-08 22:16:14][TIP][Global Activity] 活动存储(11),活动Type=10009, 活动ID=10253 !
|
||||||
|
[24-12-08 22:16:14][TIP][Global Activity] 活动存储(12),活动Type=10009, 活动ID=10254 !
|
||||||
|
[24-12-08 22:16:14][TIP][Global Activity] 活动存储(13),活动Type=10017, 活动ID=10255 !
|
||||||
|
[24-12-08 22:16:14][TIP][Global Activity] 活动存储(14),活动Type=10015, 活动ID=10273 !
|
||||||
|
[24-12-08 22:16:14][TIP][Global Activity] 活动存储(15),活动Type=10009, 活动ID=10303 !
|
||||||
|
[24-12-08 22:16:14][TIP][Global Activity] 活动存储(16),活动Type=10009, 活动ID=10319 !
|
||||||
|
[24-12-08 22:16:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-08 22:16:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-08 22:16:14]Save all Actor Data End
|
||||||
|
[24-12-08 22:16:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-08 22:16:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-08 22:26:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-08 22:26:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-08 22:26:13]Save all Actor Data End
|
||||||
|
[24-12-08 22:26:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-08 22:26:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-08 22:36:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-08 22:36:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-08 22:36:13]Save all Actor Data End
|
||||||
|
[24-12-08 22:36:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-08 22:36:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-08 22:46:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-08 22:46:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-08 22:46:13]Save all Actor Data End
|
||||||
|
[24-12-08 22:46:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-08 22:46:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-08 22:56:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-08 22:56:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-08 22:56:13]Save all Actor Data End
|
||||||
|
[24-12-08 22:56:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-08 22:56:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-08 23:06:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-08 23:06:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-08 23:06:13]Save all Actor Data End
|
||||||
|
[24-12-08 23:06:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-08 23:06:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-08 23:16:14][TIP][Global Activity] 活动存储(0),活动Type=10015, 活动ID=10098 !
|
||||||
|
[24-12-08 23:16:14][TIP][Global Activity] 活动存储(1),活动Type=10009, 活动ID=10182 !
|
||||||
|
[24-12-08 23:16:14][TIP][Global Activity] 活动存储(2),活动Type=10009, 活动ID=10244 !
|
||||||
|
[24-12-08 23:16:14][TIP][Global Activity] 活动存储(3),活动Type=10009, 活动ID=10245 !
|
||||||
|
[24-12-08 23:16:14][TIP][Global Activity] 活动存储(4),活动Type=10009, 活动ID=10246 !
|
||||||
|
[24-12-08 23:16:14][TIP][Global Activity] 活动存储(5),活动Type=10009, 活动ID=10247 !
|
||||||
|
[24-12-08 23:16:14][TIP][Global Activity] 活动存储(6),活动Type=10009, 活动ID=10248 !
|
||||||
|
[24-12-08 23:16:14][TIP][Global Activity] 活动存储(7),活动Type=10015, 活动ID=10249 !
|
||||||
|
[24-12-08 23:16:14][TIP][Global Activity] 活动存储(8),活动Type=10017, 活动ID=10250 !
|
||||||
|
[24-12-08 23:16:14][TIP][Global Activity] 活动存储(9),活动Type=10017, 活动ID=10251 !
|
||||||
|
[24-12-08 23:16:14][TIP][Global Activity] 活动存储(10),活动Type=10009, 活动ID=10252 !
|
||||||
|
[24-12-08 23:16:14][TIP][Global Activity] 活动存储(11),活动Type=10009, 活动ID=10253 !
|
||||||
|
[24-12-08 23:16:14][TIP][Global Activity] 活动存储(12),活动Type=10009, 活动ID=10254 !
|
||||||
|
[24-12-08 23:16:14][TIP][Global Activity] 活动存储(13),活动Type=10017, 活动ID=10255 !
|
||||||
|
[24-12-08 23:16:14][TIP][Global Activity] 活动存储(14),活动Type=10015, 活动ID=10273 !
|
||||||
|
[24-12-08 23:16:14][TIP][Global Activity] 活动存储(15),活动Type=10009, 活动ID=10303 !
|
||||||
|
[24-12-08 23:16:14][TIP][Global Activity] 活动存储(16),活动Type=10009, 活动ID=10319 !
|
||||||
|
[24-12-08 23:16:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-08 23:16:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-08 23:16:14]Save all Actor Data End
|
||||||
|
[24-12-08 23:16:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-08 23:16:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-08 23:26:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-08 23:26:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-08 23:26:13]Save all Actor Data End
|
||||||
|
[24-12-08 23:26:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-08 23:26:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-08 23:36:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-08 23:36:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-08 23:36:13]Save all Actor Data End
|
||||||
|
[24-12-08 23:36:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-08 23:36:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-08 23:46:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-08 23:46:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-08 23:46:13]Save all Actor Data End
|
||||||
|
[24-12-08 23:46:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-08 23:46:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-08 23:56:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-08 23:56:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-08 23:56:13]Save all Actor Data End
|
||||||
|
[24-12-08 23:56:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-08 23:56:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 00:06:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 00:06:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 00:06:13]Save all Actor Data End
|
||||||
|
[24-12-09 00:06:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 00:06:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 00:16:14][TIP][Global Activity] 活动存储(0),活动Type=10015, 活动ID=10092 !
|
||||||
|
[24-12-09 00:16:14][TIP][Global Activity] 活动存储(1),活动Type=10009, 活动ID=10176 !
|
||||||
|
[24-12-09 00:16:14][TIP][Global Activity] 活动存储(2),活动Type=10009, 活动ID=10244 !
|
||||||
|
[24-12-09 00:16:14][TIP][Global Activity] 活动存储(3),活动Type=10009, 活动ID=10245 !
|
||||||
|
[24-12-09 00:16:14][TIP][Global Activity] 活动存储(4),活动Type=10009, 活动ID=10246 !
|
||||||
|
[24-12-09 00:16:14][TIP][Global Activity] 活动存储(5),活动Type=10009, 活动ID=10247 !
|
||||||
|
[24-12-09 00:16:14][TIP][Global Activity] 活动存储(6),活动Type=10009, 活动ID=10248 !
|
||||||
|
[24-12-09 00:16:14][TIP][Global Activity] 活动存储(7),活动Type=10015, 活动ID=10249 !
|
||||||
|
[24-12-09 00:16:14][TIP][Global Activity] 活动存储(8),活动Type=10017, 活动ID=10250 !
|
||||||
|
[24-12-09 00:16:14][TIP][Global Activity] 活动存储(9),活动Type=10017, 活动ID=10251 !
|
||||||
|
[24-12-09 00:16:14][TIP][Global Activity] 活动存储(10),活动Type=10009, 活动ID=10252 !
|
||||||
|
[24-12-09 00:16:14][TIP][Global Activity] 活动存储(11),活动Type=10009, 活动ID=10253 !
|
||||||
|
[24-12-09 00:16:14][TIP][Global Activity] 活动存储(12),活动Type=10009, 活动ID=10254 !
|
||||||
|
[24-12-09 00:16:14][TIP][Global Activity] 活动存储(13),活动Type=10017, 活动ID=10255 !
|
||||||
|
[24-12-09 00:16:14][TIP][Global Activity] 活动存储(14),活动Type=10009, 活动ID=10297 !
|
||||||
|
[24-12-09 00:16:14][TIP][Global Activity] 活动存储(15),活动Type=10009, 活动ID=10313 !
|
||||||
|
[24-12-09 00:16:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 00:16:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 00:16:14]Save all Actor Data End
|
||||||
|
[24-12-09 00:16:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 00:16:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 00:26:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 00:26:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 00:26:13]Save all Actor Data End
|
||||||
|
[24-12-09 00:26:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 00:26:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 00:36:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 00:36:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 00:36:13]Save all Actor Data End
|
||||||
|
[24-12-09 00:36:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 00:36:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 00:46:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 00:46:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 00:46:13]Save all Actor Data End
|
||||||
|
[24-12-09 00:46:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 00:46:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 00:56:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 00:56:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 00:56:13]Save all Actor Data End
|
||||||
|
[24-12-09 00:56:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 00:56:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 01:06:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 01:06:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 01:06:13]Save all Actor Data End
|
||||||
|
[24-12-09 01:06:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 01:06:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 01:16:14][TIP][Global Activity] 活动存储(0),活动Type=10015, 活动ID=10092 !
|
||||||
|
[24-12-09 01:16:14][TIP][Global Activity] 活动存储(1),活动Type=10009, 活动ID=10176 !
|
||||||
|
[24-12-09 01:16:14][TIP][Global Activity] 活动存储(2),活动Type=10009, 活动ID=10244 !
|
||||||
|
[24-12-09 01:16:14][TIP][Global Activity] 活动存储(3),活动Type=10009, 活动ID=10245 !
|
||||||
|
[24-12-09 01:16:14][TIP][Global Activity] 活动存储(4),活动Type=10009, 活动ID=10246 !
|
||||||
|
[24-12-09 01:16:14][TIP][Global Activity] 活动存储(5),活动Type=10009, 活动ID=10247 !
|
||||||
|
[24-12-09 01:16:14][TIP][Global Activity] 活动存储(6),活动Type=10009, 活动ID=10248 !
|
||||||
|
[24-12-09 01:16:14][TIP][Global Activity] 活动存储(7),活动Type=10015, 活动ID=10249 !
|
||||||
|
[24-12-09 01:16:14][TIP][Global Activity] 活动存储(8),活动Type=10017, 活动ID=10250 !
|
||||||
|
[24-12-09 01:16:14][TIP][Global Activity] 活动存储(9),活动Type=10017, 活动ID=10251 !
|
||||||
|
[24-12-09 01:16:14][TIP][Global Activity] 活动存储(10),活动Type=10009, 活动ID=10252 !
|
||||||
|
[24-12-09 01:16:14][TIP][Global Activity] 活动存储(11),活动Type=10009, 活动ID=10253 !
|
||||||
|
[24-12-09 01:16:14][TIP][Global Activity] 活动存储(12),活动Type=10009, 活动ID=10254 !
|
||||||
|
[24-12-09 01:16:14][TIP][Global Activity] 活动存储(13),活动Type=10017, 活动ID=10255 !
|
||||||
|
[24-12-09 01:16:14][TIP][Global Activity] 活动存储(14),活动Type=10009, 活动ID=10297 !
|
||||||
|
[24-12-09 01:16:14][TIP][Global Activity] 活动存储(15),活动Type=10009, 活动ID=10313 !
|
||||||
|
[24-12-09 01:16:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 01:16:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 01:16:14]Save all Actor Data End
|
||||||
|
[24-12-09 01:16:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 01:16:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 01:26:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 01:26:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 01:26:13]Save all Actor Data End
|
||||||
|
[24-12-09 01:26:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 01:26:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 01:36:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 01:36:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 01:36:13]Save all Actor Data End
|
||||||
|
[24-12-09 01:36:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 01:36:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 01:46:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 01:46:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 01:46:13]Save all Actor Data End
|
||||||
|
[24-12-09 01:46:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 01:46:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 01:56:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 01:56:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 01:56:13]Save all Actor Data End
|
||||||
|
[24-12-09 01:56:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 01:56:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 02:06:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 02:06:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 02:06:13]Save all Actor Data End
|
||||||
|
[24-12-09 02:06:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 02:06:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 02:16:14][TIP][Global Activity] 活动存储(0),活动Type=10015, 活动ID=10092 !
|
||||||
|
[24-12-09 02:16:14][TIP][Global Activity] 活动存储(1),活动Type=10009, 活动ID=10176 !
|
||||||
|
[24-12-09 02:16:14][TIP][Global Activity] 活动存储(2),活动Type=10009, 活动ID=10244 !
|
||||||
|
[24-12-09 02:16:14][TIP][Global Activity] 活动存储(3),活动Type=10009, 活动ID=10245 !
|
||||||
|
[24-12-09 02:16:14][TIP][Global Activity] 活动存储(4),活动Type=10009, 活动ID=10246 !
|
||||||
|
[24-12-09 02:16:14][TIP][Global Activity] 活动存储(5),活动Type=10009, 活动ID=10247 !
|
||||||
|
[24-12-09 02:16:14][TIP][Global Activity] 活动存储(6),活动Type=10009, 活动ID=10248 !
|
||||||
|
[24-12-09 02:16:14][TIP][Global Activity] 活动存储(7),活动Type=10015, 活动ID=10249 !
|
||||||
|
[24-12-09 02:16:14][TIP][Global Activity] 活动存储(8),活动Type=10017, 活动ID=10250 !
|
||||||
|
[24-12-09 02:16:14][TIP][Global Activity] 活动存储(9),活动Type=10017, 活动ID=10251 !
|
||||||
|
[24-12-09 02:16:14][TIP][Global Activity] 活动存储(10),活动Type=10009, 活动ID=10252 !
|
||||||
|
[24-12-09 02:16:14][TIP][Global Activity] 活动存储(11),活动Type=10009, 活动ID=10253 !
|
||||||
|
[24-12-09 02:16:14][TIP][Global Activity] 活动存储(12),活动Type=10009, 活动ID=10254 !
|
||||||
|
[24-12-09 02:16:14][TIP][Global Activity] 活动存储(13),活动Type=10017, 活动ID=10255 !
|
||||||
|
[24-12-09 02:16:14][TIP][Global Activity] 活动存储(14),活动Type=10009, 活动ID=10297 !
|
||||||
|
[24-12-09 02:16:14][TIP][Global Activity] 活动存储(15),活动Type=10009, 活动ID=10313 !
|
||||||
|
[24-12-09 02:16:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 02:16:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 02:16:14]Save all Actor Data End
|
||||||
|
[24-12-09 02:16:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 02:16:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 02:26:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 02:26:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 02:26:13]Save all Actor Data End
|
||||||
|
[24-12-09 02:26:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 02:26:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 02:36:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 02:36:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 02:36:13]Save all Actor Data End
|
||||||
|
[24-12-09 02:36:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 02:36:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 02:46:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 02:46:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 02:46:13]Save all Actor Data End
|
||||||
|
[24-12-09 02:46:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 02:46:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 02:56:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 02:56:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 02:56:13]Save all Actor Data End
|
||||||
|
[24-12-09 02:56:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 02:56:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 03:06:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 03:06:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 03:06:13]Save all Actor Data End
|
||||||
|
[24-12-09 03:06:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 03:06:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 03:16:14][TIP][Global Activity] 活动存储(0),活动Type=10015, 活动ID=10092 !
|
||||||
|
[24-12-09 03:16:14][TIP][Global Activity] 活动存储(1),活动Type=10009, 活动ID=10176 !
|
||||||
|
[24-12-09 03:16:14][TIP][Global Activity] 活动存储(2),活动Type=10009, 活动ID=10244 !
|
||||||
|
[24-12-09 03:16:14][TIP][Global Activity] 活动存储(3),活动Type=10009, 活动ID=10245 !
|
||||||
|
[24-12-09 03:16:14][TIP][Global Activity] 活动存储(4),活动Type=10009, 活动ID=10246 !
|
||||||
|
[24-12-09 03:16:14][TIP][Global Activity] 活动存储(5),活动Type=10009, 活动ID=10247 !
|
||||||
|
[24-12-09 03:16:14][TIP][Global Activity] 活动存储(6),活动Type=10009, 活动ID=10248 !
|
||||||
|
[24-12-09 03:16:14][TIP][Global Activity] 活动存储(7),活动Type=10015, 活动ID=10249 !
|
||||||
|
[24-12-09 03:16:14][TIP][Global Activity] 活动存储(8),活动Type=10017, 活动ID=10250 !
|
||||||
|
[24-12-09 03:16:14][TIP][Global Activity] 活动存储(9),活动Type=10017, 活动ID=10251 !
|
||||||
|
[24-12-09 03:16:14][TIP][Global Activity] 活动存储(10),活动Type=10009, 活动ID=10252 !
|
||||||
|
[24-12-09 03:16:14][TIP][Global Activity] 活动存储(11),活动Type=10009, 活动ID=10253 !
|
||||||
|
[24-12-09 03:16:14][TIP][Global Activity] 活动存储(12),活动Type=10009, 活动ID=10254 !
|
||||||
|
[24-12-09 03:16:14][TIP][Global Activity] 活动存储(13),活动Type=10017, 活动ID=10255 !
|
||||||
|
[24-12-09 03:16:14][TIP][Global Activity] 活动存储(14),活动Type=10009, 活动ID=10297 !
|
||||||
|
[24-12-09 03:16:14][TIP][Global Activity] 活动存储(15),活动Type=10009, 活动ID=10313 !
|
||||||
|
[24-12-09 03:16:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 03:16:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 03:16:14]Save all Actor Data End
|
||||||
|
[24-12-09 03:16:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 03:16:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 03:26:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 03:26:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 03:26:13]Save all Actor Data End
|
||||||
|
[24-12-09 03:26:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 03:26:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 03:36:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 03:36:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 03:36:13]Save all Actor Data End
|
||||||
|
[24-12-09 03:36:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 03:36:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 03:46:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 03:46:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 03:46:13]Save all Actor Data End
|
||||||
|
[24-12-09 03:46:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 03:46:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 03:56:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 03:56:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 03:56:13]Save all Actor Data End
|
||||||
|
[24-12-09 03:56:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 03:56:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 04:06:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 04:06:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 04:06:13]Save all Actor Data End
|
||||||
|
[24-12-09 04:06:13][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 04:06:13][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 04:16:14][TIP][Global Activity] 活动存储(0),活动Type=10015, 活动ID=10092 !
|
||||||
|
[24-12-09 04:16:14][TIP][Global Activity] 活动存储(1),活动Type=10009, 活动ID=10176 !
|
||||||
|
[24-12-09 04:16:14][TIP][Global Activity] 活动存储(2),活动Type=10009, 活动ID=10244 !
|
||||||
|
[24-12-09 04:16:14][TIP][Global Activity] 活动存储(3),活动Type=10009, 活动ID=10245 !
|
||||||
|
[24-12-09 04:16:14][TIP][Global Activity] 活动存储(4),活动Type=10009, 活动ID=10246 !
|
||||||
|
[24-12-09 04:16:14][TIP][Global Activity] 活动存储(5),活动Type=10009, 活动ID=10247 !
|
||||||
|
[24-12-09 04:16:14][TIP][Global Activity] 活动存储(6),活动Type=10009, 活动ID=10248 !
|
||||||
|
[24-12-09 04:16:14][TIP][Global Activity] 活动存储(7),活动Type=10015, 活动ID=10249 !
|
||||||
|
[24-12-09 04:16:14][TIP][Global Activity] 活动存储(8),活动Type=10017, 活动ID=10250 !
|
||||||
|
[24-12-09 04:16:14][TIP][Global Activity] 活动存储(9),活动Type=10017, 活动ID=10251 !
|
||||||
|
[24-12-09 04:16:14][TIP][Global Activity] 活动存储(10),活动Type=10009, 活动ID=10252 !
|
||||||
|
[24-12-09 04:16:14][TIP][Global Activity] 活动存储(11),活动Type=10009, 活动ID=10253 !
|
||||||
|
[24-12-09 04:16:14][TIP][Global Activity] 活动存储(12),活动Type=10009, 活动ID=10254 !
|
||||||
|
[24-12-09 04:16:14][TIP][Global Activity] 活动存储(13),活动Type=10017, 活动ID=10255 !
|
||||||
|
[24-12-09 04:16:14][TIP][Global Activity] 活动存储(14),活动Type=10009, 活动ID=10297 !
|
||||||
|
[24-12-09 04:16:14][TIP][Global Activity] 活动存储(15),活动Type=10009, 活动ID=10313 !
|
||||||
|
[24-12-09 04:16:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 04:16:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 04:16:14]Save all Actor Data End
|
||||||
|
[24-12-09 04:16:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 04:16:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 04:26:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 04:26:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 04:26:13]Save all Actor Data End
|
||||||
|
[24-12-09 04:26:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 04:26:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 04:36:13][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 04:36:13]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 04:36:13]Save all Actor Data End
|
||||||
|
[24-12-09 04:36:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 04:36:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 04:46:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 04:46:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 04:46:14]Save all Actor Data End
|
||||||
|
[24-12-09 04:46:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 04:46:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 04:56:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 04:56:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 04:56:14]Save all Actor Data End
|
||||||
|
[24-12-09 04:56:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 04:56:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 05:06:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 05:06:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 05:06:14]Save all Actor Data End
|
||||||
|
[24-12-09 05:06:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 05:06:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 05:16:14][TIP][Global Activity] 活动存储(0),活动Type=10015, 活动ID=10092 !
|
||||||
|
[24-12-09 05:16:14][TIP][Global Activity] 活动存储(1),活动Type=10009, 活动ID=10176 !
|
||||||
|
[24-12-09 05:16:14][TIP][Global Activity] 活动存储(2),活动Type=10009, 活动ID=10244 !
|
||||||
|
[24-12-09 05:16:14][TIP][Global Activity] 活动存储(3),活动Type=10009, 活动ID=10245 !
|
||||||
|
[24-12-09 05:16:14][TIP][Global Activity] 活动存储(4),活动Type=10009, 活动ID=10246 !
|
||||||
|
[24-12-09 05:16:14][TIP][Global Activity] 活动存储(5),活动Type=10009, 活动ID=10247 !
|
||||||
|
[24-12-09 05:16:14][TIP][Global Activity] 活动存储(6),活动Type=10009, 活动ID=10248 !
|
||||||
|
[24-12-09 05:16:14][TIP][Global Activity] 活动存储(7),活动Type=10015, 活动ID=10249 !
|
||||||
|
[24-12-09 05:16:14][TIP][Global Activity] 活动存储(8),活动Type=10017, 活动ID=10250 !
|
||||||
|
[24-12-09 05:16:14][TIP][Global Activity] 活动存储(9),活动Type=10017, 活动ID=10251 !
|
||||||
|
[24-12-09 05:16:14][TIP][Global Activity] 活动存储(10),活动Type=10009, 活动ID=10252 !
|
||||||
|
[24-12-09 05:16:14][TIP][Global Activity] 活动存储(11),活动Type=10009, 活动ID=10253 !
|
||||||
|
[24-12-09 05:16:14][TIP][Global Activity] 活动存储(12),活动Type=10009, 活动ID=10254 !
|
||||||
|
[24-12-09 05:16:14][TIP][Global Activity] 活动存储(13),活动Type=10017, 活动ID=10255 !
|
||||||
|
[24-12-09 05:16:14][TIP][Global Activity] 活动存储(14),活动Type=10009, 活动ID=10297 !
|
||||||
|
[24-12-09 05:16:14][TIP][Global Activity] 活动存储(15),活动Type=10009, 活动ID=10313 !
|
||||||
|
[24-12-09 05:16:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 05:16:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 05:16:14]Save all Actor Data End
|
||||||
|
[24-12-09 05:16:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 05:16:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 05:26:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 05:26:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 05:26:14]Save all Actor Data End
|
||||||
|
[24-12-09 05:26:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 05:26:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 05:36:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 05:36:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 05:36:14]Save all Actor Data End
|
||||||
|
[24-12-09 05:36:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 05:36:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 05:46:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 05:46:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 05:46:14]Save all Actor Data End
|
||||||
|
[24-12-09 05:46:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 05:46:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 05:56:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 05:56:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 05:56:14]Save all Actor Data End
|
||||||
|
[24-12-09 05:56:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 05:56:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 06:06:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 06:06:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 06:06:14]Save all Actor Data End
|
||||||
|
[24-12-09 06:06:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 06:06:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 06:16:14][TIP][Global Activity] 活动存储(0),活动Type=10015, 活动ID=10092 !
|
||||||
|
[24-12-09 06:16:14][TIP][Global Activity] 活动存储(1),活动Type=10009, 活动ID=10176 !
|
||||||
|
[24-12-09 06:16:14][TIP][Global Activity] 活动存储(2),活动Type=10009, 活动ID=10244 !
|
||||||
|
[24-12-09 06:16:14][TIP][Global Activity] 活动存储(3),活动Type=10009, 活动ID=10245 !
|
||||||
|
[24-12-09 06:16:14][TIP][Global Activity] 活动存储(4),活动Type=10009, 活动ID=10246 !
|
||||||
|
[24-12-09 06:16:14][TIP][Global Activity] 活动存储(5),活动Type=10009, 活动ID=10247 !
|
||||||
|
[24-12-09 06:16:14][TIP][Global Activity] 活动存储(6),活动Type=10009, 活动ID=10248 !
|
||||||
|
[24-12-09 06:16:14][TIP][Global Activity] 活动存储(7),活动Type=10015, 活动ID=10249 !
|
||||||
|
[24-12-09 06:16:14][TIP][Global Activity] 活动存储(8),活动Type=10017, 活动ID=10250 !
|
||||||
|
[24-12-09 06:16:14][TIP][Global Activity] 活动存储(9),活动Type=10017, 活动ID=10251 !
|
||||||
|
[24-12-09 06:16:14][TIP][Global Activity] 活动存储(10),活动Type=10009, 活动ID=10252 !
|
||||||
|
[24-12-09 06:16:14][TIP][Global Activity] 活动存储(11),活动Type=10009, 活动ID=10253 !
|
||||||
|
[24-12-09 06:16:14][TIP][Global Activity] 活动存储(12),活动Type=10009, 活动ID=10254 !
|
||||||
|
[24-12-09 06:16:14][TIP][Global Activity] 活动存储(13),活动Type=10017, 活动ID=10255 !
|
||||||
|
[24-12-09 06:16:14][TIP][Global Activity] 活动存储(14),活动Type=10009, 活动ID=10297 !
|
||||||
|
[24-12-09 06:16:14][TIP][Global Activity] 活动存储(15),活动Type=10009, 活动ID=10313 !
|
||||||
|
[24-12-09 06:16:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 06:16:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 06:16:14]Save all Actor Data End
|
||||||
|
[24-12-09 06:16:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 06:16:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 06:26:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 06:26:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 06:26:14]Save all Actor Data End
|
||||||
|
[24-12-09 06:26:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 06:26:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 06:36:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 06:36:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 06:36:14]Save all Actor Data End
|
||||||
|
[24-12-09 06:36:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 06:36:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 06:46:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 06:46:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 06:46:14]Save all Actor Data End
|
||||||
|
[24-12-09 06:46:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 06:46:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 06:56:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 06:56:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 06:56:14]Save all Actor Data End
|
||||||
|
[24-12-09 06:56:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 06:56:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 07:06:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 07:06:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 07:06:14]Save all Actor Data End
|
||||||
|
[24-12-09 07:06:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 07:06:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 07:16:14][TIP][Global Activity] 活动存储(0),活动Type=10015, 活动ID=10092 !
|
||||||
|
[24-12-09 07:16:14][TIP][Global Activity] 活动存储(1),活动Type=10009, 活动ID=10176 !
|
||||||
|
[24-12-09 07:16:14][TIP][Global Activity] 活动存储(2),活动Type=10009, 活动ID=10244 !
|
||||||
|
[24-12-09 07:16:14][TIP][Global Activity] 活动存储(3),活动Type=10009, 活动ID=10245 !
|
||||||
|
[24-12-09 07:16:14][TIP][Global Activity] 活动存储(4),活动Type=10009, 活动ID=10246 !
|
||||||
|
[24-12-09 07:16:14][TIP][Global Activity] 活动存储(5),活动Type=10009, 活动ID=10247 !
|
||||||
|
[24-12-09 07:16:14][TIP][Global Activity] 活动存储(6),活动Type=10009, 活动ID=10248 !
|
||||||
|
[24-12-09 07:16:14][TIP][Global Activity] 活动存储(7),活动Type=10015, 活动ID=10249 !
|
||||||
|
[24-12-09 07:16:14][TIP][Global Activity] 活动存储(8),活动Type=10017, 活动ID=10250 !
|
||||||
|
[24-12-09 07:16:14][TIP][Global Activity] 活动存储(9),活动Type=10017, 活动ID=10251 !
|
||||||
|
[24-12-09 07:16:14][TIP][Global Activity] 活动存储(10),活动Type=10009, 活动ID=10252 !
|
||||||
|
[24-12-09 07:16:14][TIP][Global Activity] 活动存储(11),活动Type=10009, 活动ID=10253 !
|
||||||
|
[24-12-09 07:16:14][TIP][Global Activity] 活动存储(12),活动Type=10009, 活动ID=10254 !
|
||||||
|
[24-12-09 07:16:14][TIP][Global Activity] 活动存储(13),活动Type=10017, 活动ID=10255 !
|
||||||
|
[24-12-09 07:16:14][TIP][Global Activity] 活动存储(14),活动Type=10009, 活动ID=10297 !
|
||||||
|
[24-12-09 07:16:14][TIP][Global Activity] 活动存储(15),活动Type=10009, 活动ID=10313 !
|
||||||
|
[24-12-09 07:16:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 07:16:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 07:16:14]Save all Actor Data End
|
||||||
|
[24-12-09 07:16:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 07:16:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 07:26:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 07:26:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 07:26:14]Save all Actor Data End
|
||||||
|
[24-12-09 07:26:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 07:26:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 07:36:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 07:36:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 07:36:14]Save all Actor Data End
|
||||||
|
[24-12-09 07:36:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 07:36:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 07:46:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 07:46:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 07:46:14]Save all Actor Data End
|
||||||
|
[24-12-09 07:46:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 07:46:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 07:56:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 07:56:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 07:56:14]Save all Actor Data End
|
||||||
|
[24-12-09 07:56:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 07:56:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 08:06:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 08:06:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 08:06:14]Save all Actor Data End
|
||||||
|
[24-12-09 08:06:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 08:06:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 08:16:14][TIP][Global Activity] 活动存储(0),活动Type=10015, 活动ID=10092 !
|
||||||
|
[24-12-09 08:16:14][TIP][Global Activity] 活动存储(1),活动Type=10009, 活动ID=10176 !
|
||||||
|
[24-12-09 08:16:14][TIP][Global Activity] 活动存储(2),活动Type=10009, 活动ID=10244 !
|
||||||
|
[24-12-09 08:16:14][TIP][Global Activity] 活动存储(3),活动Type=10009, 活动ID=10245 !
|
||||||
|
[24-12-09 08:16:14][TIP][Global Activity] 活动存储(4),活动Type=10009, 活动ID=10246 !
|
||||||
|
[24-12-09 08:16:14][TIP][Global Activity] 活动存储(5),活动Type=10009, 活动ID=10247 !
|
||||||
|
[24-12-09 08:16:14][TIP][Global Activity] 活动存储(6),活动Type=10009, 活动ID=10248 !
|
||||||
|
[24-12-09 08:16:14][TIP][Global Activity] 活动存储(7),活动Type=10015, 活动ID=10249 !
|
||||||
|
[24-12-09 08:16:14][TIP][Global Activity] 活动存储(8),活动Type=10017, 活动ID=10250 !
|
||||||
|
[24-12-09 08:16:14][TIP][Global Activity] 活动存储(9),活动Type=10017, 活动ID=10251 !
|
||||||
|
[24-12-09 08:16:14][TIP][Global Activity] 活动存储(10),活动Type=10009, 活动ID=10252 !
|
||||||
|
[24-12-09 08:16:14][TIP][Global Activity] 活动存储(11),活动Type=10009, 活动ID=10253 !
|
||||||
|
[24-12-09 08:16:14][TIP][Global Activity] 活动存储(12),活动Type=10009, 活动ID=10254 !
|
||||||
|
[24-12-09 08:16:14][TIP][Global Activity] 活动存储(13),活动Type=10017, 活动ID=10255 !
|
||||||
|
[24-12-09 08:16:14][TIP][Global Activity] 活动存储(14),活动Type=10009, 活动ID=10297 !
|
||||||
|
[24-12-09 08:16:14][TIP][Global Activity] 活动存储(15),活动Type=10009, 活动ID=10313 !
|
||||||
|
[24-12-09 08:16:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 08:16:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 08:16:14]Save all Actor Data End
|
||||||
|
[24-12-09 08:16:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 08:16:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 08:26:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 08:26:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 08:26:14]Save all Actor Data End
|
||||||
|
[24-12-09 08:26:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 08:26:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 08:36:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 08:36:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 08:36:14]Save all Actor Data End
|
||||||
|
[24-12-09 08:36:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 08:36:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 08:46:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 08:46:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 08:46:14]Save all Actor Data End
|
||||||
|
[24-12-09 08:46:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 08:46:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 08:56:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 08:56:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 08:56:14]Save all Actor Data End
|
||||||
|
[24-12-09 08:56:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 08:56:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 09:06:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 09:06:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 09:06:14]Save all Actor Data End
|
||||||
|
[24-12-09 09:06:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 09:06:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 09:16:14][TIP][Global Activity] 活动存储(0),活动Type=10015, 活动ID=10092 !
|
||||||
|
[24-12-09 09:16:14][TIP][Global Activity] 活动存储(1),活动Type=10009, 活动ID=10176 !
|
||||||
|
[24-12-09 09:16:14][TIP][Global Activity] 活动存储(2),活动Type=10009, 活动ID=10244 !
|
||||||
|
[24-12-09 09:16:14][TIP][Global Activity] 活动存储(3),活动Type=10009, 活动ID=10245 !
|
||||||
|
[24-12-09 09:16:14][TIP][Global Activity] 活动存储(4),活动Type=10009, 活动ID=10246 !
|
||||||
|
[24-12-09 09:16:14][TIP][Global Activity] 活动存储(5),活动Type=10009, 活动ID=10247 !
|
||||||
|
[24-12-09 09:16:14][TIP][Global Activity] 活动存储(6),活动Type=10009, 活动ID=10248 !
|
||||||
|
[24-12-09 09:16:14][TIP][Global Activity] 活动存储(7),活动Type=10015, 活动ID=10249 !
|
||||||
|
[24-12-09 09:16:14][TIP][Global Activity] 活动存储(8),活动Type=10017, 活动ID=10250 !
|
||||||
|
[24-12-09 09:16:14][TIP][Global Activity] 活动存储(9),活动Type=10017, 活动ID=10251 !
|
||||||
|
[24-12-09 09:16:14][TIP][Global Activity] 活动存储(10),活动Type=10009, 活动ID=10252 !
|
||||||
|
[24-12-09 09:16:14][TIP][Global Activity] 活动存储(11),活动Type=10009, 活动ID=10253 !
|
||||||
|
[24-12-09 09:16:14][TIP][Global Activity] 活动存储(12),活动Type=10009, 活动ID=10254 !
|
||||||
|
[24-12-09 09:16:14][TIP][Global Activity] 活动存储(13),活动Type=10017, 活动ID=10255 !
|
||||||
|
[24-12-09 09:16:14][TIP][Global Activity] 活动存储(14),活动Type=10009, 活动ID=10297 !
|
||||||
|
[24-12-09 09:16:14][TIP][Global Activity] 活动存储(15),活动Type=10009, 活动ID=10313 !
|
||||||
|
[24-12-09 09:16:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 09:16:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 09:16:14]Save all Actor Data End
|
||||||
|
[24-12-09 09:16:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 09:16:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 09:26:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 09:26:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 09:26:14]Save all Actor Data End
|
||||||
|
[24-12-09 09:26:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 09:26:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 09:36:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 09:36:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 09:36:14]Save all Actor Data End
|
||||||
|
[24-12-09 09:36:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 09:36:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 09:46:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 09:46:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 09:46:14]Save all Actor Data End
|
||||||
|
[24-12-09 09:46:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 09:46:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 09:56:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 09:56:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 09:56:14]Save all Actor Data End
|
||||||
|
[24-12-09 09:56:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 09:56:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 10:06:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 10:06:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 10:06:14]Save all Actor Data End
|
||||||
|
[24-12-09 10:06:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 10:06:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 10:16:14][TIP][Global Activity] 活动存储(0),活动Type=10015, 活动ID=10092 !
|
||||||
|
[24-12-09 10:16:14][TIP][Global Activity] 活动存储(1),活动Type=10009, 活动ID=10176 !
|
||||||
|
[24-12-09 10:16:14][TIP][Global Activity] 活动存储(2),活动Type=10009, 活动ID=10244 !
|
||||||
|
[24-12-09 10:16:14][TIP][Global Activity] 活动存储(3),活动Type=10009, 活动ID=10245 !
|
||||||
|
[24-12-09 10:16:14][TIP][Global Activity] 活动存储(4),活动Type=10009, 活动ID=10246 !
|
||||||
|
[24-12-09 10:16:14][TIP][Global Activity] 活动存储(5),活动Type=10009, 活动ID=10247 !
|
||||||
|
[24-12-09 10:16:14][TIP][Global Activity] 活动存储(6),活动Type=10009, 活动ID=10248 !
|
||||||
|
[24-12-09 10:16:14][TIP][Global Activity] 活动存储(7),活动Type=10015, 活动ID=10249 !
|
||||||
|
[24-12-09 10:16:14][TIP][Global Activity] 活动存储(8),活动Type=10017, 活动ID=10250 !
|
||||||
|
[24-12-09 10:16:14][TIP][Global Activity] 活动存储(9),活动Type=10017, 活动ID=10251 !
|
||||||
|
[24-12-09 10:16:14][TIP][Global Activity] 活动存储(10),活动Type=10009, 活动ID=10252 !
|
||||||
|
[24-12-09 10:16:14][TIP][Global Activity] 活动存储(11),活动Type=10009, 活动ID=10253 !
|
||||||
|
[24-12-09 10:16:14][TIP][Global Activity] 活动存储(12),活动Type=10009, 活动ID=10254 !
|
||||||
|
[24-12-09 10:16:14][TIP][Global Activity] 活动存储(13),活动Type=10017, 活动ID=10255 !
|
||||||
|
[24-12-09 10:16:14][TIP][Global Activity] 活动存储(14),活动Type=10009, 活动ID=10297 !
|
||||||
|
[24-12-09 10:16:14][TIP][Global Activity] 活动存储(15),活动Type=10009, 活动ID=10313 !
|
||||||
|
[24-12-09 10:16:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 10:16:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 10:16:14]Save all Actor Data End
|
||||||
|
[24-12-09 10:16:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 10:16:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 10:26:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 10:26:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 10:26:14]Save all Actor Data End
|
||||||
|
[24-12-09 10:26:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 10:26:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 10:36:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 10:36:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 10:36:14]Save all Actor Data End
|
||||||
|
[24-12-09 10:36:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 10:36:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
|
[24-12-09 10:46:14][TIP][dcSaveBaseRankCS]1 跨服的排行榜保存数据 !
|
||||||
|
[24-12-09 10:46:14]Prepare to Save all Actor Data
|
||||||
|
[24-12-09 10:46:14]Save all Actor Data End
|
||||||
|
[24-12-09 10:46:14][ERR]Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mir_actor_cross1.toprank.actorid' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
|
||||||
|
[24-12-09 10:46:14][ERR]LoadBaseRank装载排行榜数据失败
|
||||||
1397
server/cross/DBServer/log/DBServer_2024129.txt.log
Normal file
1397
server/cross/DBServer/log/DBServer_2024129.txt.log
Normal file
File diff suppressed because it is too large
Load Diff
8
server/cross/DBServer/run.sh
Normal file
8
server/cross/DBServer/run.sh
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
path=`pwd`
|
||||||
|
|
||||||
|
if [ "$1" == "Debug" ]; then
|
||||||
|
$path/dbserver_d $path/DBServerLinux.txt
|
||||||
|
else
|
||||||
|
$path/dbserver_r $path/DBServerLinux.txt
|
||||||
|
fi
|
||||||
0
server/cross/DBServer/sedolqUYI
Normal file
0
server/cross/DBServer/sedolqUYI
Normal file
18
server/cross/Gateway/GateWay.txt
Normal file
18
server/cross/Gateway/GateWay.txt
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
GateServer = {
|
||||||
|
--逻辑网关
|
||||||
|
{
|
||||||
|
--网关服务的绑定地址和端口
|
||||||
|
LocalService = {
|
||||||
|
ServerName = "版本验收-网关服(sid=10001)",
|
||||||
|
Address = "0.0.0.0",
|
||||||
|
Port = 10001,
|
||||||
|
MaxSession = 8192, --网关中客户端连接池的最大连接数
|
||||||
|
SendThreadCount = 2, --数据发送线程池中工作线程数量
|
||||||
|
},
|
||||||
|
--后台服务器的地址和端口
|
||||||
|
BackServer = {
|
||||||
|
Host = "127.0.0.1",
|
||||||
|
Port = 43101,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
BIN
server/cross/Gateway/gateway_r
Normal file
BIN
server/cross/Gateway/gateway_r
Normal file
Binary file not shown.
41
server/cross/Gateway/log/gateway20241205.txt
Normal file
41
server/cross/Gateway/log/gateway20241205.txt
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
[2024-12-05 04:44:53.055][/home/dabao/Server_v2.0/Gateway/gateway/gate_server.cc:17 StartServer] "start server..................."
|
||||||
|
[2024-12-05 04:44:53.055][/home/dabao/Server_v2.0/Gateway/gateway/srv/game_client_mgr.cc:70 OnStart] "GameClientMgr::OnStart"
|
||||||
|
[2024-12-05 04:44:53.055][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:96 ServerMain] "==========================="
|
||||||
|
[2024-12-05 04:44:53.055][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:97 ServerMain] "gateway start ok"
|
||||||
|
[2024-12-05 04:44:53.055][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:98 ServerMain] "quit:stop server and exit"
|
||||||
|
[2024-12-05 04:44:53.055][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:99 ServerMain] "==========================="
|
||||||
|
[2024-12-05 04:44:53.055]connect fail! 版本验收-网关服(sid=1000 111 Connection refused
|
||||||
|
[2024-12-05 04:44:58.005]版本验收-网关服(sid=1000 server succ
|
||||||
|
[2024-12-05 04:48:45.920][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:18 sighup_handler] "log the perfermance "
|
||||||
|
[2024-12-05 04:48:45.920][/home/dabao/Server_v2.0/Gateway/gateway/gate_server.cc:25 StopServer] "stop server................... start"
|
||||||
|
[2024-12-05 04:48:45.920][/home/dabao/Server_v2.0/Gateway/gateway/srv/game_client_mgr.cc:79 Stop] "版本验收-网关服(sid=1000, start"
|
||||||
|
[2024-12-05 04:48:45.920]版本验收-网关服(sid=1000 server disconnect!
|
||||||
|
[2024-12-05 04:49:00.113][/home/dabao/Server_v2.0/Gateway/gateway/gate_server.cc:17 StartServer] "start server..................."
|
||||||
|
[2024-12-05 04:49:00.113][/home/dabao/Server_v2.0/Gateway/gateway/srv/game_client_mgr.cc:70 OnStart] "GameClientMgr::OnStart"
|
||||||
|
[2024-12-05 04:49:00.113][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:96 ServerMain] "==========================="
|
||||||
|
[2024-12-05 04:49:00.113][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:97 ServerMain] "gateway start ok"
|
||||||
|
[2024-12-05 04:49:00.113][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:98 ServerMain] "quit:stop server and exit"
|
||||||
|
[2024-12-05 04:49:00.113][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:99 ServerMain] "==========================="
|
||||||
|
[2024-12-05 04:49:00.113]connect fail! 版本验收-网关服(sid=1000 111 Connection refused
|
||||||
|
[2024-12-05 04:49:05.015]版本验收-网关服(sid=1000 server succ
|
||||||
|
[2024-12-05 08:59:43.108][/home/dabao/Server_v2.0/Gateway/gateway/gate_server.cc:17 StartServer] "start server..................."
|
||||||
|
[2024-12-05 08:59:43.108][/home/dabao/Server_v2.0/Gateway/gateway/srv/game_client_mgr.cc:70 OnStart] "GameClientMgr::OnStart"
|
||||||
|
[2024-12-05 08:59:43.108][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:96 ServerMain] "==========================="
|
||||||
|
[2024-12-05 08:59:43.108][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:97 ServerMain] "gateway start ok"
|
||||||
|
[2024-12-05 08:59:43.108][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:98 ServerMain] "quit:stop server and exit"
|
||||||
|
[2024-12-05 08:59:43.108][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:99 ServerMain] "==========================="
|
||||||
|
[2024-12-05 08:59:43.108]connect fail! 版本验收-网关服(sid=1000 111 Connection refused
|
||||||
|
[2024-12-05 08:59:48.010]版本验收-网关服(sid=1000 server succ
|
||||||
|
[2024-12-05 09:18:13.096][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:18 sighup_handler] "log the perfermance "
|
||||||
|
[2024-12-05 09:18:13.096][/home/dabao/Server_v2.0/Gateway/gateway/gate_server.cc:25 StopServer] "stop server................... start"
|
||||||
|
[2024-12-05 09:18:13.096][/home/dabao/Server_v2.0/Gateway/gateway/srv/game_client_mgr.cc:79 Stop] "版本验收-网关服(sid=1000, start"
|
||||||
|
[2024-12-05 09:18:13.096]版本验收-网关服(sid=1000 server disconnect!
|
||||||
|
[2024-12-05 09:18:13.096][/home/dabao/Server_v2.0/Gateway/gateway/srv/socket_srv.cc:130 Stop] "start"
|
||||||
|
[2024-12-05 09:18:27.279][/home/dabao/Server_v2.0/Gateway/gateway/gate_server.cc:17 StartServer] "start server..................."
|
||||||
|
[2024-12-05 09:18:27.279][/home/dabao/Server_v2.0/Gateway/gateway/srv/game_client_mgr.cc:70 OnStart] "GameClientMgr::OnStart"
|
||||||
|
[2024-12-05 09:18:27.279][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:96 ServerMain] "==========================="
|
||||||
|
[2024-12-05 09:18:27.279][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:97 ServerMain] "gateway start ok"
|
||||||
|
[2024-12-05 09:18:27.279][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:98 ServerMain] "quit:stop server and exit"
|
||||||
|
[2024-12-05 09:18:27.279][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:99 ServerMain] "==========================="
|
||||||
|
[2024-12-05 09:18:27.279]connect fail! 版本验收-网关服(sid=1000 111 Connection refused
|
||||||
|
[2024-12-05 09:18:32.004]版本验收-网关服(sid=1000 server succ
|
||||||
12
server/cross/Gateway/log/gateway20241206.txt
Normal file
12
server/cross/Gateway/log/gateway20241206.txt
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
[2024-12-06 04:15:32.064][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:18 sighup_handler] "log the perfermance "
|
||||||
|
[2024-12-06 04:15:32.064][/home/dabao/Server_v2.0/Gateway/gateway/gate_server.cc:25 StopServer] "stop server................... start"
|
||||||
|
[2024-12-06 04:15:32.064][/home/dabao/Server_v2.0/Gateway/gateway/srv/game_client_mgr.cc:79 Stop] "版本验收-网关服(sid=1000, start"
|
||||||
|
[2024-12-06 04:15:32.064]版本验收-网关服(sid=1000 server disconnect!
|
||||||
|
[2024-12-06 04:15:46.274][/home/dabao/Server_v2.0/Gateway/gateway/gate_server.cc:17 StartServer] "start server..................."
|
||||||
|
[2024-12-06 04:15:46.274][/home/dabao/Server_v2.0/Gateway/gateway/srv/game_client_mgr.cc:70 OnStart] "GameClientMgr::OnStart"
|
||||||
|
[2024-12-06 04:15:46.274][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:96 ServerMain] "==========================="
|
||||||
|
[2024-12-06 04:15:46.274][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:97 ServerMain] "gateway start ok"
|
||||||
|
[2024-12-06 04:15:46.274][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:98 ServerMain] "quit:stop server and exit"
|
||||||
|
[2024-12-06 04:15:46.274][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:99 ServerMain] "==========================="
|
||||||
|
[2024-12-06 04:15:46.274]connect fail! 版本验收-网关服(sid=1000 111 Connection refused
|
||||||
|
[2024-12-06 04:15:51.015]版本验收-网关服(sid=1000 server succ
|
||||||
8
server/cross/Gateway/log/gateway20241208.txt
Normal file
8
server/cross/Gateway/log/gateway20241208.txt
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
[2024-12-08 21:16:13.850][/home/dabao/Server_v2.0/Gateway/gateway/gate_server.cc:17 StartServer] "start server..................."
|
||||||
|
[2024-12-08 21:16:13.850][/home/dabao/Server_v2.0/Gateway/gateway/srv/game_client_mgr.cc:70 OnStart] "GameClientMgr::OnStart"
|
||||||
|
[2024-12-08 21:16:13.850][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:96 ServerMain] "==========================="
|
||||||
|
[2024-12-08 21:16:13.850][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:97 ServerMain] "gateway start ok"
|
||||||
|
[2024-12-08 21:16:13.850][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:98 ServerMain] "quit:stop server and exit"
|
||||||
|
[2024-12-08 21:16:13.850][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:99 ServerMain] "==========================="
|
||||||
|
[2024-12-08 21:16:13.850]connect fail! 版本验收-网关服(sid=1000 111 Connection refused
|
||||||
|
[2024-12-08 21:16:18.014]版本验收-网关服(sid=1000 server succ
|
||||||
8
server/cross/Gateway/log/gateway20241209.txt
Normal file
8
server/cross/Gateway/log/gateway20241209.txt
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
[2024-12-09 10:57:30.171][/home/dabao/Server_v2.0/Gateway/gateway/gate_server.cc:17 StartServer] "start server..................."
|
||||||
|
[2024-12-09 10:57:30.171][/home/dabao/Server_v2.0/Gateway/gateway/srv/game_client_mgr.cc:70 OnStart] "GameClientMgr::OnStart"
|
||||||
|
[2024-12-09 10:57:30.171][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:96 ServerMain] "==========================="
|
||||||
|
[2024-12-09 10:57:30.171][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:97 ServerMain] "gateway start ok"
|
||||||
|
[2024-12-09 10:57:30.171][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:98 ServerMain] "quit:stop server and exit"
|
||||||
|
[2024-12-09 10:57:30.171][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:99 ServerMain] "==========================="
|
||||||
|
[2024-12-09 10:57:30.171]connect fail! 版本验收-网关服(sid=1000 111 Connection refused
|
||||||
|
[2024-12-09 10:57:35.010]版本验收-网关服(sid=1000 server succ
|
||||||
12
server/cross/Gateway/log/gateway20241210.txt
Normal file
12
server/cross/Gateway/log/gateway20241210.txt
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
[2024-12-10 15:12:28.497][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:18 sighup_handler] "log the perfermance "
|
||||||
|
[2024-12-10 15:12:28.497][/home/dabao/Server_v2.0/Gateway/gateway/gate_server.cc:25 StopServer] "stop server................... start"
|
||||||
|
[2024-12-10 15:12:28.497][/home/dabao/Server_v2.0/Gateway/gateway/srv/game_client_mgr.cc:79 Stop] "版本验收-网关服(sid=1000, start"
|
||||||
|
[2024-12-10 15:12:28.497]版本验收-网关服(sid=1000 server disconnect!
|
||||||
|
[2024-12-10 15:12:44.715][/home/dabao/Server_v2.0/Gateway/gateway/gate_server.cc:17 StartServer] "start server..................."
|
||||||
|
[2024-12-10 15:12:44.715][/home/dabao/Server_v2.0/Gateway/gateway/srv/game_client_mgr.cc:70 OnStart] "GameClientMgr::OnStart"
|
||||||
|
[2024-12-10 15:12:44.715][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:96 ServerMain] "==========================="
|
||||||
|
[2024-12-10 15:12:44.715][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:97 ServerMain] "gateway start ok"
|
||||||
|
[2024-12-10 15:12:44.715][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:98 ServerMain] "quit:stop server and exit"
|
||||||
|
[2024-12-10 15:12:44.715][/home/dabao/Server_v2.0/Gateway/gateway/main.cc:99 ServerMain] "==========================="
|
||||||
|
[2024-12-10 15:12:44.715]connect fail! 版本验收-网关服(sid=1000 111 Connection refused
|
||||||
|
[2024-12-10 15:12:49.006]版本验收-网关服(sid=1000 server succ
|
||||||
5
server/cross/Gateway/memory.txt
Normal file
5
server/cross/Gateway/memory.txt
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
ClientAlloc, alloc total:0, used:0
|
||||||
|
版本验收-网关服(sid=100, alloc total:0, used:0
|
||||||
|
版本验收-网关服(sid=100, alloc total:0, used:0
|
||||||
|
WorkSock_Alloc, alloc total:0, used:0
|
||||||
|
all: alloc total:0, used:0
|
||||||
49
server/cross/LogicServer/LogicServerLinux.txt
Normal file
49
server/cross/LogicServer/LogicServerLinux.txt
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
LogicServer = {
|
||||||
|
ServerName = "版本验收-逻辑服(sid=10001)",
|
||||||
|
ServerIndex = 10001,
|
||||||
|
ServerOpenTime = "2022-09-29 20:41:42",
|
||||||
|
--ServerCombineTime = "2023-12-15 8:00:00",
|
||||||
|
spguid=1,
|
||||||
|
|
||||||
|
--监听:网关服务器
|
||||||
|
GateService = {
|
||||||
|
Address = "0.0.0.0",
|
||||||
|
Port = 43101,
|
||||||
|
},
|
||||||
|
|
||||||
|
--连接:数据服务器
|
||||||
|
DbServer = {
|
||||||
|
Address = "127.0.0.1",
|
||||||
|
Port = 42102,
|
||||||
|
},
|
||||||
|
|
||||||
|
--连接:LocalLog服务器
|
||||||
|
LocalLogServer = {
|
||||||
|
Address = "127.0.0.1",
|
||||||
|
Port = 43102,
|
||||||
|
},
|
||||||
|
|
||||||
|
--连接:会话服务器
|
||||||
|
SessionServer = {
|
||||||
|
Address = "127.0.0.1",
|
||||||
|
Port = 31000,
|
||||||
|
},
|
||||||
|
|
||||||
|
--连接:Log服务器
|
||||||
|
LogServer = {
|
||||||
|
Address = "127.0.0.1",
|
||||||
|
Port = 34000,
|
||||||
|
},
|
||||||
|
|
||||||
|
--连接:AM服务器
|
||||||
|
--AMServer = {
|
||||||
|
-- Host = "127.0.0.1",
|
||||||
|
-- Port = 5660,
|
||||||
|
--},
|
||||||
|
|
||||||
|
--连接:后台服务器
|
||||||
|
MgrServer = {
|
||||||
|
Host = "127.0.0.1",
|
||||||
|
Port = 8500,
|
||||||
|
},
|
||||||
|
}
|
||||||
19
server/cross/LogicServer/data/DataConfig.txt
Normal file
19
server/cross/LogicServer/data/DataConfig.txt
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
--lua script
|
||||||
|
Lang = nil --新语言表
|
||||||
|
OldLang = nil --置空逻辑脚本中强制导入的Lang变量,否则将导致无法读取tipmsg
|
||||||
|
--#include "language\LangCode.txt"
|
||||||
|
--#include "language\LangCode.config"
|
||||||
|
--#include "config\GlobalConf.config"
|
||||||
|
--#include "config\vocation\VocationConfig.txt" --
|
||||||
|
--#include "config\level\LevelUpExp.config"
|
||||||
|
--#include "config\property\SkillMonsterExp.txt"
|
||||||
|
--#include "config\property\ExpUpLmtEveryDay.txt"
|
||||||
|
--#include "config\property\ActorNameColor.txt"
|
||||||
|
--#include "config\item\BagConfig.txt"
|
||||||
|
--#include "config\item\SuitConfig.txt"
|
||||||
|
--#include "config\scenenpcdynprop\DynPropConfig.txt" --
|
||||||
|
--#include "config\property\RenownLimitLevels.txt"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
19
server/cross/LogicServer/data/VSPDef.txt
Normal file
19
server/cross/LogicServer/data/VSPDef.txt
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
--定义游戏中加载配置以及脚本的全局常量定义
|
||||||
|
|
||||||
|
--游戏代号
|
||||||
|
GameFlag = DDCQ
|
||||||
|
|
||||||
|
--SPID(运营商ID)定义
|
||||||
|
SPID = 4
|
||||||
|
|
||||||
|
--语言定义
|
||||||
|
LANGUAGE = zh-CN
|
||||||
|
|
||||||
|
--游戏名称定义
|
||||||
|
GAMENAME = 《XHWG2-ARPG1》
|
||||||
|
|
||||||
|
YYKey = 81d0233b957941870e1187d5a4a751ed
|
||||||
|
YYZiZuanKey = 81d0233b957941870e1187d5a4a751ed
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
399
server/cross/LogicServer/data/config/AlmirahSystem/WingCfg.txt
Normal file
399
server/cross/LogicServer/data/config/AlmirahSystem/WingCfg.txt
Normal file
@@ -0,0 +1,399 @@
|
|||||||
|
--#include "..\..\language\LangCode.txt" once
|
||||||
|
|
||||||
|
WingCfg =
|
||||||
|
{
|
||||||
|
|
||||||
|
ClearLv = 4, --当翅膀=4阶后(可配),只要在0点时翅膀幸运值大于0,
|
||||||
|
nMaxRand = 10000, --概率的分母
|
||||||
|
directLv = --翅膀升级时直升下一级几率
|
||||||
|
{
|
||||||
|
--1阶翅膀
|
||||||
|
{
|
||||||
|
{74, 0,}, -- (0~449 , 0%)
|
||||||
|
{105, 1600,}, -- (450~600 , 16%)
|
||||||
|
{315, 10000,}, -- (601~1050 , 100%)
|
||||||
|
},
|
||||||
|
--2阶翅膀
|
||||||
|
{
|
||||||
|
{272, 0,}, -- (0~1799 , 0%)
|
||||||
|
{293, 960,}, -- (1800~2400 , 9.6%)
|
||||||
|
{312, 1076,}, -- (2401~3120 , 10.76%)
|
||||||
|
{390, 1321,}, -- (3121~3510 , 13.21%)
|
||||||
|
{897, 10000,}, -- (3511~3900 , 100%)
|
||||||
|
},
|
||||||
|
--3阶翅膀
|
||||||
|
{
|
||||||
|
{840,0,}, -- (0~6649 , 0%)
|
||||||
|
{900,576,}, -- (6650~7125 , 5.76%)
|
||||||
|
{960,654,}, -- (7126~7600 , 6.54%)
|
||||||
|
{1080,814,}, -- (7601~8550 , 8.14%)
|
||||||
|
{1200,1099,}, -- (8551~8899 , 10.99%)
|
||||||
|
{2640,10000,}, -- (8900~9500 , 100%)
|
||||||
|
},
|
||||||
|
--4阶翅膀
|
||||||
|
{
|
||||||
|
{3360, 0,}, -- (0~14174 , 0%)
|
||||||
|
{3600, 346,}, -- (14175~15188 , 3.46%)
|
||||||
|
{3840, 400,}, -- (15189~16200 , 4%)
|
||||||
|
{4320, 510,}, -- (16201~18225 , 5.1%)
|
||||||
|
{4800, 703,}, -- (18226~19349 , 7.03%)
|
||||||
|
{9840, 10000,}, -- (19350~20250 , 100%)
|
||||||
|
},
|
||||||
|
|
||||||
|
--5阶翅膀
|
||||||
|
{
|
||||||
|
{10080, 0,}, -- (0~26459 , 0%)
|
||||||
|
{10800, 207,}, -- (26460~28350 , 2.07%)
|
||||||
|
{11520, 248,}, -- (28351~30240 , 2.48%)
|
||||||
|
{12960, 328,}, -- (30241~34020 , 3.28%)
|
||||||
|
{14400, 466,}, -- (34021~36539 , 4.66%)
|
||||||
|
{28800, 10000,}, -- (36540~37800 , 100%)
|
||||||
|
},
|
||||||
|
--6阶翅膀
|
||||||
|
{
|
||||||
|
{26880, 0,}, -- (0~47039 , 0%)
|
||||||
|
{28800, 124,}, -- (47040~50400 , 1.24%)
|
||||||
|
{30720, 157,}, -- (50401~53760 , 1.57%)
|
||||||
|
{34560, 218,}, -- (53761~60480 , 2.18%)
|
||||||
|
{38400, 324,}, -- (60481~65519 , 3.24%)
|
||||||
|
{72960, 10000,}, -- (65520~67200 , 100%)
|
||||||
|
},
|
||||||
|
--7阶翅膀
|
||||||
|
{
|
||||||
|
{50400, 0,}, -- (0~79379 , 0%)
|
||||||
|
{54000, 75,}, -- (79380~85050 , 0.75%)
|
||||||
|
{57600, 102,}, -- (85051~90720 , 1.02%)
|
||||||
|
{64800, 153,}, -- (90721~102060, 1.53%)
|
||||||
|
{72000, 238,}, -- (102061~111239, 2.38%)
|
||||||
|
{128160, 10000,}, -- (111240~113400, 100%)
|
||||||
|
},
|
||||||
|
--8阶翅膀
|
||||||
|
{
|
||||||
|
{80640, 0,}, -- (0~135449 , 0%)
|
||||||
|
{86400, 45,}, -- (135450~145125, 0.45%)
|
||||||
|
{92160, 69,}, -- (145126~154800, 0.69%)
|
||||||
|
{103680, 113,}, -- (154801~174150, 1.13%)
|
||||||
|
{115200, 187,}, -- (174151~190799, 1.87%)
|
||||||
|
{193556, 10000,}, -- (190800~193500, 100%)
|
||||||
|
},
|
||||||
|
--9阶翅膀
|
||||||
|
{
|
||||||
|
{123480, 0,}, -- (0~229074 , 0%)
|
||||||
|
{132300, 27,}, -- (229075~245438, 0.27%)
|
||||||
|
{141120, 50,}, -- (245439~261800, 0.50%)
|
||||||
|
{158760, 89,}, -- (261801~294525, 0.89%)
|
||||||
|
{176400, 156,}, -- (294526~323949, 1.56%)
|
||||||
|
{278712, 10000,}, -- (323950~327250, 100%)
|
||||||
|
},
|
||||||
|
--10阶翅膀
|
||||||
|
{
|
||||||
|
{181440, 0,}, -- (0~390389 , 0%)
|
||||||
|
{194400, 16,}, -- (390390~418275, 0.16%)
|
||||||
|
{207360, 38,}, -- (418276~446160, 0.38%)
|
||||||
|
{233280, 75,}, -- (446161~501930, 0.75%)
|
||||||
|
{259200, 138,}, -- (501931~553739, 1.38%)
|
||||||
|
{375840, 10000,}, -- (553740~557700, 100%)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
level = --翅膀信息
|
||||||
|
{
|
||||||
|
{
|
||||||
|
nModelId = 1, --外观id
|
||||||
|
Rolelevel = 40, --可激活等级
|
||||||
|
LuckValue = 315, --升级翅膀最大幸运值值
|
||||||
|
LuckRand = {12,18}, --单次获得随机幸运值范围
|
||||||
|
Yb = 25, --元宝替代
|
||||||
|
iconId=1,
|
||||||
|
wingsName = OldLang.Item.almirahDesc100,
|
||||||
|
desc= OldLang.Item.almirahComment100,
|
||||||
|
strNotice = OldLang.Item.almirahNotice001,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
nModelId = 2, --外观id
|
||||||
|
Rolelevel = 50, --可激活等级
|
||||||
|
LuckValue = 897, --升级翅膀最大幸运值值
|
||||||
|
LuckRand = {24,36}, --单次获得随机幸运值范围
|
||||||
|
Yb = 25, --元宝替代
|
||||||
|
iconId=1,
|
||||||
|
wingsName = OldLang.Item.almirahDesc101,
|
||||||
|
desc= OldLang.Item.almirahComment101,
|
||||||
|
strNotice = OldLang.Item.almirahNotice002,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
nModelId = 3, --外观id
|
||||||
|
Rolelevel = 60, --可激活等级
|
||||||
|
LuckValue = 2640, --升级翅膀最大幸运值值
|
||||||
|
LuckRand = {48,72}, --单次获得随机幸运值范围
|
||||||
|
Yb = 25, --元宝替代
|
||||||
|
iconId=1,
|
||||||
|
wingsName = OldLang.Item.almirahDesc102,
|
||||||
|
desc= OldLang.Item.almirahComment102,
|
||||||
|
strNotice = OldLang.Item.almirahNotice003,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
nModelId = 4, --外观id
|
||||||
|
Rolelevel = 70, --可激活等级
|
||||||
|
LuckValue = 9840, --升级翅膀最大幸运值值
|
||||||
|
LuckRand = {96,144}, --单次获得随机幸运值范围
|
||||||
|
Yb = 25, --元宝替代
|
||||||
|
iconId=1,
|
||||||
|
wingsName = OldLang.Item.almirahDesc103,
|
||||||
|
desc= OldLang.Item.almirahComment103,
|
||||||
|
strNotice = OldLang.Item.almirahNotice004,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
nModelId = 5, --外观id
|
||||||
|
Rolelevel = 80, --可激活等级
|
||||||
|
LuckValue = 28800, --升级翅膀最大幸运值值
|
||||||
|
LuckRand = {144,216}, --单次获得随机幸运值范围
|
||||||
|
Yb = 25, --元宝替代
|
||||||
|
iconId=1,
|
||||||
|
wingsName = OldLang.Item.almirahDesc104,
|
||||||
|
desc= OldLang.Item.almirahComment104,
|
||||||
|
strNotice = OldLang.Item.almirahNotice005,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
nModelId = 6, --外观id
|
||||||
|
Rolelevel = 90, --可激活等级
|
||||||
|
LuckValue = 72960, --升级翅膀最大幸运值值
|
||||||
|
LuckRand = {192,288}, --单次获得随机幸运值范围
|
||||||
|
Yb = 25, --元宝替代
|
||||||
|
iconId=1,
|
||||||
|
wingsName = OldLang.Item.almirahDesc105,
|
||||||
|
desc= OldLang.Item.almirahComment105,
|
||||||
|
strNotice = OldLang.Item.almirahNotice006,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
nModelId = 7, --外观id
|
||||||
|
Rolelevel = 100, --可激活等级
|
||||||
|
LuckValue = 128160, --升级翅膀最大幸运值值
|
||||||
|
LuckRand = {240,360}, --单次获得随机幸运值范围
|
||||||
|
Yb = 25, --元宝替代
|
||||||
|
iconId=1,
|
||||||
|
wingsName = OldLang.Item.almirahDesc106,
|
||||||
|
desc= OldLang.Item.almirahComment106,
|
||||||
|
strNotice = OldLang.Item.almirahNotice007,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
nModelId = 8, --外观id
|
||||||
|
Rolelevel = 110, --可激活等级
|
||||||
|
LuckValue = 193556, --升级翅膀最大幸运值值
|
||||||
|
LuckRand = {288,432}, --单次获得随机幸运值范围
|
||||||
|
Yb = 25, --元宝替代
|
||||||
|
iconId=1,
|
||||||
|
wingsName = OldLang.Item.almirahDesc107,
|
||||||
|
desc= OldLang.Item.almirahComment107,
|
||||||
|
strNotice = OldLang.Item.almirahNotice008,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
nModelId = 9, --外观id
|
||||||
|
Rolelevel = 120, --可激活等级
|
||||||
|
LuckValue = 278712, --升级翅膀最大幸运值值
|
||||||
|
LuckRand = {336,504}, --单次获得随机幸运值范围
|
||||||
|
Yb = 25, --元宝替代
|
||||||
|
iconId=1,
|
||||||
|
wingsName = OldLang.Item.almirahDesc108,
|
||||||
|
desc= OldLang.Item.almirahComment108,
|
||||||
|
strNotice = OldLang.Item.almirahNotice009,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
nModelId = 10, --外观id
|
||||||
|
Rolelevel = 130, --可激活等级
|
||||||
|
LuckValue = 375840, --升级翅膀最大幸运值值
|
||||||
|
LuckRand = {384,576}, --单次获得随机幸运值范围
|
||||||
|
Yb = 25, --元宝替代
|
||||||
|
iconId=1,
|
||||||
|
wingsName = OldLang.Item.almirahDesc109,
|
||||||
|
desc= OldLang.Item.almirahComment109,
|
||||||
|
strNotice = OldLang.Item.almirahNotice010,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
consumes = --消耗【如果有同时有道具+货币消耗,货币消耗必须排在道具消耗的下方】
|
||||||
|
{
|
||||||
|
--一阶的消耗
|
||||||
|
{
|
||||||
|
{type = 0, id = 1102, count = 3,},
|
||||||
|
},
|
||||||
|
--二阶的消耗
|
||||||
|
{
|
||||||
|
{type = 0, id = 1102, count = 6,},
|
||||||
|
},
|
||||||
|
--三阶的消耗
|
||||||
|
{
|
||||||
|
{type = 0, id = 1102, count = 12,},
|
||||||
|
},
|
||||||
|
--四阶的消耗
|
||||||
|
{
|
||||||
|
{type = 0, id = 1102, count = 24,},
|
||||||
|
},
|
||||||
|
--五阶的消耗
|
||||||
|
{
|
||||||
|
{type = 0, id = 1102, count = 36,},
|
||||||
|
},
|
||||||
|
--六阶的消耗
|
||||||
|
{
|
||||||
|
{type = 0, id = 1102, count = 48,},
|
||||||
|
},
|
||||||
|
--七阶的消耗
|
||||||
|
{
|
||||||
|
{type = 0, id = 1102, count = 60,},
|
||||||
|
},
|
||||||
|
--八阶的消耗
|
||||||
|
{
|
||||||
|
{type = 0, id = 1102, count = 72,},
|
||||||
|
},
|
||||||
|
--九阶的消耗
|
||||||
|
{
|
||||||
|
{type = 0, id = 1102, count = 84,},
|
||||||
|
},
|
||||||
|
--十阶的消耗
|
||||||
|
{
|
||||||
|
{type = 0, id = 1102, count = 96,},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
basePropConfig = --属性
|
||||||
|
{
|
||||||
|
--1阶的属性
|
||||||
|
{
|
||||||
|
{ type = 9, addmode=0, value = 23, },--最小物理攻击
|
||||||
|
{ type = 11, addmode=0, value = 53, },--最大物理攻击
|
||||||
|
{ type = 13, addmode=0, value = 23, },--最小魔法攻击
|
||||||
|
{ type = 15, addmode=0, value = 53, },--最大魔法攻击
|
||||||
|
{ type = 17, addmode=0, value = 23, },--最小道术攻击
|
||||||
|
{ type = 19, addmode=0, value = 53, },--最大道术攻击
|
||||||
|
{ type = 21, addmode=0, value = 12, },--最小物理防御
|
||||||
|
{ type = 23, addmode=0, value = 20, },--最大物理防御
|
||||||
|
{ type = 25, addmode=0, value = 12, },--最小魔法防御
|
||||||
|
{ type = 27, addmode=0, value = 20, },--最大魔法防御
|
||||||
|
{ type = 5, addmode=0, value = 399, },--生命值
|
||||||
|
},
|
||||||
|
--2阶的属性
|
||||||
|
{
|
||||||
|
{ type = 9, addmode=0, value = 41, },--最小物理攻击
|
||||||
|
{ type = 11, addmode=0, value = 92, },--最大物理攻击
|
||||||
|
{ type = 13, addmode=0, value = 41, },--最小魔法攻击
|
||||||
|
{ type = 15, addmode=0, value = 92, },--最大魔法攻击
|
||||||
|
{ type = 17, addmode=0, value = 41, },--最小道术攻击
|
||||||
|
{ type = 19, addmode=0, value = 92, },--最大道术攻击
|
||||||
|
{ type = 21, addmode=0, value = 21, },--最小物理防御
|
||||||
|
{ type = 23, addmode=0, value = 35, },--最大物理防御
|
||||||
|
{ type = 25, addmode=0, value = 21, },--最小魔法防御
|
||||||
|
{ type = 27, addmode=0, value = 35, },--最大魔法防御
|
||||||
|
{ type = 5, addmode=0, value = 699, },--生命值
|
||||||
|
},
|
||||||
|
--3阶的属性
|
||||||
|
{
|
||||||
|
{ type = 9, addmode=0, value = 70, },--最小物理攻击
|
||||||
|
{ type = 11, addmode=0, value = 156, },--最大物理攻击
|
||||||
|
{ type = 13, addmode=0, value = 70, },--最小魔法攻击
|
||||||
|
{ type = 15, addmode=0, value = 156, },--最大魔法攻击
|
||||||
|
{ type = 17, addmode=0, value = 70, },--最小道术攻击
|
||||||
|
{ type = 19, addmode=0, value = 156, },--最大道术攻击
|
||||||
|
{ type = 21, addmode=0, value = 36, },--最小物理防御
|
||||||
|
{ type = 23, addmode=0, value = 59, },--最大物理防御
|
||||||
|
{ type = 25, addmode=0, value = 36, },--最小魔法防御
|
||||||
|
{ type = 27, addmode=0, value = 59, },--最大魔法防御
|
||||||
|
{ type = 5, addmode=0, value = 1189, },--生命值
|
||||||
|
},
|
||||||
|
--4阶的属性
|
||||||
|
{
|
||||||
|
{ type = 9, addmode=0, value = 116, },--最小物理攻击
|
||||||
|
{ type = 11, addmode=0, value = 258, },--最大物理攻击
|
||||||
|
{ type = 13, addmode=0, value = 116, },--最小魔法攻击
|
||||||
|
{ type = 15, addmode=0, value = 258, },--最大魔法攻击
|
||||||
|
{ type = 17, addmode=0, value = 116, },--最小道术攻击
|
||||||
|
{ type = 19, addmode=0, value = 258, },--最大道术攻击
|
||||||
|
{ type = 21, addmode=0, value = 59, },--最小物理防御
|
||||||
|
{ type = 23, addmode=0, value = 98, },--最大物理防御
|
||||||
|
{ type = 25, addmode=0, value = 59, },--最小魔法防御
|
||||||
|
{ type = 27, addmode=0, value = 98, },--最大魔法防御
|
||||||
|
{ type = 5, addmode=0, value = 1962, },--生命值
|
||||||
|
},
|
||||||
|
--5阶的属性
|
||||||
|
{
|
||||||
|
{ type = 9, addmode=0, value = 185, },--最小物理攻击
|
||||||
|
{ type = 11, addmode=0, value = 412, },--最大物理攻击
|
||||||
|
{ type = 13, addmode=0, value = 185, },--最小魔法攻击
|
||||||
|
{ type = 15, addmode=0, value = 412, },--最大魔法攻击
|
||||||
|
{ type = 17, addmode=0, value = 185, },--最小道术攻击
|
||||||
|
{ type = 19, addmode=0, value = 412, },--最大道术攻击
|
||||||
|
{ type = 21, addmode=0, value = 94, },--最小物理防御
|
||||||
|
{ type = 23, addmode=0, value = 157, },--最大物理防御
|
||||||
|
{ type = 25, addmode=0, value = 94, },--最小魔法防御
|
||||||
|
{ type = 27, addmode=0, value = 157, },--最大魔法防御
|
||||||
|
{ type = 5, addmode=0, value = 3139, },--生命值
|
||||||
|
},
|
||||||
|
--6阶的属性
|
||||||
|
{
|
||||||
|
{ type = 9, addmode=0, value = 287, },--最小物理攻击
|
||||||
|
{ type = 11, addmode=0, value = 639, },--最大物理攻击
|
||||||
|
{ type = 13, addmode=0, value = 287, },--最小魔法攻击
|
||||||
|
{ type = 15, addmode=0, value = 639, },--最大魔法攻击
|
||||||
|
{ type = 17, addmode=0, value = 287, },--最小道术攻击
|
||||||
|
{ type = 19, addmode=0, value = 639, },--最大道术攻击
|
||||||
|
{ type = 21, addmode=0, value = 146, },--最小物理防御
|
||||||
|
{ type = 23, addmode=0, value = 243, },--最大物理防御
|
||||||
|
{ type = 25, addmode=0, value = 146, },--最小魔法防御
|
||||||
|
{ type = 27, addmode=0, value = 243, },--最大魔法防御
|
||||||
|
{ type = 5, addmode=0, value = 4865, },--生命值
|
||||||
|
},
|
||||||
|
--7阶的属性
|
||||||
|
{
|
||||||
|
{ type = 9, addmode=0, value = 431, },--最小物理攻击
|
||||||
|
{ type = 11, addmode=0, value = 958, },--最大物理攻击
|
||||||
|
{ type = 13, addmode=0, value = 431, },--最小魔法攻击
|
||||||
|
{ type = 15, addmode=0, value = 958, },--最大魔法攻击
|
||||||
|
{ type = 17, addmode=0, value = 431, },--最小道术攻击
|
||||||
|
{ type = 19, addmode=0, value = 958, },--最大道术攻击
|
||||||
|
{ type = 21, addmode=0, value = 219, },--最小物理防御
|
||||||
|
{ type = 23, addmode=0, value = 365, },--最大物理防御
|
||||||
|
{ type = 25, addmode=0, value = 219, },--最小魔法防御
|
||||||
|
{ type = 27, addmode=0, value = 365, },--最大魔法防御
|
||||||
|
{ type = 5, addmode=0, value = 7298, },--生命值
|
||||||
|
},
|
||||||
|
--8阶的属性
|
||||||
|
{
|
||||||
|
{ type = 9, addmode=0, value = 625, },--最小物理攻击
|
||||||
|
{ type = 11, addmode=0, value = 1389, },--最大物理攻击
|
||||||
|
{ type = 13, addmode=0, value = 625, },--最小魔法攻击
|
||||||
|
{ type = 15, addmode=0, value = 1389, },--最大魔法攻击
|
||||||
|
{ type = 17, addmode=0, value = 625, },--最小道术攻击
|
||||||
|
{ type = 19, addmode=0, value = 1389, },--最大道术攻击
|
||||||
|
{ type = 21, addmode=0, value = 317, },--最小物理防御
|
||||||
|
{ type = 23, addmode=0, value = 529, },--最大物理防御
|
||||||
|
{ type = 25, addmode=0, value = 317, },--最小魔法防御
|
||||||
|
{ type = 27, addmode=0, value = 529, },--最大魔法防御
|
||||||
|
{ type = 5, addmode=0, value = 10582, },--生命值
|
||||||
|
|
||||||
|
},
|
||||||
|
--9阶的属性
|
||||||
|
{
|
||||||
|
{ type = 9, addmode=0, value = 875, },--最小物理攻击
|
||||||
|
{ type = 11, addmode=0, value = 1944, },--最大物理攻击
|
||||||
|
{ type = 13, addmode=0, value = 875, },--最小魔法攻击
|
||||||
|
{ type = 15, addmode=0, value = 1944, },--最大魔法攻击
|
||||||
|
{ type = 17, addmode=0, value = 875, },--最小道术攻击
|
||||||
|
{ type = 19, addmode=0, value = 1944, },--最大道术攻击
|
||||||
|
{ type = 21, addmode=0, value = 444, },--最小物理防御
|
||||||
|
{ type = 23, addmode=0, value = 741, },--最大物理防御
|
||||||
|
{ type = 25, addmode=0, value = 444, },--最小魔法防御
|
||||||
|
{ type = 27, addmode=0, value = 741, },--最大魔法防御
|
||||||
|
{ type = 5, addmode=0, value = 14815, },--生命值
|
||||||
|
},
|
||||||
|
--10阶的属性
|
||||||
|
{
|
||||||
|
{ type = 9, addmode=0, value = 1181, },--最小物理攻击
|
||||||
|
{ type = 11, addmode=0, value = 2625, },--最大物理攻击
|
||||||
|
{ type = 13, addmode=0, value = 1181, },--最小魔法攻击
|
||||||
|
{ type = 15, addmode=0, value = 2625, },--最大魔法攻击
|
||||||
|
{ type = 17, addmode=0, value = 1181, },--最小道术攻击
|
||||||
|
{ type = 19, addmode=0, value = 2625, },--最大道术攻击
|
||||||
|
{ type = 21, addmode=0, value = 600, },--最小物理防御
|
||||||
|
{ type = 23, addmode=0, value = 1000, },--最大物理防御
|
||||||
|
{ type = 25, addmode=0, value = 600, },--最小魔法防御
|
||||||
|
{ type = 27, addmode=0, value = 1000, },--最大魔法防御
|
||||||
|
{ type = 5, addmode=0, value = 20000, },--生命值
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
83
server/cross/LogicServer/data/config/BagConfigRemain.config
Normal file
83
server/cross/LogicServer/data/config/BagConfigRemain.config
Normal file
@@ -0,0 +1,83 @@
|
|||||||
|
--Q-全局配置.xlsx 剩余背包
|
||||||
|
BagRemainConfig={
|
||||||
|
[0] = {
|
||||||
|
idx = 0,
|
||||||
|
bagremain = {0,16,16},
|
||||||
|
},
|
||||||
|
[1] = {
|
||||||
|
idx = 1,
|
||||||
|
bagremain = {1,11,11},
|
||||||
|
},
|
||||||
|
[2] = {
|
||||||
|
idx = 2,
|
||||||
|
bagremain = {1,11,11},
|
||||||
|
},
|
||||||
|
[3] = {
|
||||||
|
idx = 3,
|
||||||
|
bagremain = {1,11,11},
|
||||||
|
},
|
||||||
|
[4] = {
|
||||||
|
idx = 4,
|
||||||
|
bagremain = {0,16,16},
|
||||||
|
},
|
||||||
|
[5] = {
|
||||||
|
idx = 5,
|
||||||
|
bagremain = {0,5,5},
|
||||||
|
},
|
||||||
|
[6] = {
|
||||||
|
idx = 6,
|
||||||
|
bagremain = {0,16,16},
|
||||||
|
},
|
||||||
|
[7] = {
|
||||||
|
idx = 7,
|
||||||
|
bagremain = {0,16,16},
|
||||||
|
},
|
||||||
|
[8] = {
|
||||||
|
idx = 8,
|
||||||
|
bagremain = {0,11,10},
|
||||||
|
},
|
||||||
|
[9] = {
|
||||||
|
idx = 9,
|
||||||
|
bagremain = {0,20,10},
|
||||||
|
},
|
||||||
|
[10] = {
|
||||||
|
idx = 10,
|
||||||
|
bagremain = {0,16,16},
|
||||||
|
},
|
||||||
|
[11] = {
|
||||||
|
idx = 11,
|
||||||
|
bagremain = {0,10,11},
|
||||||
|
},
|
||||||
|
[12] = {
|
||||||
|
idx = 12,
|
||||||
|
bagremain = {0,11,11},
|
||||||
|
},
|
||||||
|
[13] = {
|
||||||
|
idx = 13,
|
||||||
|
bagremain = {0,10,11},
|
||||||
|
},
|
||||||
|
[14] = {
|
||||||
|
idx = 14,
|
||||||
|
bagremain = {0,16,16},
|
||||||
|
},
|
||||||
|
[15] = {
|
||||||
|
idx = 15,
|
||||||
|
bagremain = {0,16,16},
|
||||||
|
},
|
||||||
|
[16] = {
|
||||||
|
idx = 16,
|
||||||
|
bagremain = {0,16,16},
|
||||||
|
},
|
||||||
|
[17] = {
|
||||||
|
idx = 17,
|
||||||
|
bagremain = {0,12,12},
|
||||||
|
},
|
||||||
|
[18] = {
|
||||||
|
idx = 18,
|
||||||
|
bagremain = {1,11,11},
|
||||||
|
},
|
||||||
|
[19] = {
|
||||||
|
idx = 19,
|
||||||
|
bagremain = {0,25,25},
|
||||||
|
},
|
||||||
|
}
|
||||||
19
server/cross/LogicServer/data/config/ChangeName.config
Normal file
19
server/cross/LogicServer/data/config/ChangeName.config
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
--Q-全局配置.xlsx 名字索引
|
||||||
|
ChangeNameConfig={
|
||||||
|
[1] = {
|
||||||
|
idx = 1,
|
||||||
|
name = "大乱斗",
|
||||||
|
},
|
||||||
|
[2] = {
|
||||||
|
idx = 2,
|
||||||
|
name = "大乱斗2",
|
||||||
|
},
|
||||||
|
[3] = {
|
||||||
|
idx = 3,
|
||||||
|
name = "33333",
|
||||||
|
},
|
||||||
|
[4] = {
|
||||||
|
idx = 4,
|
||||||
|
name = "44444",
|
||||||
|
},
|
||||||
|
}
|
||||||
22
server/cross/LogicServer/data/config/ChatSystemConfig.config
Normal file
22
server/cross/LogicServer/data/config/ChatSystemConfig.config
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
--AA-聊天.xlsx 聊天
|
||||||
|
ChatSystemConfig={
|
||||||
|
secretChannelChatCD = 1,
|
||||||
|
nearChannelChatCD = 5,
|
||||||
|
guideChannelChatCD = 2,
|
||||||
|
teamChannelChatCD = 2,
|
||||||
|
worldChannelChatCD = 10,
|
||||||
|
chatLevelLmt = {{channel=0,level=60,recharge=60},{channel=1,level=60,recharge=60},{channel=2,level=60,recharge=60},{channel=3,level=60,recharge=60},{channel=4,level=48,recharge=60}},
|
||||||
|
sp37wLevelLmt = {35, 35, 35, 10, 10},
|
||||||
|
nChatSaveLogFlag = 0,
|
||||||
|
nAutoSilencing = 3,
|
||||||
|
nAutoSilencingSecond = 1*60*60,
|
||||||
|
nAutoSilenceLevel = 10,
|
||||||
|
nSameChatSliencingCount = 10,
|
||||||
|
nSameChatSliencingSecond = 1*60*60,
|
||||||
|
nAutoSilenceSameIpShutup = 3,
|
||||||
|
rechargeopen = {0, 0, 0, 0, 0}, -- 1, 1, 1, 1, 1
|
||||||
|
showCount = 200,
|
||||||
|
vipchat = {-1,-1,-1,-1,-1,-1,-1,-1}, -- 3,20,50,80,100,130,150,180
|
||||||
|
counter = 45,
|
||||||
|
nDisplay = 30,
|
||||||
|
}
|
||||||
159
server/cross/LogicServer/data/config/Compose/Compose.config
Normal file
159
server/cross/LogicServer/data/config/Compose/Compose.config
Normal file
@@ -0,0 +1,159 @@
|
|||||||
|
--D-閿婚€犲悎鎴愯〃.xlsx 鍚堟垚
|
||||||
|
导出文件头
|
||||||
|
[1] = {
|
||||||
|
[1] = {
|
||||||
|
id = 1,
|
||||||
|
index = 1,
|
||||||
|
name = "榄旈緳瑁呭<E79181>",
|
||||||
|
levelconds = 40,
|
||||||
|
rebornconds = 0,
|
||||||
|
dayconds = 3,
|
||||||
|
},
|
||||||
|
[2] = {
|
||||||
|
id = 1,
|
||||||
|
index = 2,
|
||||||
|
name = "榄旈緳瑁呭<E79181>",
|
||||||
|
levelconds = 41,
|
||||||
|
rebornconds = 1,
|
||||||
|
dayconds = 4,
|
||||||
|
},
|
||||||
|
[3] = {
|
||||||
|
id = 1,
|
||||||
|
index = 3,
|
||||||
|
name = "榄旈緳瑁呭<E79181>",
|
||||||
|
levelconds = 42,
|
||||||
|
rebornconds = 2,
|
||||||
|
dayconds = 5,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[2] = {
|
||||||
|
[1] = {
|
||||||
|
id = 2,
|
||||||
|
index = 1,
|
||||||
|
name = "榄旈緳瑁呭<E79181>",
|
||||||
|
levelconds = 43,
|
||||||
|
rebornconds = 3,
|
||||||
|
dayconds = 6,
|
||||||
|
},
|
||||||
|
[2] = {
|
||||||
|
id = 2,
|
||||||
|
index = 2,
|
||||||
|
name = "榄旈緳瑁呭<E79181>",
|
||||||
|
levelconds = 44,
|
||||||
|
rebornconds = 4,
|
||||||
|
dayconds = 7,
|
||||||
|
},
|
||||||
|
[3] = {
|
||||||
|
id = 2,
|
||||||
|
index = 3,
|
||||||
|
name = "榄旈緳瑁呭<E79181>",
|
||||||
|
levelconds = 45,
|
||||||
|
rebornconds = 5,
|
||||||
|
dayconds = 8,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[3] = {
|
||||||
|
[1] = {
|
||||||
|
id = 3,
|
||||||
|
index = 1,
|
||||||
|
name = "榄旈緳瑁呭<E79181>",
|
||||||
|
levelconds = 46,
|
||||||
|
rebornconds = 6,
|
||||||
|
dayconds = 9,
|
||||||
|
},
|
||||||
|
[2] = {
|
||||||
|
id = 3,
|
||||||
|
index = 2,
|
||||||
|
name = "榄旈緳瑁呭<E79181>",
|
||||||
|
levelconds = 47,
|
||||||
|
rebornconds = 7,
|
||||||
|
dayconds = 10,
|
||||||
|
},
|
||||||
|
[3] = {
|
||||||
|
id = 3,
|
||||||
|
index = 3,
|
||||||
|
name = "榄旈緳瑁呭<E79181>",
|
||||||
|
levelconds = 48,
|
||||||
|
rebornconds = 8,
|
||||||
|
dayconds = 11,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[4] = {
|
||||||
|
[1] = {
|
||||||
|
id = 4,
|
||||||
|
index = 1,
|
||||||
|
name = "榄旈緳瑁呭<E79181>",
|
||||||
|
levelconds = 49,
|
||||||
|
rebornconds = 9,
|
||||||
|
dayconds = 12,
|
||||||
|
},
|
||||||
|
[2] = {
|
||||||
|
id = 4,
|
||||||
|
index = 2,
|
||||||
|
name = "榄旈緳瑁呭<E79181>",
|
||||||
|
levelconds = 50,
|
||||||
|
rebornconds = 10,
|
||||||
|
dayconds = 13,
|
||||||
|
},
|
||||||
|
[3] = {
|
||||||
|
id = 4,
|
||||||
|
index = 3,
|
||||||
|
name = "榄旈緳瑁呭<E79181>",
|
||||||
|
levelconds = 51,
|
||||||
|
rebornconds = 11,
|
||||||
|
dayconds = 14,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[5] = {
|
||||||
|
[1] = {
|
||||||
|
id = 5,
|
||||||
|
index = 1,
|
||||||
|
name = "榄旈緳瑁呭<E79181>",
|
||||||
|
levelconds = 52,
|
||||||
|
rebornconds = 12,
|
||||||
|
dayconds = 15,
|
||||||
|
},
|
||||||
|
[2] = {
|
||||||
|
id = 5,
|
||||||
|
index = 2,
|
||||||
|
name = "榄旈緳瑁呭<E79181>",
|
||||||
|
levelconds = 53,
|
||||||
|
rebornconds = 13,
|
||||||
|
dayconds = 16,
|
||||||
|
},
|
||||||
|
[3] = {
|
||||||
|
id = 5,
|
||||||
|
index = 3,
|
||||||
|
name = "榄旈緳瑁呭<E79181>",
|
||||||
|
levelconds = 54,
|
||||||
|
rebornconds = 14,
|
||||||
|
dayconds = 17,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[6] = {
|
||||||
|
[1] = {
|
||||||
|
id = 6,
|
||||||
|
index = 1,
|
||||||
|
name = "榄旈緳瑁呭<E79181>",
|
||||||
|
levelconds = 55,
|
||||||
|
rebornconds = 15,
|
||||||
|
dayconds = 18,
|
||||||
|
},
|
||||||
|
[2] = {
|
||||||
|
id = 6,
|
||||||
|
index = 2,
|
||||||
|
name = "榄旈緳瑁呭<E79181>",
|
||||||
|
levelconds = 56,
|
||||||
|
rebornconds = 16,
|
||||||
|
dayconds = 19,
|
||||||
|
},
|
||||||
|
[3] = {
|
||||||
|
id = 6,
|
||||||
|
index = 3,
|
||||||
|
name = "榄旈緳瑁呭<E79181>",
|
||||||
|
levelconds = 57,
|
||||||
|
rebornconds = 17,
|
||||||
|
dayconds = 20,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
导出文件尾
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
--D-锻造合成表.xlsx 合成公式
|
||||||
|
ItemComposeConfig={
|
||||||
|
|
||||||
|
[1] = {
|
||||||
|
Eid = 1,
|
||||||
|
id = 140,
|
||||||
|
count = 1,
|
||||||
|
table = {{id=137,type=0,count=1},
|
||||||
|
{id=253,type=0,count=4,},
|
||||||
|
{id=0,type=2,count=300000}},
|
||||||
|
level = 35,
|
||||||
|
circle = 0,
|
||||||
|
openserverday = 0,
|
||||||
|
show = {1,1},
|
||||||
|
},
|
||||||
|
}
|
||||||
52187
server/cross/LogicServer/data/config/Cross/CrossServer.config
Normal file
52187
server/cross/LogicServer/data/config/Cross/CrossServer.config
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,12 @@
|
|||||||
|
--AA-跨服本服信息.xlsx 跨服原服指向
|
||||||
|
CrossSourceServerConfig={
|
||||||
|
[1] = {
|
||||||
|
kfid = 1,
|
||||||
|
openday = {1,-1},
|
||||||
|
GateAddr = "100.88.157.105",
|
||||||
|
GatePort = 10001,
|
||||||
|
CrossIP = "127.0.0.1",
|
||||||
|
CrossPort = 10002,
|
||||||
|
map = {id=150,range={53,36,3,3,}},
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
--AA-跨服本服信息.xlsx 渠道标识
|
||||||
|
LocalServerConfig={
|
||||||
|
localId = 1,
|
||||||
|
}
|
||||||
@@ -0,0 +1,98 @@
|
|||||||
|
--M-每日活跃.xlsx 活跃任务
|
||||||
|
DailyActivityConfig={
|
||||||
|
[1] = {
|
||||||
|
[1] = {
|
||||||
|
tasktype = 1,
|
||||||
|
taskID = 1,
|
||||||
|
name = "完成1次膜拜",
|
||||||
|
type = 17,
|
||||||
|
subtype = 5,
|
||||||
|
ValueType = 1,
|
||||||
|
value = 1,
|
||||||
|
GiftTable = {{type=28,id=28,count=10}},
|
||||||
|
},
|
||||||
|
[2] = {
|
||||||
|
tasktype = 1,
|
||||||
|
taskID = 2,
|
||||||
|
name = "击败500个怪物",
|
||||||
|
type = 7,
|
||||||
|
subtype = 1,
|
||||||
|
ValueType = 1,
|
||||||
|
value = 500,
|
||||||
|
GiftTable = {{type=28,id=28,count=10}},
|
||||||
|
},
|
||||||
|
[3] = {
|
||||||
|
tasktype = 1,
|
||||||
|
taskID = 3,
|
||||||
|
name = "完成1次夺宝",
|
||||||
|
type = 17,
|
||||||
|
subtype = 7,
|
||||||
|
ValueType = 1,
|
||||||
|
value = 1,
|
||||||
|
GiftTable = {{type=28,id=28,count=10}},
|
||||||
|
},
|
||||||
|
[4] = {
|
||||||
|
tasktype = 1,
|
||||||
|
taskID = 4,
|
||||||
|
name = "使用300瓶祝福油",
|
||||||
|
type = 21,
|
||||||
|
subtype = 269,
|
||||||
|
ValueType = 1,
|
||||||
|
value = 300,
|
||||||
|
GiftTable = {{type=28,id=28,count=10}},
|
||||||
|
},
|
||||||
|
[5] = {
|
||||||
|
tasktype = 1,
|
||||||
|
taskID = 5,
|
||||||
|
name = "击杀1次妖兽",
|
||||||
|
type = 7,
|
||||||
|
subtype = 3,
|
||||||
|
ValueType = 1,
|
||||||
|
value = 1,
|
||||||
|
GiftTable = {{type=28,id=28,count=10}},
|
||||||
|
},
|
||||||
|
[6] = {
|
||||||
|
tasktype = 1,
|
||||||
|
taskID = 6,
|
||||||
|
name = "击杀2次野外或重装BOSS",
|
||||||
|
type = 7,
|
||||||
|
subtype = 4,
|
||||||
|
ValueType = 1,
|
||||||
|
value = 2,
|
||||||
|
GiftTable = {{type=28,id=28,count=10}},
|
||||||
|
},
|
||||||
|
[7] = {
|
||||||
|
tasktype = 1,
|
||||||
|
taskID = 7,
|
||||||
|
name = "捐献8张炎之星王凭证",
|
||||||
|
type = 30,
|
||||||
|
subtype = 841,
|
||||||
|
ValueType = 1,
|
||||||
|
value = 1,
|
||||||
|
material = {{type=0,id=841,count=8}},
|
||||||
|
GiftTable = {{type=28,id=28,count=10}},
|
||||||
|
},
|
||||||
|
[8] = {
|
||||||
|
tasktype = 1,
|
||||||
|
taskID = 8,
|
||||||
|
name = "捐献300张炎之战神凭证",
|
||||||
|
type = 30,
|
||||||
|
subtype = 838,
|
||||||
|
ValueType = 1,
|
||||||
|
value = 1,
|
||||||
|
material = {{type=0,id=838,count=300}},
|
||||||
|
GiftTable = {{type=28,id=28,count=10}},
|
||||||
|
},
|
||||||
|
[9] = {
|
||||||
|
tasktype = 1,
|
||||||
|
taskID = 9,
|
||||||
|
name = "捐献3张王者凭证",
|
||||||
|
type = 30,
|
||||||
|
subtype = 842,
|
||||||
|
ValueType = 1,
|
||||||
|
value = 1,
|
||||||
|
material = {{type=0,id=842,count=3}},
|
||||||
|
GiftTable = {{type=28,id=28,count=10}},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user