• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

How to set up Aura Kingdom Server on CentOS

Junior Spellweaver
Joined
Aug 6, 2015
Messages
105
Reaction score
0
can we set this up in other linux distro like debian?
 
Junior Spellweaver
Joined
Aug 6, 2015
Messages
105
Reaction score
0
Can anyone here re upload the files, it seems that all links are dead :(
 
Junior Spellweaver
Joined
Aug 6, 2015
Messages
105
Reaction score
0
:eek:tt::eek:tt: Thank you for doing that Hulu :eek:tt::eek:tt:
 
Newbie Spellweaver
Joined
Mar 5, 2016
Messages
6
Reaction score
0
After following everything on the first post and reading most pages within this thread

im stuck with navicat not connecting to the database

a, ip is pingable
b, winscp / secureCRT - connect without an issue at all

I've changed the ips for postgresql multiple times and just cannot connect i currently have it now set to accept all ips and it still will not connect to the database

any help would be great
 
Unknown Place
Joined
Mar 7, 2013
Messages
580
Reaction score
87
After following everything on the first post and reading most pages within this thread

im stuck with navicat not connecting to the database

a, ip is pingable
b, winscp / secureCRT - connect without an issue at all

I've changed the ips for postgresql multiple times and just cannot connect i currently have it now set to accept all ips and it still will not connect to the database

any help would be great

Try to check if the database is listening in the correct ip/port, a simple netstat -an should answer that for you :)
 
Skilled Illusionist
Joined
Apr 7, 2012
Messages
312
Reaction score
121
I think your issue is with the listening IP for postgres...
  • Open /var/lib/pgsql/{your-version}/data/postgresql.conf
  • Look for line listen_addresses, uncomment it and set it to *, or replace it with listen_addresses = '*'
 
Unknown Place
Joined
Mar 7, 2013
Messages
580
Reaction score
87
I think your issue is with the listening IP for postgres...
  • Open /var/lib/pgsql/{your-version}/data/postgresql.conf
  • Look for line listen_addresses, uncomment it and set it to *, or replace it with listen_addresses = '*'

Could be, yes, hence why the test I had suggested. :D
 
Newbie Spellweaver
Joined
Mar 5, 2016
Messages
6
Reaction score
0
Try to check if the database is listening in the correct ip/port, a simple netstat -an should answer that for you :)

Result was this.
tcp 0 0 :::5432 :::* LIST

I think your issue is with the listening IP for postgres...
  • Open /var/lib/pgsql/{your-version}/data/postgresql.conf
  • Look for line listen_addresses, uncomment it and set it to *, or replace it with listen_addresses = '*'

That was done correctly as per instructions but double checked and is correct
 
Banned
Banned
Joined
Dec 3, 2010
Messages
1,581
Reaction score
619
on centos 6.* -> service iptables stop
on centos 7.* -> systemctl firewalld (or firewall idr) stop
then try connect to postgre
 
Newbie Spellweaver
Joined
Mar 5, 2016
Messages
6
Reaction score
0
on centos 6.* -> service iptables stop
on centos 7.* -> systemctl firewalld (or firewall idr) stop
then try connect to postgre

I now get the error

" FATAL: no pg_hba.conf entry for host "192.168.0.101" user postgres database template1

for referance
# TYPE DATABASE USER ADDRESS METHOD

# "local" is for Unix domain socket connections only
local all all peer
# IPv4 local connections:
host all all 192.168.0.108/32 ident
# IPv6 local connections:
host all all ::1/128 ident
# Allow replication connections from localhost, by a user with the
# replication privilege.
#local replication postgres peer
#host replication postgres 127.0.0.1/32 ident
#host replication postgres ::1/128 ident
 
Banned
Banned
Joined
Dec 3, 2010
Messages
1,581
Reaction score
619
change
Code:
# IPv4 local connections:
host all all 192.168.0.108/32 ident
to
Code:
# IPv4 local connections:
host all all 0.0.0.0/0 md5

in pg_hba.conf then restart your postgresql
 
Newbie Spellweaver
Joined
Oct 26, 2013
Messages
85
Reaction score
22
What's wrong?

World log:
5354,2016/03/14 02:09:14,TCP connection: 2**.22.**.124::5560 Connection refused 5355,2016/03/14 02:09:14,SOCKET 19: closed.
5356,2016/03/14 02:09:14,TCP connection: 2**.22.**.124:5560 Connection refused 5357,2016/03/14 02:09:14,SOCKET 19: closed.

+ how to patch world, login servers to my wan ip?

Eperty123 - How to set up Aura Kingdom Server on CentOS - RaGEZONE Forums
 
Newbie Spellweaver
Joined
Mar 14, 2016
Messages
5
Reaction score
0
then
\i '<path to file>';


Can you tell me which file i should input in postgresql? Thanks
 
Junior Spellweaver
Joined
Jul 27, 2005
Messages
112
Reaction score
80
change
Code:
# IPv4 local connections:
host all all 192.168.0.108/32 ident
to
Code:
# IPv4 local connections:
host all all 0.0.0.0/0 md5

in pg_hba.conf then restart your postgresql

should use: "host all all samenet md5" instead simplifies things a lot on a local lan.
 
Newbie Spellweaver
Joined
Mar 17, 2016
Messages
7
Reaction score
0
cannot seem to connect to server through SecureCRT even though I put in the correct IP
 
Last edited:
Back
Top