
Originally Posted by
creed0116
yup ive checked all the tuts and installed all the updates.. still having that error
here is my configs files just show u if there is somthing u miss ^^
gameserver/config/network/network file
Code:
# Port that will be used to listen for client connections
gameserver.network.client.port = 7777
# Host that will be used to listen for client connections
gameserver.network.client.host = *
# Maximum online players on the server
gameserver.network.client.maxplayers = 100
# Address of login server
gameserver.network.login.address = EXTERNALIP:9014
# Id of this game server
gameserver.network.login.gsid = 1
# Password of this game server
gameserver.network.login.password =privateserver
# Address of chat server
# Ip and port of chat server should be accessible from
# 1) game server
# 2) all connected clients
gameserver.network.chat.address = EXTERNALIP:9021
# Password of this game server for chat server
gameserver.network.chat.password =privateserver
# Additional threads that are used to read network data
gameserver.network.nio.threads.read = 0
# Additional threads that are used to write network data
gameserver.network.nio.threads.write = 0
# This will enable or disable the messages for unknown packets
gameserver.network.display.unknownpackets = false
gameserver/config/network/database file
Code:
# This class represents database driver class that will be used while connecting to database
database.driver = com.mysql.jdbc.Driver
# This is database url.
database.url = jdbc:mysql://localhost:3306/au_server_gs?useUnicode=true&characterEncoding=UTF-8
# Database user
database.user = root
# Database password
# NOTE: Change this! Root password is not safe!
database.password = aion
# Minimum amount of database connections that will allways in the pool
database.connections.min = 5
# Maximum amount of DB connections that server can use
database.connections.max = 10
# Script context that will be loaded by database factory, it should implement DAO instances
database.scriptcontext.descriptor = ./data/scripts/system/database.xml
gameserver/config/network/ipconfig file
Code:
<ipconfig default="EXTERNALIP">
<!--
IANA-reserved private IPv4 network ranges
Access only from local networks, external client can't have any of
the following ip addresses
<iprange min="10.0.0.0" max="10.255.255.255" address="10.0.0.0"/>
<iprange min="172.16.0.0" max="172.31.255.255" address="172.16.0.0"/>
<iprange min="192.168.0.0" max="192.168.255.255" address="192.168.0.0"/> -->
</ipconfig>
Navicat/au_server_ls/Gameserver table
Code:
Id:1 mask:127.0.0.1 password:privateserver
loginserver/config/network/database file
Code:
# This class represents database driver class that will be used while connecting to database
database.driver=com.mysql.jdbc.Driver
# This is database url.
database.url=jdbc:mysql://localhost:3306/au_server_ls
# Database user
database.user=root
# Database password
database.password=aion
# Minimum amount of database connections that will allways in the pool
database.connections.min=5
# Maximum amount of DB connections that server can use
database.connections.max=10
# Script context that will be loaded by database factory, it should implement DAO instances
database.scriptcontext.descriptor=./data/scripts/system/database.xml
its all i got and the server is working 100% fine
if u want i can help u on msn/TeamViewer5 so can i guide u so u can get this to work ^^