View Single Post
  #5  
Old 09-18-2020, 05:04 PM
3sp87s5
Fire Beetle
 
Join Date: Feb 2010
Posts: 11
Default

I've been asked in PM if I found a solution to my issue which I did. The following are my two config files that have been setup. Keep in mind, the config files work for me with appropriate firewall rules setup....

eqemu_config.json

--------------------------------

{
"server" : {
"chatserver" : {
"host" : "192.168.50.103",
"port" : "7778"
},
"database" : {
"db" : "everquest",
"host" : "127.0.0.1",
"password" : "password",
"port" : "3306",
"username" : "username"
},
"mailserver" : {
"host" : "192.168.50.103",
"port" : "7778"
},
"qsdatabase" : {
"db" : "everquest",
"host" : "127.0.0.1",
"password" : "password",
"port" : "3306",
"username" : "username"
},
"webinterface" : {
"port" : "9081"
},
"world" : {
"address" : "wan(public) ip address here",
"local_address" : "192.168.50.103",
"http" : {
"enabled" : "false",
"mimefile" : "mime.types",
"port" : "9080"
},
"key" : "your key here",
"loginserver1" : {
"account" : "",
"host" : "login.eqemulator.net",
"legacy" : "1",
"password" : "",
"port" : "5998"
},
"loginserver2" : {
"account" : "",
"host" : "192.168.50.103",
"legacy" : "0",
"password" : "",
"port" : "5998"
},
"longname" : "eq server name",
"shortname" : "eq server name",
"tcp" : {
"ip" : "127.0.0.1",
"port" : "9001"
},
"telnet" : {
"enabled" : "true",
"ip" : "0.0.0.0",
"port" : "9000"
}
},
"zones" : {
"defaultstatus" : "0",
"ports" : {
"high" : "7400",
"low" : "7000"
}
}
}

-------------------------------




login.json

--------------------------------------

{
"account" : {
"auto_create_accounts" : true
},
"client_configuration" : {
"sod_opcodes" : "login_opcodes_sod.conf",
"sod_port" : 5999,
"titanium_opcodes" : "login_opcodes.conf",
"titanium_port" : 5998
},
"database" : {
"db" : "everquest",
"host" : "127.0.0.1",
"password" : "password",
"port" : "3306",
"user" : "user"
},
"options" : {
"listen_port" : 5998,
"local_network" : "192.168.50."
},
"logging" : {
"dump_packets_in" : false,
"dump_packets_out" : false,
"trace" : false,
"world_trace" : false
},
"security" : {
"allow_password_login" : true,
"allow_token_login" : true,
"mode" : 14
},
"web_api" : {
"enabled" : true,
"port" : 6000
},
"worldservers" : {
"reject_duplicate_servers" : false,
"unregistered_allowed" : true
}
}
-----------------------------------


When starting the server, assuming you aren't root, go ahead and run

sudo ./server_start_with_login.sh

That *should work, or at least it did for me.
Reply With Quote