Separate log sql db

iubantot

New member
Messages
10
Points
0
Github
iubantot
So i want to separate the logs sql db from the main sql db but i cant figure out how to do so

 
So i want to separate the logs sql db from the main sql db but i cant figure out how to do so
you can setting on inter-server.conf

and add this
 

Code:
log: {
		sql_connection: {
			db_hostname: "127.0.0.1"
			db_port: 3306
			db_username: "ragnarok"
			db_password: "ragnarok"
			db_database: "herculeslog"
		}
	}
 
Back
Top