Godleydemon

multicraft error

Oct 16th, 2013
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 11.39 KB | None | 0 0
  1.                     ##Error##
  2. 2013-10-16 22:16:09,313 ERROR    Failed to connect to MySQL: (1045, "Access denied for user 'root'@'ns5001555.ip-192-95-32.net' (using password: YES)")
  3. 2013-10-16 22:16:09,313 ERROR    Database connection failed.
  4.  
  5.                     ##Config File##
  6.  
  7. [multicraft]
  8. ## The daemon will run under this user (not used for Windows)
  9. user = minecraft
  10. ## Directories created by Multicraft will have the owner set to
  11. ## the user and the group set to the webUser (not used for Windows)
  12. ## default: same as "user"
  13. webUser =
  14.  
  15. ## The daemon will listen on the following IP/port.
  16. ## 0.0.0.0 to listen on all available interfaces (all IPs). Note that
  17. ## you will have to use the "externalIp" setting below if you set this
  18. ## to 0.0.0.0 as the control panel needs to know where to connect.
  19. ip = 0.0.0.0
  20. port = 25465
  21.  
  22. ## If the external address is different from the listen address
  23. ## you can set the external address here. This setting will be saved
  24. ## to the DB and used by the control panel to connect to the daemon.
  25. ## default: same as "ip"
  26. externalIp = 192.95.32.210
  27.  
  28. ## The connection password for daemon communication
  29. ## !! Change this when you set Multicraft to listen on a public IP !!
  30. ## The same password will have to be put in the panels "daemon.php"
  31. password = none
  32.  
  33. ## Remote IP restrictions for daemon connections. This is a comma separated
  34. ## list of IPs that are allowed to connect to this daemon. Empty for all
  35. ## remote IPs allowed.
  36. ## default: empty
  37. #allowedIps = 127.0.0.1
  38.  
  39. ## The maximum number of daemon connections to allow to this daemon.
  40. ## default: 500
  41. #maxConnections = 500
  42.  
  43. ## The daemon ID. Only used for reseller edition to assign servers to daemons
  44. ## Running multiple servers with the same IDs can cause unpredictable behavior
  45. ## Valid values: 1, 2, ..., 10
  46. id = 2
  47.  
  48. ## The database containing daemon
  49. ## default: sqlite:data.db (-> "baseDir"/"dataDir"/data.db)
  50. database = mysql:host=192.95.32.126;dbname=multicraft_daemon
  51. ## Example for MySQL connections:
  52. database = mysql:host=192.95.32.126;dbname=multicraft_daemon
  53. dbUser = root
  54. dbPassword = 9ftFxgJHF7FfvAD7DSVYbNndnpWGEbC8HnQuWvs6N22m5CFgX5dDmh6GZbUuz3s4
  55. #dbCharset = utf8
  56.  
  57. ## A name for this daemon, this is optional
  58. ## default: Multicraft Daemon
  59. #name =
  60.  
  61. ## The amount of memory available to this daemon in MB. This setting mainly
  62. ## serves informational purpose for display in the control panel and
  63. ## for the API to decide if this daemon can still run more servers.
  64. ## 0 means undefined
  65. ## default: 0
  66. #totalMemory =
  67.  
  68. ## The base directory of the multicraft install. Relative to the users
  69. ## home directory or absolute. Must exist.
  70. ## default: multicraft (-> /home/"user"/multicraft)
  71. baseDir = /home/minecraft/multicraft
  72. ## The directory the daemon binaries reside in
  73. ## default: bin (-> "baseDir"/bin)
  74. daemonDir = bin
  75. ## The data directory. Contains the database, socket, log and
  76. ## must be accessible by the control panel user if using a SQLite DB
  77. ## default: data (-> "baseDir"/data)
  78. dataDir = data
  79. ## The directory jar files can be placed in
  80. ## default: jar (-> "baseDir"/jar)
  81. jarDir = jar
  82. ## The directory containing all the servers. Users can be given access
  83. ## to specific subdirectories containing their server data
  84. ## default: servers (-> "baseDir"/servers)
  85. serversDir = servers
  86. ## The following files contain daemon specific data.
  87. ## The paths specified are relative to "baseDir"
  88. pidFile = multicraft.pid
  89. logFile = multicraft.log
  90. licenseFile = multicraft.key
  91. scriptsFile = scripts.conf
  92.  
  93. ## Note that for all of the above settings where a file or directory is
  94. ## indicated you can also use absolute paths (/dir), home-relative
  95. ## paths (~/dir) or relative paths (./dir or ../dir). "dir" stands for
  96. ## the setting you're editing.
  97. ## When not using absolute/relative paths the setting is taken to be
  98. ## relative to the home directory of the user configured by the "user"
  99. ## setting.
  100. ## Examples:
  101. ## - Changing "baseDir" to ./multicraft will cause multicraft to search
  102. ##   all the files in a subdirectory "multicraft" of the directory it's
  103. ##   called from
  104. ## - Changing "logFile" to ~/multicraft.log will cause Multicraft to log
  105. ##   everything to the file multicraft.log in the home directory of the
  106. ##   user configured by the "user" setting
  107.  
  108. ## The maximum size of one logfile after which the log will be rotated
  109. ## default: 20971520 (20 MB)
  110. logSize = 20971520
  111.  
  112. ## The number of log files to keep (multicraft.log.1 ... multicraft.log.X)
  113. ## default: 9
  114. logCount = 9
  115.  
  116. ## Synchronize log writes. Disabling this will improve performance at the
  117. ## risk of having some log entries overlap.
  118. ## default: true
  119. #logSync = false
  120.  
  121. ## Use thesyslog facility instead of logging to a file.
  122. ## default: false
  123. #logSyslog = true
  124.  
  125. ## The syslog facility to log to. Possible values: auth, cron, daemon,
  126. ## kern, lpr, mail, news, security, syslog, user, uucp, local10-17
  127. ## default: daemon
  128. #logFacility = daemon
  129.  
  130. ## Delay between server auto-starts in milliseconds.
  131. ## default: 750
  132. autostartDelay = 750
  133.  
  134. ## A list of section names in .conf files that can safely be defined
  135. ## or overridden by users. Note that this is just a default value that
  136. ## can itself be overridden in the .conf files in the daemon directory.
  137. ## Use * to allow all sections or a regular expression matching allowed
  138. ## sections only.
  139. ## default: ^(encoding|commands|parse_.+)$
  140. #safeConfSections = ^(encoding|commands|parse_.+)$
  141.  
  142. ## Allow symlinks where directories are expected. This check is done for
  143. ## security.
  144. ## default: false
  145. #allowSymlinks = false
  146.  
  147. ## Skip the integrity check for directories. This check is done for
  148. ## security, it verifies that a directory entry is consistent with its
  149. ## filesystem entry. You can disable this if this check causes issues
  150. ## on your particular filesystem.
  151. #default: false
  152. #skipIntegrityCheck = false
  153.  
  154. [useragent]
  155. ## The path to the Multicraft useragent. This program is used in
  156. ## multiuser mode to access user files.
  157. ## default: bin (-> "baseDir"/bin, same as daemonDir)
  158. #userAgentDir = bin
  159. ## The executable of the Multicraft useragent. Note that a config
  160. ## file with the same name as this setting (plus .conf) will be
  161. ## generated next to this file.
  162. ## default: launcher (-> "baseDir"/"userAgentDir"/useragent)
  163. #userAgentFile = useragent
  164. ## The minimum allowed user and group IDs for server users
  165. ## default: 100
  166. #userAgentMinUid = 100
  167. #userAgentMinGid = 100
  168. ## The script to run when a server is being prepared. The path is
  169. ## relative to the userAgentDir.
  170. ## NOTE: This script will be run as the superuser.
  171. ## default: empty
  172. #userAgentSuperuserPrepare =
  173. ## The script to run when a server is being prepared. The path is
  174. ## relative to the baseDir.
  175. ## default: empty
  176. #userAgentPrepare =
  177. ## Various useragent configuration options
  178. #userAgentCp = /bin/cp
  179. #userAgentCpOpts = --preserve=mode,timestamps
  180. #userAgentUnzip = /usr/bin/unzip
  181. #userAgentUnzipOpts = -qql
  182. #userAgentUnzipRe = ^(?:\s+[^\s]+){3}\s+(.*)$
  183.  
  184.  
  185. [launcher]
  186. ## The path to the Multicraft launcher. This launcher program enables
  187. ## Multicraft to run servers that need a console to run correctly.
  188. ## default: launcher (-> "baseDir"/launcher)
  189. #launcherDir = launcher
  190. ## The executable of the Multicraft launcher
  191. ## default: launcher (-> "baseDir"/"launcherDir"/launcher)
  192. #launcherFile = launcher
  193.  
  194. ## Integrated FTP server settings
  195. [ftp]
  196. ## Wheter or not to enable the integrated FTP server, true/false
  197. ## default: true
  198. enabled = false
  199. ## IP to listen on for FTP connections, uncomment to use the same as
  200. ## for the daemon.
  201. ## 0.0.0.0 means listening on all available interfaces (all IPs)
  202. ## default: same as the "ip" setting for the daemon, see above
  203. ftpIp = 192.95.32.126
  204. ## See the descriptions of "externalIp" and "ip" for the daemon above
  205. ## default: same as "externalIp" if "ftpIp" is "0.0.0.0" otherwise "ftpIp"
  206. #ftpExternalIp =
  207. ## Masquerade IP address to use for passive FTP connections when
  208. ## Multicraft is running behind a router.
  209. ## default: empty
  210. #ftpNatIp =
  211. ## A port range to use for passive data transfers. If this is not
  212. ## specified the FTP server will use random ports.
  213. ## Format: 4000-8000
  214. ## default: empty
  215. #ftpPasvPorts =
  216. ## Port to listen on for incoming FTP connections. Change this to
  217. ## something else if you are already running an FTP server on this
  218. ## system.
  219. ## default: 21
  220. ftpPort = 21
  221. ## Regular expression matching files that can't be manipulated by
  222. ## users in any way. If you want users to be able to upload their own
  223. ## plugins instead of using the ones you provide for them you can
  224. ## just comment this option out.
  225. ## default: empty
  226. forbiddenFiles =
  227.  
  228. ## Minecraft default settings
  229. [minecraft]
  230. ## The default amount of reserved memory
  231. ## default: 1024
  232. memory = 1024
  233. ## The name of the java executable
  234. ## default: java
  235. java = /usr/bin/java
  236. ## The jar file to use. This file will be looked for in the "base"
  237. ## directory as configured above
  238. ## default: minecraft_server.jar
  239. jar = minecraft_server.jar
  240.  
  241. ## Backup settings
  242. [backup]
  243. ## The command to run a backup. The following variables can be used:
  244. ## - {WORLD} The name of the world being backed up
  245. ## - {SERVER_DIR} The directory of the server (working directory)
  246. ## - {MULTICRAFT_DIR} The Multicraft base directory ("baseDir" above)
  247. ## - {BASE_DIR} The directory containing all the servers ("serversDir above")
  248. ## Note that the resulting files is expected to be named "{WORLD}-tmp.zip"
  249. command = /usr/bin/zip -qr "{WORLD}-tmp.zip" . -i "{WORLD}"*/*
  250. ## The same setting for Windows systems
  251. commandWin = "{MULTICRAFT_DIR}\bin\zip.exe" -qr "{WORLD}-tmp.zip" "{WORLD}"*/
  252.  
  253. ## System settings
  254. [system]
  255. ## Most of the settings below are for Linux only
  256.  
  257. ## Whether or not to use one system user per Minecraft server.
  258. ## This is recommended if you let your users upload untrusted executables.
  259. ## Note that for every server a new system user is automatically created
  260. ## if this option is enabled (user name format and commands configured below).
  261. ## default: false
  262. multiuser = true
  263.  
  264. ## Display the output of this command in the panel under
  265. ## "Settings"->"Multicraft Status"
  266. ## default: empty
  267. infoCmd = uptime
  268. infoCmdWin =
  269.  
  270. ## The name format for new users, the following variables can be used:
  271. ## - {ID} The server ID
  272. ## default: mc{ID}
  273. userFormat = mc{ID}
  274. ## The name format for new groups, the following variables can be used:
  275. ## - {ID} The server ID
  276. ## - {USER} The full username
  277. ## default: same as userFormat
  278. #groupFormat = {USER}
  279.  
  280. ## The commands to create and delete system users and groups
  281. ## The following variables can be used:
  282. ## - {USER} The full username
  283. ## - {GROUP} The full groupname
  284. ## - {ID} The server ID
  285. ## - {DIR} The server base directory, used as the users home
  286. ## These commands cannot contain escaped quotes or empty arguments
  287. addUser = /usr/sbin/useradd -c "Multicraft Server {ID}" -d "{DIR}" -g "{GROUP}" -s /bin/false "{USER}"
  288. addGroup = /usr/sbin/groupadd "{GROUP}"
  289. delUser = /usr/sbin/userdel "{USER}"
  290. delGroup = /usr/sbin/groupdel "{GROUP}"
  291.  
  292. ## Regular expression for filtering file names. Any match gets replaced by "_".
  293. ## Warning: Changing this is potentially dangerous
  294. ## default: [\\/<>:|*?"'&;$~%\0]
  295. #fileFilter = [\\/<>:|*?"'&;$~%\0]
  296.  
  297. ## The command to unpack a zip file. The following variables can be used:
  298. ## - {FILE} The name of the zip archive to restore
  299. unpackCmd = /usr/bin/unzip -quo "{FILE}"
  300. ## The same setting for Windows systems
  301. unpackCmdWin = "{MULTICRAFT_DIR}\bin\unzip.exe" -quo "{FILE}"
Advertisement
Add Comment
Please, Sign In to add comment