unable to connect menu

User Tag List

Results 1 to 1 of 1
  1. #1
    yourgamecrew's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2011
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    unable to connect

    hi
    i wanted to make my own wow server with this tutorial: http://www.mmowned.com/forums/world-...nity-core.html

    First i want to create a server for my own and if that works i want to make ik public. So I did everything what it says but at the end when i want to log in and WoW says: Unable to connect. Please visit blabla.

    This is my authserver.conf file;
    Code:
    ###############################################
    # Trinity Core Auth Server configuration file #
    ###############################################
    [authserver]
    
    ###################################################################################################
    # SECTION INDEX
    #
    #    EXAMPLE CONFIG
    #    AUTH SERVER SETTINGS
    #    MYSQL SETTINGS
    #
    ###################################################################################################
    
    ###################################################################################################
    # EXAMPLE CONFIG
    #
    #    Variable
    #        Description: Brief description what the variable is doing.
    #        Important:   Annotation for important things about this variable.
    #        Example:     "Example, i.e. if the value is a string"
    #        Default:     10 - (Enabled|Comment|Variable name in case of grouped config options)
    #                     0  - (Disabled|Comment|Variable name in case of grouped config options)
    #
    # Note to developers:
    # - Copy this example to keep the formatting.
    # - Line breaks should be at column 100.
    ###################################################################################################
    
    ###################################################################################################
    # AUTH SERVER SETTINGS
    #
    #    LogsDir
    #        Description: Logs directory setting.
    #        Important:   LogsDir needs to be quoted, as the string might contain space characters.
    #                     Logs directory must exists, or log file creation will be disabled.
    #        Default:     "" - (Log files will be stored in the current path)
    
    LogsDir = ""
    
    #
    #    MaxPingTime
    #        Description: Time (in seconds) between database pings.
    #        Default:     1800 - (30 minutes)
    
    MaxPingTime = 1800
    
    #
    #    RealmServerPort
    #        Description: TCP port to reach the auth server.
    #        Default:     3724
    
    RealmServerPort = 3724
    
    #
    #
    #    BindIP
    #        Description: Bind auth server to IP/hostname
    #        Default:     "0.0.0.0" - (Bind to all IPs on the system)
    
    BindIP = "0.0.0.0"
    
    #
    #    PidFile
    #        Description: Auth server PID file.
    #        Example:     "./authserver.pid"  - (Enabled)
    #        Default:     ""                  - (Disabled)
    
    PidFile = ""
    
    #
    #    LogLevel
    #        Description: Server console level of logging
    #        Default:     0 - (Minimum)
    #                     1 - (Basic)
    #                     2 - (Detail)
    #                     3 - (Full/Debug)
    
    LogLevel = 0
    
    #
    #    LogFile
    #        Description: Log file for main server log.
    #        Default:     "Auth.log" - (Enabled)
    #                     ""           - (Disabled)
    
    LogFile = "Auth.log"
    
    #
    #    SQLDriverLogFile
    #        Description: Log file for SQL driver events.
    #        Example:     "SQLDriver.log" - (Enabled)
    #        Default:      ""             - (Disabled)
    
    SQLDriverLogFile = ""
    
    #
    #    LogTimestamp
    #        Description: Append timestamp to the server log file name.
    #                     Logname_YYYY-MM-DD_HH-MM-SS.Ext for Logname.Ext
    #        Default:     0 - (Disabled)
    #                     1 - (Enabled)
    
    LogTimestamp = 0
    
    #
    #    LogFileLevel
    #        Description: Server file level of logging
    #        Default:     0 - (Minimum)
    #                     1 - (Basic)
    #                     2 - (Detail)
    #                     3 - (Full/Debug)
    
    LogFileLevel = 0
    
    #
    #    LogColors
    #        Description: Colors for log messages (Format: "normal basic detail debug").
    #        Colors:      0  - Black
    #                     1  - Red
    #                     2  - Green
    #                     3  - Brown
    #                     4  - Blue
    #                     5  - Magenta
    #                     6  - Cyan
    #                     7  - Grey
    #                     8  - Yellow
    #                     9  - Lred
    #                     10 - Lgreen
    #                     11 - Lblue
    #                     12 - Lmagenta
    #                     13 - Lcyan
    #                     14 - White
    #        Example:     "13 11 9 5" - (Enabled)
    #        Default:     ""          - (Disabled)
    
    LogColors = ""
    
    #
    #    EnableLogDB
    #        Description: Write log messages to database (LogDatabaseInfo).
    #        Default:     0 - (Disabled)
    #                     1 - (Enabled)
    
    EnableLogDB = 0
    
    #
    #    DBLogLevel
    #        Description: Log level of databases logging.
    #        Default:     1 - (Basic)
    #                     0 - (Minimum)
    #                     2 - (Detail)
    #                     3 - (Full/Debug)
    
    DBLogLevel = 1
    
    #
    #    UseProcessors
    #        Description: Processors mask for Windows based multi-processor systems.
    #        Default:     0  - (Selected by OS)
    #                     1+ - (Bit mask value of selected processors)
    
    UseProcessors = 0
    
    #
    #    ProcessPriority
    #        Description: Process priority setting for Windows based systems.
    #        Default:     1 - (High)
    #                     0 - (Normal)
    
    ProcessPriority = 1
    
    #
    #    RealmsStateUpdateDelay
    #        Description: Time (in seconds) between realm list updates.
    #        Default:     20 - (Enabled)
    #                     0  - (Disabled)
    
    RealmsStateUpdateDelay = 20
    
    #
    #    WrongPass.MaxCount
    #        Description: Number of login attemps with wrong password before the account or IP will be
    #                     banned.
    #        Default:     0  - (Disabled)
    #                     1+ - (Enabled)
    
    WrongPass.MaxCount = 0
    
    #
    #    WrongPass.BanTime
    #        Description: Time (in seconds) for banning account or IP for invalid login attempts.
    #        Default:     600 - (10 minutes)
    #                     0   - (Permanent ban)
    
    WrongPass.BanTime = 600
    
    #
    #    WrongPass.BanType
    #        Description: Ban type for invalid login attempts.
    #        Default:     0 - (Ban IP)
    #                     1 - (Ban Account)
    
    WrongPass.BanType = 0
    
    #
    ###################################################################################################
    
    ###################################################################################################
    # MYSQL SETTINGS
    #
    #    LoginDatabaseInfo
    #        Description: Database connection settings for the realm server.
    #        Example:     "hostname;port;username;password;database"
    #                     ".;somenumber;username;password;database" - (Use named pipes on Windows
    #                                                                 "enable-named-pipe" to [mysqld]
    #                                                                 section my.ini)
    #                     ".;/path/to/unix_socket;username;password;database" - (use Unix sockets on
    #                                                                           Unix/Linux)
    #        Default:     "127.0.0.1;3306;trinity;trinity;auth"
    
    LoginDatabaseInfo = "127.0.0.1;3306;root;admin;auth"
    
    #
    #    LoginDatabase.WorkerThreads
    #        Description: The amount of worker threads spawned to handle asynchronous (delayed) MySQL
    #                     statements. Each worker thread is mirrored with its own connection to the
    #                     MySQL server and their own thread on the MySQL server.
    #        Default:     1 - (LoginDatabase.WorkerThreads)
    
    LoginDatabase.WorkerThreads     = 1
    
    #
    ###################################################################################################

    This is worldserver.conf (it's not the whole file i only kept the first part):
    Code:
    ################################################
    # Trinity Core World Server configuration file #
    ################################################
    [worldserver]
    
    ###################################################################################################
    # SECTION INDEX
    #
    #    EXAMPLE CONFIG
    #    CONNECTIONS AND DIRECTORIES
    #    PERFORMANCE SETTINGS
    #    SERVER LOGGING
    #    SERVER SETTINGS
    #    PLAYER INTERACTION
    #    CREATURE SETTINGS
    #    CHAT SETTINGS
    #    GAME MASTER SETTINGS
    #    VISIBILITY AND DISTANCES
    #    SERVER RATES
    #    AUTO BROADCAST
    #    BATTLEGROUND CONFIG
    #    ARENA CONFIG
    #    NETWORK CONFIG
    #    CONSOLE AND REMOTE ACCESS
    #    CHARACTER DELETE OPTIONS
    #    CUSTOM SERVER OPTIONS
    #
    ###################################################################################################
    
    ###################################################################################################
    # EXAMPLE CONFIG
    #
    #    Variable
    #        Description: Brief description what the variable is doing.
    #        Important:   Annotation for important things about this variable.
    #        Example:     "Example, i.e. if the value is a string"
    #        Default:     10 - (Enabled|Comment|Variable name in case of grouped config options)
    #                     0  - (Disabled|Comment|Variable name in case of grouped config options)
    #
    # Note to developers:
    # - Copy this example to keep the formatting.
    # - Line breaks should be at column 100.
    ###################################################################################################
    
    ###################################################################################################
    # CONNECTIONS AND DIRECTORIES
    #
    #    RealmID
    #        Description: ID of the Realm using this config.
    #        Important:   RealmID must match the realmlist inside the realmd database.
    #        Default:     1
    
    RealmID = 1
    
    #
    #    DataDir
    #        Description: Data directory setting.
    #        Important:   DataDir needs to be quoted, as the string might contain space characters.
    #        Example:     "@prefix@/share/trinitycore"
    #        Default:     "."
    
    DataDir = "C:\PDSCore\data"
    
    #
    #    LogsDir
    #        Description: Logs directory setting.
    #        Important:   LogsDir needs to be quoted, as the string might contain space characters.
    #                     Logs directory must exists, or log file creation will be disabled.
    #        Default:     "" - (Log files will be stored in the current path)
    
    LogsDir = ""
    
    #
    #    LoginDatabaseInfo
    #    WorldDatabaseInfo
    #    CharacterDatabaseInfo
    #        Description: Database connection settings for the world server.
    #        Example:     "hostname;port;username;password;database"
    #                     ".;somenumber;username;password;database" - (Use named pipes on Windows
    #                                                                 "enable-named-pipe" to [mysqld]
    #                                                                 section my.ini)
    #                     ".;/path/to/unix_socket;username;password;database" - (use Unix sockets on
    #                                                                           Unix/Linux)
    #        Default:     "127.0.0.1;3306;trinity;trinity;auth"       - (LoginDatabaseInfo)
    #                     "127.0.0.1;3306;trinity;trinity;world"      - (WorldDatabaseInfo)
    #                     "127.0.0.1;3306;trinity;trinity;characters" - (CharacterDatabaseInfo)
    
    LoginDatabaseInfo     = "127.0.0.1;3306;root;admin;auth"
    WorldDatabaseInfo     = "127.0.0.1;3306;root;admin;trinity"
    CharacterDatabaseInfo = "127.0.0.1;3306;root;admin;characters"
    
    #
    #    LoginDatabase.WorkerThreads
    #    WorldDatabase.WorkerThreads
    #    CharacterDatabase.WorkerThreads
    #        Description: The amount of worker threads spawned to handle asynchronous (delayed) MySQL
    #                     statements. Each worker thread is mirrored with its own connection to the
    #                     MySQL server and their own thread on the MySQL server.
    #        Default:     1 - (LoginDatabase.WorkerThreads)
    #                     1 - (WorldDatabase.WorkerThreads)
    #                     1 - (CharacterDatabase.WorkerThreads)
    
    LoginDatabase.WorkerThreads     = 1
    WorldDatabase.WorkerThreads     = 1
    CharacterDatabase.WorkerThreads = 1
    
    #
    #    LoginDatabase.SynchThreads
    #    WorldDatabase.SynchThreads
    #    CharacterDatabase.SynchThreads
    #        Description: The amount of MySQL connections spawned to handle.
    #        Default:     1 - (LoginDatabase.WorkerThreads)
    #                     1 - (WorldDatabase.WorkerThreads)
    #                     2 - (CharacterDatabase.WorkerThreads)
    
    LoginDatabase.SynchThreads     = 1
    WorldDatabase.SynchThreads     = 1
    CharacterDatabase.SynchThreads = 2
    
    #
    #    MaxPingTime
    #        Description: Time (in seconds) between database pings.
    #        Default:     1800 - (30 minutes)
    
    MaxPingTime = 1800
    
    #
    #    WorldServerPort
    #        Description: TCP port to reach the world server.
    #        Default:     8085
    
    WorldServerPort = 8085
    
    #
    #    BindIP
    #        Description: Bind world server to IP/hostname
    #        Default:     "0.0.0.0" - (Bind to all IPs on the system)
    
    BindIP = "0.0.0.0"
    
    #
    #############################################################

    unable to connect

Similar Threads

  1. Unable to connect to realmlist server, oh yes, i need help
    By WoWLegend in forum World of Warcraft Emulator Servers
    Replies: 34
    Last Post: 01-30-2008, 06:59 PM
  2. unable to connect?
    By Violation92 in forum World of Warcraft General
    Replies: 3
    Last Post: 11-23-2007, 03:20 AM
  3. Need help unable to connect to realmlist
    By endlessbounty in forum World of Warcraft Emulator Servers
    Replies: 12
    Last Post: 11-12-2007, 03:11 PM
  4. Antrix, unable to connect to server realm.
    By galcybele in forum World of Warcraft Emulator Servers
    Replies: 4
    Last Post: 10-05-2007, 02:03 PM
  5. Unable to Connect error when trying to logon my server
    By Rizzano in forum World of Warcraft Emulator Servers
    Replies: 0
    Last Post: 09-27-2007, 01:12 PM
All times are GMT -5. The time now is 07:34 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search