MySQL Forums
Forum List  »  Newbie

Minecraft Server SQL Problems
Posted by: Carter Merrill
Date: June 04, 2012 01:13PM

Recently, I've been trying to connect my Minecraft server to an SQL database for several Minecraft server plugins to use. I've gotten help on the official forum for the Minecraft server application and have gotten to the point where MySQL is running and I can use the command line client to create users and databases, however when I run my Minecraft server, I get the following in the Minecraft server's console:

15:09:02 [INFO] [iConomy] Error creating database: java.sql.SQLException: Unknow
n storage engine 'InnoDB' Query: CREATE TABLE IF NOT EXISTS `minecraft` ( `id`
int(255) NOT NULL AUTO_INCREMENT, `username` varchar(32) NOT NULL, `balance
` double(64,2) NOT NULL, `status` int(2) NOT NULL DEFAULT '0', UNIQUE KEY `u
sername` (`username`), PRIMARY KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET
=utf8; Parameters: []

Could someone tell me what exactly the above means, and why I'm getting it? I have created the database. On the other forum I mentioned earlier, someone instructed me to comment out the skip-innodb line of the config. Should I be doing this?

Here is the MySQL config I'm using. http://pastebin.com/9KsHdw89

Any help is greatly appreciated! :)

Options: ReplyQuote


Subject
Written By
Posted
Minecraft Server SQL Problems
June 04, 2012 01:13PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.