User Tools

Site Tools


mysql_management

This is an old revision of the document!


MySQL Management

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.

New Database and User

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 tzeng_song_project . * TO 'username'@'node%';
mysql_management.1538074081.txt.gz · Last modified: 2018/09/27 14:48 by root