How to install OpenQRM 4.8 with LXC containers in Debian Squeeze/Ubuntu 10.04 LTS: Step by Step (Page 6)

F) CREATE MYSQL DATABASE FOR OPENQRM

F1) You need to create a database for OpenQRM before you log into the web interface of OpenQRM as reported in E7 above.

F2) So create a mysql database:

Quote:

#mysql -u root -p (ENTER)

Supply the password for the root set up in E6.2 above. And you will land at mysql prompt:

Quote:

mysql> create database openqrm;(ENTER)

F3) Grant privileges.

Quote:

mysql> grant all on openqrm.* identified by 'username@localhost' identified by 'secret';(ENTER)

Change the username and secret of your liking.


F4) Flush privileges

Quote:

mysql> flush privileges;[ENTER]
mysql>exit[ENTER]


PreviousNext