CommunityData:MySQL: Difference between revisions

From CommunityData
No edit summary
 
Line 1: Line 1:
If you need to use a MySQL database for research, you'll need to create a database on [[CommunityData:Kibo|Kibo]]. Kibo has MySQL already installed. You'll also need to create a user with access to that database. Doing these two steps will require access to MySQL using the MySQL "root" user.
If you need to use a MySQL database for research, you'll need to create a database on [[CommunityData:Kibo|Kibo]]. Kibo has MySQL already installed. You'll also need to create a user with access to that database. Doing these two steps will require access to MySQL using the MySQL "root" user.


== Root Credentials on Kibo ==
== MySQL credentials on Kibo ==


First, you'll need an account on Kibo. [[CommunityData:Kibo]] has details on how to do this but it will require a NU NetID and a bunch of other steps. Alas. Once you have this account, you'll need to use the following steps:
First, you'll need an account on Kibo. [[CommunityData:Kibo]] has details on how to do this but it will require a NU NetID and a bunch of other steps. Alas. Once you have this account, you'll need to use the following steps:

Latest revision as of 19:27, 2 August 2021

If you need to use a MySQL database for research, you'll need to create a database on Kibo. Kibo has MySQL already installed. You'll also need to create a user with access to that database. Doing these two steps will require access to MySQL using the MySQL "root" user.

MySQL credentials on Kibo[edit]

First, you'll need an account on Kibo. CommunityData:Kibo has details on how to do this but it will require a NU NetID and a bunch of other steps. Alas. Once you have this account, you'll need to use the following steps:

  • To find username and password credentials to access MySQL, you'll need to get a shell as root. Type sudo -s to get a root shell first.
  • Change to the root directory by typing cd ~root.
  • You'll find the file labeled mysql_root_credentials that contains the username and password to access MySQL on kibo.

Making a new MySQL database and user[edit]

Before you start, you'll need to decide on a name for your database (<DATABASENAME>), a name for your user (<USERNAME>), and a password (<PASSWORD>). The password should be secure. I generate mine with a shell command like pwgen -y 20 or some other secure password generator. I typically make the database name and username the same.

Run the following shell commands (replacing <DATABASENAME> with the name of the database you want to create):

$ mysqladmin create <DATABASENAME>
$ mysql -uroot -p mysql

Once you have done that and entered the password, you will put into the MySQL shell. Youll need to run these two commands (replacing things as appropriate):

CREATE USER '<USERNAME>'@'%' IDENTIFIED BY '<PASSWORD>';
GRANT ALL ON <DATABASENAME>.* TO '<USERNAME>'@'%';

Now exit the MySQL shell with Ctrl-D or similar. You should be good to go! You'll need to enter your your username and password into any scripts you write that will be reading from and/or writing from the database.

It is also possible to create users with only read access to the database, and similar. Details on how to do that are available in MySQL documentation on the web.