This is an old revision of the document!
On the main cluster MySQL is installed on file server 1.
The MySQL databases are dumped to disk weekly and the dumps are backed up to the HPC backup space.
To create a new database for a specific user, log in to the file server and run mysql (the MySQL root password is configured in .my.cnf, so you will log on automatically). In the “create user” command below, the 'node%' is literal and means: “all hosts with names starting with node”.
show databases; create database DATABASENAME; create user 'USERNAME'@'node%' identified by 'PASSWORD'; grant all privileges on DATABASENAME . * TO 'username'@'node%';