This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
mysql_management [2018/09/27 14:44] root |
mysql_management [2018/09/27 15:10] (current) root |
||
---|---|---|---|
Line 7: | Line 7: | ||
==== New Database and User ==== | ==== 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). | + | 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 " |
< | < | ||
show databases; | show databases; | ||
create database DATABASENAME; | create database DATABASENAME; | ||
+ | create user ' | ||
+ | grant all privileges on DATABASENAME . * TO ' | ||
</ | </ | ||
+ | |||
+ | To access the new database, the user would then use this command (from the head node): | ||
+ | |||
+ | < | ||
+ | mysql -p -h fs1 -u USERNAME DATABASENAME | ||
+ | </ | ||
+ |