Recent Changes - Search:

CONGO

PmWiki

edit SideBar

MySQLConfiguration

Main.MySQLConfiguration History

Hide minor edits - Show changes to output

Changed line 1 from:
CONGO will install and configure all the tables it needs to run.  However, to do that, it needs to have a MySQL database instance prepared for it.
to:
CONGO will install and configure all the tables it needs automatically.  However, to do that, it needs to have a MySQL database instance prepared for it.
Added lines 1-17:
CONGO will install and configure all the tables it needs to run.  However, to do that, it needs to have a MySQL database instance prepared for it.

Note you will need to have administrative privileges on your MySQL database server to perform these commands.

 mysqladmin -uroot -p create congo
 mysql -uroot -p congo
 grant all privileges on congo.* to congo@'localhost' identified by 'somepassword' ;

(If you are going to be connecting to this database server from another host, you will also need:

 grant all privileges on congo.* to congo@'%' identified by 'somepassword' ;

Then...

 flush privileges;

Your database is now ready for use.  Do not forget your access password you set in the 'grant' commands.
Edit - History - Print - Recent Changes - Search
Page last modified on October 13, 2009, at 03:44 PM