Main /
MySQLConfigurationCONGO 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. 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. |