RMX-OS Help

Started by flrodude, October 15, 2011, 04:10:51 pm

Previous topic - Next topic

flrodude

So I downloaded everything, set up Mysql, and for the management software I used Navicat.  I opened navicat, made a connection, and ran a query using the file that was called like rmxpdatabase.sql or something like that.  It came up with this error:

[SQL]

-- Registered Users

CREATE TABLE `users` (
   `user_id` int(10) unsigned NOT NULL auto_increment,
   `username` varchar(32) NOT NULL UNIQUE,
   `password` varchar(11) NOT NULL,
   `usergroup` int(10) NOT NULL default 0,
   `banned` tinyint(1) NOT NULL default 0,
   PRIMARY KEY (`user_id`)
) ENGINE = InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
[Err] 1005 - Can't create table '.\rmxosdb\users.frm' (errno: 121)