Guest User

realmd.conf

a guest
Dec 13th, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.54 KB | None | 0 0
  1. ################################################################################
  2. # Realm list demon configuration #
  3. ################################################################################
  4.  
  5. [RealmdConf]
  6. ConfVersion=2010062001
  7.  
  8. ################################################################################
  9. # REALMD SETTINGS
  10. #
  11. # LoginDatabaseInfo
  12. # Connection settings for the script library database
  13. # Default: hostname;port;username;password;database
  14. # Use named pipes at Windows
  15. # .;somenumber;username;password;database
  16. #
  17. # Use Unix sockets on Unix/Linux
  18. # .;/path/to/unix_socket;username;password;database
  19. #
  20. # LogsDir
  21. # Directory where log files should be written
  22. # The given path has to exist, and be writable for the realm list demon
  23. # Default: "" No log directory prefix, thus log files will be stored in
  24. # the same path where the realm list demon is running
  25. #
  26. # PidFile
  27. # Realm list demon PID file
  28. # Default: "" Do not create a PID file.
  29. #
  30. # MaxPingTime
  31. # Settings for maximum database-ping interval (minutes between pings)
  32. # Default: 30
  33. #
  34. # RealmServerPort
  35. # Port on which the server will listen
  36. # Default: 3724
  37. #
  38. # BindIP
  39. # Bind realm list demon to IP/hostname
  40. # DO NOT CHANGE THIS UNLESS YOU _REALLY_ KNOW WHAT YOU'RE DOING
  41. # Default: "0.0.0.0" Listen on all available addresses
  42. #
  43. # LogLevel
  44. # Server console level of logging
  45. # 0 = Minimum; 1 = Error; 2 = Detail; 3 = Full/Debug
  46. # Default: 0
  47. #
  48. # LogTime
  49. # Include time in server console output [hh:mm:ss]
  50. # Default: 0 (no time)
  51. # 1 (print time)
  52. #
  53. # LogFile
  54. # Logfile name
  55. # Default: "Realmd.log"
  56. # "" - empty name disable creating log file
  57. #
  58. # LogTimestamp
  59. # Logfile with timestamp of server start in name
  60. # Default: 0 - no timestamp appended
  61. # 1 - append timestamp in form of _YYYY-MM-DD_HH-MM-SS
  62. #
  63. # LogFileLevel
  64. # Server file level of logging
  65. # 0 = Minimum; 1 = Error; 2 = Detail; 3 = Full/Debug
  66. # Default: 0
  67. #
  68. # LogColors
  69. # Color for messages (format "normal_color details_color debug_color error_color)
  70. # Colors: 0 - BLACK, 1 - RED, 2 - GREEN, 3 - BROWN, 4 - BLUE, 5 - MAGENTA, 6 - CYAN, 7 - GREY,
  71. # 8 - YELLOW, 9 - LRED, 10 - LGREEN, 11 - LBLUE, 12 - LMAGENTA, 13 - LCYAN, 14 - WHITE
  72. # Default: "" - none colors
  73. # "13 7 11 9" - for example :)
  74. #
  75. # UseProcessors
  76. # Used processors mask for multi-processors system (Used only at Windows)
  77. # Default: 0 (selected by OS)
  78. # number (bitmask value of selected processors)
  79. #
  80. # ProcessPriority
  81. # Process proirity setting (Used only at Windows)
  82. # Default: 1 (HIGH)
  83. # 0 (Normal)
  84. #
  85. # WaitAtStartupError
  86. # After startup error report wait <Enter> or some time before continue (and possible close console window)
  87. # -1 (wait until <Enter> press)
  88. # Default: 0 (not wait)
  89. # N (>0, wait N secs)
  90. #
  91. # RealmsStateUpdateDelay
  92. # Realm list Update up delay (updated at realm list request if delay expired).
  93. # Default: 20
  94. # 0 (Disabled)
  95. #
  96. # WrongPass.MaxCount
  97. # Number of login attemps with wrong password before the account or IP is banned
  98. # Default: 3 (Never ban)
  99. #
  100. # WrongPass.BanTime
  101. # Duration of the ban in seconds (0 means permanent ban)
  102. # Default: 300
  103. #
  104. # WrongPass.BanType
  105. # Ban the IP or account on which login is attempted
  106. # Default: 0 (Ban IP)
  107. # 1 (Ban Account)
  108. #
  109. ################################################################################
  110. LoginDatabaseInfo = "127.0.0.1;3306;root;mangos;realmd"
  111. LogsDir = ""
  112. PidFile = ""
  113.  
  114. MaxPingTime = 30
  115. RealmServerPort = 3724
  116. BindIP = "0.0.0.0"
  117.  
  118. LogLevel = 0
  119. LogTime = 0
  120. LogFile = "world-realm.log"
  121. LogTimestamp = 0
  122. LogFileLevel = 0
  123. LogColors = "13 7 11 9"
  124.  
  125. UseProcessors = 0
  126. ProcessPriority = 1
  127. WaitAtStartupError = 0
  128. RealmsStateUpdateDelay = 20
  129.  
  130. WrongPass.MaxCount = 3
  131. WrongPass.BanTime = 300
  132. WrongPass.BanType = 0
Advertisement
Add Comment
Please, Sign In to add comment