Database servers: Difference between revisions
No edit summary |
(Marked this version for translation) |
||
(11 intermediate revisions by 2 users not shown) | |||
Line 4: | Line 4: | ||
== Database servers available for researchers == <!--T:1--> | == Database servers available for researchers == <!--T:1--> | ||
Alliance offers access to MySQL and Postgres database servers for researchers on both Cedar and Graham: | The Alliance offers access to MySQL and Postgres database servers for researchers on both Cedar and Graham: | ||
<!--T:84--> | |||
{| class="wikitable" | |||
|+ Database servers | |||
|- | |||
! Information !! Cedar - MySQL !! Cedar - Postgres !! Graham - MySQL | |||
|- | |||
| Description || General purpose server for the researcher wanting to set up SQL tables and issue SQL commands against them. || General purpose server for the researcher wanting to set up SQL tables and issue SQL commands against them. Includes a PostGIS extension available for those needing to do geocoding. || General purpose server for the researcher wanting to set up SQL tables and issue SQL commands against them. | |||
|- | |||
| Server name || cedar-mysql-vm.int.cedar.computecanada.ca || cedar-pgsql-vm.int.cedar.computecanada.ca || cc-gra-dbaas1.sharcnet.ca <br> IP: 199.241.163.99 | |||
|- | |||
| Short server name (can be used instead of long name) || cedar-mysql-vm || cedar-pgsql-vm || N/A | |||
|- | |||
| Latest version || [https://mariadb.com/kb/en/mariadb-server-11-5/ MariaDB version 11.5] || [https://www.postgresql.org/docs/release/16.0/ PostgreSQL version 16], PostGIS version 3.3 extension || [https://mariadb.com/kb/en/mariadb-server-11-5/ MariaDB version 11.5] | |||
|- | |||
| Documentation || [https://www.mariadb.com MariaDB website] || [https://www.postgresql.org Postgres website], [https://postgis.net/documentation PostGIS documentation] || [https://www.mariadb.com MariaDB website] | |||
|} | |||
== Cedar MySQL server == <!--T:2--> | == Cedar MySQL server == <!--T:2--> | ||
<!--T:3--> | <!--T:3--> | ||
The Cedar MySQL server offers MariaDB | The Cedar MySQL server offers MariaDB which is compatible with other flavours of MySQL. For information on compatibility, see [https://mariadb.com/kb/en/library/mariadb-vs-mysql-compatibility/ MariaDB versus MySQL Compatibility]. | ||
<!--T:4--> | <!--T:4--> | ||
The MariaDB server runs as a VM called "cedar-mysql-vm" (full name: cedar-mysql-vm.int.cedar.computecanada.ca). | The MariaDB server runs as a VM called "cedar-mysql-vm" (full name: cedar-mysql-vm.int.cedar.computecanada.ca). | ||
Users who have accounts on the MySQL server are able to connect only through the Cedar head node | Users who have accounts on the MySQL server are able to connect only through the Cedar head node | ||
(cedar.computecanada.ca), Cedar compute nodes and | (cedar.computecanada.ca), Cedar compute nodes and [https://gateway.cedar.computecanada.ca Cedar Portal]. | ||
<!--T:5--> | <!--T:5--> | ||
For security, users cannot make an SSH connection to the database server directly. | For security, users cannot make an SSH connection to the database server directly. | ||
=== MySQL account and connection === <!--T:6--> | === MySQL account and connection === <!--T:6--> | ||
Line 50: | Line 46: | ||
<!--T:9--> | <!--T:9--> | ||
We will then create an MySQL account with the same username as your Alliance username and a 16 digit random string password. The username, password, database server name, and other information required to make a MySQL connection will be stored in a file called <code>.my.cnf</code> | We will then create an MySQL account with the same username as your Alliance username and a 16 digit random string password. The username, password, database server name, and other information required to make a MySQL connection will be stored in a file called <code>.my.cnf</code> in your home directory. This file is confidential. You cannot change its contents but you can read it or delete it. If the file is deleted, you will lose access to your database. | ||
<!--T:10--> | <!--T:10--> | ||
Run the "mysql" client to connect to the MySQL server. An older version of the client may be available without loading a [[Utiliser des modules/en|module]], but it will not give you access the latest features on the MySQL server. We recommend issuing the following commands to load a more recent version of the client: | Run the "mysql" client to connect to the MySQL server. An older version of the client may be available without loading a [[Utiliser des modules/en|module]], but it will not give you access the latest features on the MySQL server. We recommend issuing the following commands to load a more recent version of the client: | ||
[name@server ~]$ module load mariadb | [name@server ~]$ module load mariadb | ||
[name@server ~]$ | [name@server ~]$ mariadb --version | ||
<!--T:60--> | <!--T:60--> | ||
Line 70: | Line 65: | ||
It is acceptable to submit a long-running SQL command from the head node, as most of the CPU usage is taken from the database server side. However, if you run a script which issues SQL commands and uses lots of CPU, then it needs to be submitted as a job to the scheduler. See [[Running jobs]] for details. | It is acceptable to submit a long-running SQL command from the head node, as most of the CPU usage is taken from the database server side. However, if you run a script which issues SQL commands and uses lots of CPU, then it needs to be submitted as a job to the scheduler. See [[Running jobs]] for details. | ||
=== | === Set up your MySQL database === <!--T:12--> | ||
<!--T:13--> | <!--T:13--> | ||
Line 84: | Line 79: | ||
<!--T:16--> | <!--T:16--> | ||
You may create multiple MySQL databases as long as they all start with "''username_''". | You may create multiple MySQL databases as long as they all start with "''username_''". | ||
The created databases will automatically be accessible only to you from the | The created databases will automatically be accessible only to you from the Cedar head node, Cedar compute nodes, and [https://gateway.cedar.computecanada.ca Cedar Portal]. You will have full privileges to create SQL objects such as tables, views, etc. | ||
=== | === Work with your MySQL database === <!--T:17--> | ||
<!--T:18--> | <!--T:18--> | ||
Line 102: | Line 97: | ||
<!--T:20--> | <!--T:20--> | ||
Resources for using MariaDB: | |||
* https://mariadb.com/kb/en/ | * [https://mariadb.com/kb/en/ MariaDB Knowledgebase] | ||
* https://mariadb.com/kb/en/library/training-tutorials/ | * [https://mariadb.com/kb/en/library/training-tutorials/ MariaDB Training and Tutorials] | ||
* https://mariadb.com/kb/en/library/sql-statements-structure/ | * [https://mariadb.com/kb/en/library/sql-statements-structure/ MariaDB SQL Statement Structure] | ||
* https://mariadb.com/kb/en/library/optimization-and-indexes/ | * [https://mariadb.com/kb/en/library/optimization-and-indexes/ MariaDB Optimization and Indexes] | ||
=== | === Share your MySQL data === <!--T:69--> | ||
<!--T:70--> | <!--T:70--> | ||
All MySQL account holders on | All MySQL account holders on Cedar can share their own databases. To share a table of your database with other users: | ||
<!--T:85--> | |||
# Run the command <code>mysql</code> to connect to MySQL. | |||
# Run the command <code>USE ''database'';</code> | |||
#* "''database''" is the name of the database that you would like to share a table from. | |||
# Run the command <code>GRANT ''priv_type'' ON ''mytable'' TO ′''user''′@'172.%';</code> | |||
#* "''priv_type''" is the type of privilege you would like to grant. | |||
#* "''mytable''" is the name of the table. | |||
#* "''user''" is the username you would like to share your table with. | |||
==== MySQL sharing example ==== <!--T:83--> | |||
<!--T:86--> | |||
Username "david" would like to share his table, "mytable" from database, "david_db" with username "john" for reading only. Here are commands he needs to run: | |||
<!--T:71--> | <!--T:71--> | ||
Line 123: | Line 132: | ||
<!--T:31--> | <!--T:31--> | ||
The Cedar Postgres server | The Cedar Postgres server has [https://www.postgresql.org/ Postgres] along with the [https://postgis.net/ PostGIS] extension. | ||
<!--T:32--> | <!--T:32--> | ||
The Cedar PostgreSQL server runs as a VM called "cedar-pgsql-vm" (full name: cedar-pgsql-vm.int.cedar.computecanada.ca). | The Cedar PostgreSQL server runs as a VM called "cedar-pgsql-vm" (full name: cedar-pgsql-vm.int.cedar.computecanada.ca). | ||
Users who have accounts on the PostgreSQL server are able to connect through the main Cedar head node | Users who have accounts on the PostgreSQL server are able to connect through the main Cedar head node | ||
(cedar.computecanada.ca), Cedar compute nodes, and | (cedar.computecanada.ca), Cedar compute nodes, and [https://gateway.cedar.computecanada.ca Cedar Portal]. | ||
<!--T:33--> | <!--T:33--> | ||
Line 137: | Line 146: | ||
* Your Alliance username | * Your Alliance username | ||
* Amount of database space needed for your project | * Amount of database space needed for your project | ||
* | * If you need the PostGIS extension for the database | ||
=== PostgreSQL account and connection === <!--T:35--> | === PostgreSQL account and connection === <!--T:35--> | ||
<!--T:36--> | <!--T:36--> | ||
The PostgreSQL account we create for you will have the same username as your Alliance username. You will be given a database. The name of the database will typically be "<username>_db" where <username> is your Alliance username. You cannot create a database yourself. If you need more than one database, please send | The PostgreSQL account we create for you will have the same username as your Alliance username. You will be given a database. The name of the database will typically be "<username>_db" where <username> is your Alliance username. You cannot create a database yourself. If you need more than one database, please send a request to [[Technical support]]. | ||
<!--T:62--> | <!--T:62--> | ||
You do not need to supply a password to access your PostgreSQL account. For security reasons your Alliance password must NEVER be required or used in a script. This also means that one user cannot access another user's database directly. | |||
Run the "psql" client to connect to the PostgreSQL server. An older version of the client may be available without loading a [[Utiliser des modules/en|module]], but it will not give you access to the latest features of PostgreSQL | Run the "psql" client to connect to the PostgreSQL server. An older version of the client may be available without loading a [[Utiliser des modules/en|module]], but it will not give you access to the latest features of PostgreSQL. We recommend loading the following module to use a more recent version of the client: | ||
<!--T:63--> | |||
[name@server ~]$ module load postgresql | [name@server ~]$ module load postgresql | ||
[name@server ~]$ psql --version | [name@server ~]$ psql --version | ||
=== | === Work with your PostgreSQL database === <!--T:43--> | ||
<!--T:44--> | <!--T:44--> | ||
Line 169: | Line 177: | ||
<!--T:46--> | <!--T:46--> | ||
Resources for using PostgreSQL: | |||
* https://www.postgresql.org/docs/current/static/tutorial.html | * [https://www.postgresql.org/docs/current/static/tutorial.html PostgreSQL tutorials] | ||
* https://www.postgresql.org/docs/ | * [https://www.postgresql.org/docs/ PostgreSQL manuals] | ||
* https:// | * [https://www.postgresql.org/docs/release/ PostgreSQL release notes] | ||
=== | === Share your PostgreSQL data === <!--T:64--> | ||
You can share your data in your PostgreSQL database with others. This is how: | You can share your data in your PostgreSQL database with others. This is how: | ||
* The person with whom you want to share access must have a Postgres account on the system. They should apply for one as described above. | * The person with whom you want to share access must have a Postgres account on the system. They should apply for one as described above. | ||
Line 215: | Line 223: | ||
== Graham MySQL server == <!--T:68--> | == Graham MySQL server == <!--T:68--> | ||
The steps for obtaining and using an account on the Graham MySQL server are similar to those described above for Cedar. | The steps for obtaining and using an account on the Graham MySQL server are similar to [[#Cedar_MySQL_server|those described above for Cedar]]. | ||
== Cloud-based database servers == <!--T:72--> | == Cloud-based database servers == <!--T:72--> | ||
Line 236: | Line 243: | ||
| pgsql || dbaas101.arbutus.cloud.computecanada.ca || 5432 | | pgsql || dbaas101.arbutus.cloud.computecanada.ca || 5432 | ||
|} | |} | ||
<!--T:75--> | <!--T:75--> | ||
Line 242: | Line 248: | ||
=== PostgreSQL database === <!--T:76--> | === PostgreSQL database === <!--T:76--> | ||
Your instance will use | Your instance will use an ssl connection to connect to the DBaaS host. | ||
The example below connects to the DBaaS host, as '''''user01''''' and uses the database '''''dbinstance''''' via | The example below connects to the DBaaS host, as '''''user01''''' and uses the database '''''dbinstance''''' via an ssl connection. | ||
<!--T:77--> | <!--T:77--> | ||
Line 262: | Line 268: | ||
=== MariaDB/MySQL database === <!--T:79--> | === MariaDB/MySQL database === <!--T:79--> | ||
Your instance will use | Your instance will use an ssl connection to connect to the DBaaS host. | ||
The example below connects to the DBaaS host, as '''''user01''''' and uses the database '''''dbinstance''''' via | The example below connects to the DBaaS host, as '''''user01''''' and uses the database '''''dbinstance''''' via an ssl connection. | ||
<!--T:80--> | <!--T:80--> |
Latest revision as of 16:15, 31 May 2024
Database servers available for researchers
The Alliance offers access to MySQL and Postgres database servers for researchers on both Cedar and Graham:
Information | Cedar - MySQL | Cedar - Postgres | Graham - MySQL |
---|---|---|---|
Description | General purpose server for the researcher wanting to set up SQL tables and issue SQL commands against them. | General purpose server for the researcher wanting to set up SQL tables and issue SQL commands against them. Includes a PostGIS extension available for those needing to do geocoding. | General purpose server for the researcher wanting to set up SQL tables and issue SQL commands against them. |
Server name | cedar-mysql-vm.int.cedar.computecanada.ca | cedar-pgsql-vm.int.cedar.computecanada.ca | cc-gra-dbaas1.sharcnet.ca IP: 199.241.163.99 |
Short server name (can be used instead of long name) | cedar-mysql-vm | cedar-pgsql-vm | N/A |
Latest version | MariaDB version 11.5 | PostgreSQL version 16, PostGIS version 3.3 extension | MariaDB version 11.5 |
Documentation | MariaDB website | Postgres website, PostGIS documentation | MariaDB website |
Cedar MySQL server
The Cedar MySQL server offers MariaDB which is compatible with other flavours of MySQL. For information on compatibility, see MariaDB versus MySQL Compatibility.
The MariaDB server runs as a VM called "cedar-mysql-vm" (full name: cedar-mysql-vm.int.cedar.computecanada.ca). Users who have accounts on the MySQL server are able to connect only through the Cedar head node (cedar.computecanada.ca), Cedar compute nodes and Cedar Portal.
For security, users cannot make an SSH connection to the database server directly.
MySQL account and connection
If you need the privileges to create your own database, you will need a MySQL account. To get a MySQL account on the Cedar MySQL server, please send a request to our Technical support with the following information:
- Your Alliance username
- Amount of database space needed for your project
We will then create an MySQL account with the same username as your Alliance username and a 16 digit random string password. The username, password, database server name, and other information required to make a MySQL connection will be stored in a file called .my.cnf
in your home directory. This file is confidential. You cannot change its contents but you can read it or delete it. If the file is deleted, you will lose access to your database.
Run the "mysql" client to connect to the MySQL server. An older version of the client may be available without loading a module, but it will not give you access the latest features on the MySQL server. We recommend issuing the following commands to load a more recent version of the client:
[name@server ~]$ module load mariadb [name@server ~]$ mariadb --version
You can use the following commands to test that your MySQL database account is set up correctly:
[name@server ~]$ mysql
MariaDB [(none)]> show databases;
MariaDB [(none)]> quit
Do not use the -p
or -h
options as arguments when running mysql
. The required password and server name are taken automatically from your .my.cnf
file.
It is acceptable to submit a long-running SQL command from the head node, as most of the CPU usage is taken from the database server side. However, if you run a script which issues SQL commands and uses lots of CPU, then it needs to be submitted as a job to the scheduler. See Running jobs for details.
Set up your MySQL database
In order to be able to set up MySQL tables and query them, you need to create your own database. To create a database, the name of the database is arbitrary but it must start with "username_" where "username" is your MySQL username. For example, if your username were "david" the name of the database must start with "david_" and the commands to create a database called "david_db1", for example, would be:
[name@server ~]$ mysql
MariaDB [(none)]> CREATE DATABASE david_db1;
MariaDB [(none)]> quit
You may create multiple MySQL databases as long as they all start with "username_". The created databases will automatically be accessible only to you from the Cedar head node, Cedar compute nodes, and Cedar Portal. You will have full privileges to create SQL objects such as tables, views, etc.
Work with your MySQL database
Suppose you have account "david" and have created a database called "david_db1" and want to use it. Here's how:
[name@server ~]$ mysql
MariaDB [(none)]> -- List available databases. Confirm david_db1 is in the list
MariaDB [(none)]> SHOW DATABASES;
MariaDB [(none)]> -- Get into the database
MariaDB [(none)]> USE david_db1;
MariaDB [(none)]> ... Issue SQL commands. See below for information.
MariaDB [(none)]> quit
Resources for using MariaDB:
- MariaDB Knowledgebase
- MariaDB Training and Tutorials
- MariaDB SQL Statement Structure
- MariaDB Optimization and Indexes
All MySQL account holders on Cedar can share their own databases. To share a table of your database with other users:
- Run the command
mysql
to connect to MySQL. - Run the command
USE database;
- "database" is the name of the database that you would like to share a table from.
- Run the command
GRANT priv_type ON mytable TO ′user′@'172.%';
- "priv_type" is the type of privilege you would like to grant.
- "mytable" is the name of the table.
- "user" is the username you would like to share your table with.
MySQL sharing example
Username "david" would like to share his table, "mytable" from database, "david_db" with username "john" for reading only. Here are commands he needs to run:
[name@server ~]$ mysql
MariaDB [(none)]> USE david_db;
MariaDB [(none)]> GRANT SELECT on mytable to 'john'@'172.%';
MariaDB [(none)]> quit;
Cedar PostgreSQL server
The Cedar Postgres server has Postgres along with the PostGIS extension.
The Cedar PostgreSQL server runs as a VM called "cedar-pgsql-vm" (full name: cedar-pgsql-vm.int.cedar.computecanada.ca). Users who have accounts on the PostgreSQL server are able to connect through the main Cedar head node (cedar.computecanada.ca), Cedar compute nodes, and Cedar Portal.
For security, users cannot make an SSH connection to the database server directly.
To get an account and database on the Cedar PostgreSQL server, send a request to our Technical support with the following information:
- Your Alliance username
- Amount of database space needed for your project
- If you need the PostGIS extension for the database
PostgreSQL account and connection
The PostgreSQL account we create for you will have the same username as your Alliance username. You will be given a database. The name of the database will typically be "<username>_db" where <username> is your Alliance username. You cannot create a database yourself. If you need more than one database, please send a request to Technical support.
You do not need to supply a password to access your PostgreSQL account. For security reasons your Alliance password must NEVER be required or used in a script. This also means that one user cannot access another user's database directly.
Run the "psql" client to connect to the PostgreSQL server. An older version of the client may be available without loading a module, but it will not give you access to the latest features of PostgreSQL. We recommend loading the following module to use a more recent version of the client:
[name@server ~]$ module load postgresql [name@server ~]$ psql --version
Work with your PostgreSQL database
Suppose you have account "david" and have been assigned a database called "david_db". Here is an example of how to use it from the Cedar head node:
[name@server ~]$ psql -h cedar-pgsql-vm -d david_db
david_db=> -- List names of tables in your database
david_db=> \dt
david_db=> ... Issue SQL commands. See below for more information.
david_db=> -- Quit
david_db=> \q
Resources for using PostgreSQL:
You can share your data in your PostgreSQL database with others. This is how:
- The person with whom you want to share access must have a Postgres account on the system. They should apply for one as described above.
- You will have to give the person
connect
access to your database. - For each table or view to be shared, you give the person one or more of
select, update, insert
, anddelete
access to it. - You can also revoke access to a table, view, or database.
Here is an example of user 'david' sharing a table with user 'kim':
[name@server ~]$ psql -h cedar-pgsql-vm -d david_db
david_db=> -- Give kim connect access to the database
david_db=> grant connect on database david_db to kim;
david_db=> -- Give kim select-only access to a table called mytable
david_db=> grant select on mytable to kim;
david_db=> -- Quit
david_db=> \q
Here is an example of user 'kim' accessing the shared table:
[name@server ~]$ psql -h cedar-pgsql-vm -d kim_db
kim_db=> -- Connect to the database containing the table to be accessed
kim_db=> \c david_db
david_db=> -- Display the rows in the shared table
david_db=> select * from mytable;
david_db=> -- Quit
david_db=> \q
Here is an example of user 'david' revoking access to 'kim':
[name@server ~]$ psql -h cedar-pgsql-vm -d david_db
david_db=> -- Revoke kim's select-only access to a table called mytable
david_db=> revoke select on mytable from kim;
david_db=> -- Revoke kim's connect access to the database
david_db=> revoke connect on database david_db from kim;
david_db=> -- Quit
david_db=> \q
Graham MySQL server
The steps for obtaining and using an account on the Graham MySQL server are similar to those described above for Cedar.
Cloud-based database servers
Database as a Service (DBaaS)
If a VM is not sufficient to run a database load, a managed database can be used instead, the current offering includes MySQL/MariaDB and Postgres on a physical system. The database systems as well as all databases are being backed up once a day. The backups are archived for 3 months. To request access, please contact Technical support.
Please provide in your request the client network or IP address you will access the database from.
Type | Hostname | TCP port |
---|---|---|
mysql | dbaas101.arbutus.cloud.computecanada.ca | 3306 |
pgsql | dbaas101.arbutus.cloud.computecanada.ca | 5432 |
The CA certificate which is used to sign the host certificate for the service, is available for download here.
PostgreSQL database
Your instance will use an ssl connection to connect to the DBaaS host. The example below connects to the DBaaS host, as user01 and uses the database dbinstance via an ssl connection.
psql --set "sslmode=require" -h dbaas101.arbutus.cloud.computecanada.ca -U user01 -d dbinstance Password for user user01: SSL connection (protocol: TLSv1.3, cipher: TLS_AES_256_GCM_SHA384, bits: 256, compression: off) dbinstance=> \l dbinstance List of databases Name | Owner | Encoding | Collate | Ctype | Access privileges ------------+--------+----------+-------------+-------------+------------------- dbinstance | user01 | UTF8 | en_US.UTF-8 | en_US.UTF-8 | user01=CTc/user01 (1 row)
The ssl connection is enforced and plain text connections fail.
MariaDB/MySQL database
Your instance will use an ssl connection to connect to the DBaaS host. The example below connects to the DBaaS host, as user01 and uses the database dbinstance via an ssl connection.
mysql --ssl -h dbaas101.arbutus.cloud.computecanada.ca -u user01 -p dbinstance Enter password: MariaDB [dbinstance]> show databases; +--------------------+ | Database | +--------------------+ | dbinstance | | information_schema | +--------------------+ 2 rows in set (0.001 sec)
If you try to use a plain text connection, your authentication will fail.
mysql -h dbaas101.arbutus.cloud.computecanada.ca -u user01 -p dbinstance Enter password: ERROR 1045 (28000): Access denied for user 'user01'@'client.arbutus' (using password: YES)