121
edits
| Line 17: | Line 17: | ||
Before you get started with that, you should setup your MySQL database instances. | Before you get started with that, you should setup your MySQL database instances. | ||
To do that all you need to do is download, extract and load the sql dumps provided. | To do that all you need to do is download, extract and load the sql dumps provided. So, create the databases first | ||
<pre> | |||
$ mysql -u <user> -p | |||
<at prompt> | |||
mysql>create database schedulerdb; | |||
mysql>create database statusdb; | |||
mysql>exit | |||
</pre> | |||
Download the sql dumps, then load them into the db with: | |||
<pre> | |||
mysql schedulerdb -u <user> -p < schedulerdb.sql | |||
mysql statusdb -u <user> -p < statusdb.sql | |||
</pre> | |||
NOTE: The files unzipped can account for more than 10GB. Watch out! :) | NOTE: The files unzipped can account for more than 10GB. Watch out! :) | ||
edits