Skip to content

Commit 42b4c78

Browse files
author
tcpdumpfbacke
committed
EN-GB update Creating databases and users on your database server for Web - Hosting
1 parent 45b76a2 commit 42b4c78

File tree

9 files changed

+563
-11
lines changed

9 files changed

+563
-11
lines changed

pages/web/hosting/create-db-and-user-on-db-server/guide.de-de.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ section: SQL Private
66
order: 2
77
---
88

9-
**Letzte Aktualisierung am 16.09.2020**
9+
**Letzte Aktualisierung am 30.10.2020**
1010

1111
## Ziel
1212

@@ -30,9 +30,9 @@ Loggen Sie sich in Ihr [OVHcloud Kundencenter](https://www.ovh.com/auth/?action=
3030
Füllen Sie die Felder gemäß den angegebenen Kriterien ein. Sie können direkt einen Benutzer erstellen, indem Sie **Benutzer erstellen** anhaken.
3131

3232
- **Name der Datenbank** (Pflichtfeld): Dies ist der Name Ihrer zukünftigen Datenbank.
33-
- **Benutzername**: Geben Sie hier den Namen des Benutzers ein, der sich mit Ihrer Datenbank verbinden und Anfragen ausführen kann (optional, wenn bei **Benutzer erstellen** kein Haken gesetzt wurde).
34-
- **Rechte** (optional, wenn in dem Feld kein Haken gesetzt wurde): Hier handelt es sich um die Benutzerrechte, die dem Benutzer der Datenbank gewährt werden. Für eine standardmäßige Verwendung wählen Sie `Administrator`{.action} aus. Berechtigungen können im Nachhinein verändert werden.
35-
- **Passwort**/**Passwort bestätigen** (optional, wenn in dem Feld kein Haken gesetzt wurde): Geben Sie das gewünschte Passwort ein und bestätigen Sie es anschließend durch erneute Eingabe.
33+
- **Benutzername**: Geben Sie hier den Namen des Benutzers ein, der sich mit Ihrer Datenbank verbinden und Anfragen ausführen kann (nur relevant, wenn bei **Benutzer erstellen** ein Haken gesetzt wird).
34+
- **Rechte** (nur, wenn das Feld angehakt wurde): Hier handelt es sich um die Benutzerrechte, die dem Benutzer der Datenbank gewährt werden. Für eine standardmäßige Verwendung wählen Sie `Administrator`{.action} aus. Berechtigungen können im Nachhinein verändert werden.
35+
- **Passwort**/**Passwort bestätigen** (nur, wenn das Feld angehakt wurde): Geben Sie das gewünschte Passwort ein und bestätigen Sie es anschließend durch erneute Eingabe.
3636

3737
Klicken Sie dann auf `Bestätigen`{.action}.
3838

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
---
2+
title: 'Creating databases and users on your database server'
3+
slug: create-databases-and-users
4+
excerpt: 'Find out how to create a database on your database server'
5+
section: Private SQL
6+
order: 2
7+
---
8+
9+
**Last updated 30th October 2020**
10+
11+
## Objective
12+
13+
A database (DB) is used to store what are known as dynamic elements, such as comments or articles. These databases are used in virtually all modern content management systems (CMS), such as WordPress or Joomla!.
14+
15+
**This guide explains how to create a database on your database server and give access to users.**
16+
17+
## Requirements
18+
19+
- a [Private SQL Web Hosting plan](https://www.ovh.com/asia/web-hosting/sql-options.xml)
20+
- access to the [OVHcloud Control Panel](https://ca.ovh.com/auth/?action=gotomanager)
21+
22+
## Instructions
23+
24+
### Creating a database
25+
26+
Log in to your [OVHcloud Control Panel](https://ca.ovh.com/auth/?action=gotomanager) and select `Web Cloud`{.action} in the top navigation bar. Click `Databases`{.action} in the services bar on the left-hand side, then choose the SQL instance concerned. Click on the `Databases` tab, then on `Add database`{.action}.
27+
28+
![private-sql](images/private-sql-createdb01.png){.thumbnail}
29+
30+
Fill in the fields by following the criteria listed. You can create a user directly by ticking the **Create User** box.
31+
32+
- **Database name** (obligatory): this will be your database’s name.
33+
- **Username**: This is name of the user that can log in to your database and perform requests (only applicable if the **Create User** box is ticked).
34+
- **Rights** (only if the box is ticked): the permissions that will be associated with the user on the database. For standard usage, select `Administrator`{.action}. The permissions can be modified as follows.
35+
- **Password**/**Confirm password** (only if the box is ticked): enter a password, then confirm it.
36+
37+
Finally, click `Confirm`{.action}.
38+
39+
![private-sql](images/private-sql-createdb02.png){.thumbnail}
40+
41+
### Adding a user
42+
43+
To use an OVHcloud database server, you need to create users with specific rights to connect to a database.
44+
45+
Log in to your [OVHcloud Control Panel](https://ca.ovh.com/auth/?action=gotomanager) and select `Web Cloud`{.action} in the top navigation bar. Click `Databases`{.action} in the services bar on the left-hand side, then choose the database name concerned. Next, switch to the `Users and rights` tab and click `Add user`{.action}.
46+
47+
![private-sql](images/private-sql-user01.png){.thumbnail}
48+
49+
Enter a “username” and a “password”, then click `Confirm`{.action}.
50+
51+
### Managing user rights
52+
53+
To allow a user to perform actions on a database, it is necessary to assign permissions to the user.
54+
55+
Log in to your [OVHcloud Control Panel](https://ca.ovh.com/auth/?action=gotomanager) and select `Web Cloud`{.action} in the top navigation bar. Click `Databases`{.action} in the services bar on the left-hand side, then choose the database name concerned. Next, switch to the `Users and rights` tab. Click on the `...`{.action} button to the right of the user concerned, then on `Manage rights`{.action}.
56+
57+
![private-sql](images/private-sql-rights01.png){.thumbnail}
58+
59+
In the left-hand column, **Database**, you will see a list of the databases on your database server.
60+
61+
The 3 types of permissions proposed are described below:
62+
63+
- **Administrator**: Authorisation of the following queries: **Select/Insert/Update/Delete/Create/Alter/Drop**
64+
- **Reading/Writing**: Authorisation of the following queries: **Select/Insert/Update/Delete**
65+
- **Read**: Authorisation of **Select** queries
66+
- **None**: No database rights
67+
68+
> [!primary]
69+
>
70+
> The distribution of rights mentioned above is unique to OVHcloud. This will allow a user with *Administrator* rights to use **DLL** (Data_Definition_Language) and **DML** (Data_Manipulation_Language), while a user with **Reading/Writing** rights will only use **DML**.
71+
72+
![private-sql](images/private-sql-rights02.png){.thumbnail}
73+
74+
#### Deleting a database
75+
76+
> [!warning]
77+
>
78+
> Before deleting a database on a database server, there is no
79+
> checking of the contents of the database. It will be deleted even if
80+
> data is still stored in it, therefore it is recommended that
81+
> a backup is created and downloaded from your side before any deletion.
82+
>
83+
84+
Log in to your [OVHcloud Control Panel](https://ca.ovh.com/auth/?action=gotomanager) and select `Web Cloud`{.action} in the top navigation bar. Click `Databases`{.action} in the services bar on the left-hand side, then choose the SQL instance concerned.
85+
86+
To delete a database on your database server, go to the `Databases` tab, then click on the `...`{.action} button to the right of the database concerned, then click `Delete the database`{.action}.
87+
88+
![private-sql](images/private-sql-deldb01.png){.thumbnail}
89+
90+
## Go further
91+
92+
Join our community of users on <https://community.ovh.com>.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
---
2+
title: 'Creating databases and users on your database server'
3+
slug: create-databases-and-users
4+
excerpt: 'Find out how to create a database on your database server'
5+
section: Private SQL
6+
order: 2
7+
---
8+
9+
**Last updated 30th October 2020**
10+
11+
## Objective
12+
13+
A database (DB) is used to store what are known as dynamic elements, such as comments or articles. These databases are used in virtually all modern content management systems (CMS), such as WordPress or Joomla!.
14+
15+
**This guide explains how to create a database on your database server and give access to users.**
16+
17+
## Requirements
18+
19+
- a [Private SQL Web Hosting plan](https://www.ovh.com.au/web-hosting/sql-options.xml)
20+
- access to the [OVHcloud Control Panel](https://ca.ovh.com/auth/?action=gotomanager)
21+
22+
## Instructions
23+
24+
### Creating a database
25+
26+
Log in to your [OVHcloud Control Panel](https://ca.ovh.com/auth/?action=gotomanager) and select `Web Cloud`{.action} in the top navigation bar. Click `Databases`{.action} in the services bar on the left-hand side, then choose the SQL instance concerned. Click on the `Databases` tab, then on `Add database`{.action}.
27+
28+
![private-sql](images/private-sql-createdb01.png){.thumbnail}
29+
30+
Fill in the fields by following the criteria listed. You can create a user directly by ticking the **Create User** box.
31+
32+
- **Database name** (obligatory): this will be your database’s name.
33+
- **Username**: This is name of the user that can log in to your database and perform requests (only applicable if the **Create User** box is ticked).
34+
- **Rights** (only if the box is ticked): the permissions that will be associated with the user on the database. For standard usage, select `Administrator`{.action}. The permissions can be modified as follows.
35+
- **Password**/**Confirm password** (only if the box is ticked): enter a password, then confirm it.
36+
37+
Finally, click `Confirm`{.action}.
38+
39+
![private-sql](images/private-sql-createdb02.png){.thumbnail}
40+
41+
### Adding a user
42+
43+
To use an OVHcloud database server, you need to create users with specific rights to connect to a database.
44+
45+
Log in to your [OVHcloud Control Panel](https://ca.ovh.com/auth/?action=gotomanager) and select `Web Cloud`{.action} in the top navigation bar. Click `Databases`{.action} in the services bar on the left-hand side, then choose the database name concerned. Next, switch to the `Users and rights` tab and click `Add user`{.action}.
46+
47+
![private-sql](images/private-sql-user01.png){.thumbnail}
48+
49+
Enter a “username” and a “password”, then click `Confirm`{.action}.
50+
51+
### Managing user rights
52+
53+
To allow a user to perform actions on a database, it is necessary to assign permissions to the user.
54+
55+
Log in to your [OVHcloud Control Panel](https://ca.ovh.com/auth/?action=gotomanager) and select `Web Cloud`{.action} in the top navigation bar. Click `Databases`{.action} in the services bar on the left-hand side, then choose the database name concerned. Next, switch to the `Users and rights` tab. Click on the `...`{.action} button to the right of the user concerned, then on `Manage rights`{.action}.
56+
57+
![private-sql](images/private-sql-rights01.png){.thumbnail}
58+
59+
In the left-hand column, **Database**, you will see a list of the databases on your database server.
60+
61+
The 3 types of permissions proposed are described below:
62+
63+
- **Administrator**: Authorisation of the following queries: **Select/Insert/Update/Delete/Create/Alter/Drop**
64+
- **Reading/Writing**: Authorisation of the following queries: **Select/Insert/Update/Delete**
65+
- **Read**: Authorisation of **Select** queries
66+
- **None**: No database rights
67+
68+
> [!primary]
69+
>
70+
> The distribution of rights mentioned above is unique to OVHcloud. This will allow a user with *Administrator* rights to use **DLL** (Data_Definition_Language) and **DML** (Data_Manipulation_Language), while a user with **Reading/Writing** rights will only use **DML**.
71+
72+
![private-sql](images/private-sql-rights02.png){.thumbnail}
73+
74+
#### Deleting a database
75+
76+
> [!warning]
77+
>
78+
> Before deleting a database on a database server, there is no
79+
> checking of the contents of the database. It will be deleted even if
80+
> data is still stored in it, therefore it is recommended that
81+
> a backup is created and downloaded from your side before any deletion.
82+
>
83+
84+
Log in to your [OVHcloud Control Panel](https://ca.ovh.com/auth/?action=gotomanager) and select `Web Cloud`{.action} in the top navigation bar. Click `Databases`{.action} in the services bar on the left-hand side, then choose the SQL instance concerned.
85+
86+
To delete a database on your database server, go to the `Databases` tab, then click on the `...`{.action} button to the right of the database concerned, then click `Delete the database`{.action}.
87+
88+
![private-sql](images/private-sql-deldb01.png){.thumbnail}
89+
90+
## Go further
91+
92+
Join our community of users on <https://community.ovh.com>.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
---
2+
title: 'Creating databases and users on your database server'
3+
slug: create-databases-and-users
4+
excerpt: 'Find out how to create a database on your database server'
5+
section: Private SQL
6+
order: 2
7+
---
8+
9+
**Last updated 30th October 2020**
10+
11+
## Objective
12+
13+
A database (DB) is used to store what are known as dynamic elements, such as comments or articles. These databases are used in virtually all modern content management systems (CMS), such as WordPress or Joomla!.
14+
15+
**This guide explains how to create a database on your database server and give access to users.**
16+
17+
## Requirements
18+
19+
- a [Private SQL Web Hosting plan](https://www.ovh.com/ca/en/web-hosting/sql-options.xml)
20+
- access to the [OVHcloud Control Panel](https://ca.ovh.com/auth/?action=gotomanager)
21+
22+
## Instructions
23+
24+
### Creating a database
25+
26+
Log in to your [OVHcloud Control Panel](https://ca.ovh.com/auth/?action=gotomanager) and select `Web Cloud`{.action} in the top navigation bar. Click `Databases`{.action} in the services bar on the left-hand side, then choose the SQL instance concerned. Click on the `Databases` tab, then on `Add database`{.action}.
27+
28+
![private-sql](images/private-sql-createdb01.png){.thumbnail}
29+
30+
Fill in the fields by following the criteria listed. You can create a user directly by ticking the **Create User** box.
31+
32+
- **Database name** (obligatory): this will be your database’s name.
33+
- **Username**: This is name of the user that can log in to your database and perform requests (only applicable if the **Create User** box is ticked).
34+
- **Rights** (only if the box is ticked): the permissions that will be associated with the user on the database. For standard usage, select `Administrator`{.action}. The permissions can be modified as follows.
35+
- **Password**/**Confirm password** (only if the box is ticked): enter a password, then confirm it.
36+
37+
Finally, click `Confirm`{.action}.
38+
39+
![private-sql](images/private-sql-createdb02.png){.thumbnail}
40+
41+
### Adding a user
42+
43+
To use an OVHcloud database server, you need to create users with specific rights to connect to a database.
44+
45+
Log in to your [OVHcloud Control Panel](https://ca.ovh.com/auth/?action=gotomanager) and select `Web Cloud`{.action} in the top navigation bar. Click `Databases`{.action} in the services bar on the left-hand side, then choose the database name concerned. Next, switch to the `Users and rights` tab and click `Add user`{.action}.
46+
47+
![private-sql](images/private-sql-user01.png){.thumbnail}
48+
49+
Enter a “username” and a “password”, then click `Confirm`{.action}.
50+
51+
### Managing user rights
52+
53+
To allow a user to perform actions on a database, it is necessary to assign permissions to the user.
54+
55+
Log in to your [OVHcloud Control Panel](https://ca.ovh.com/auth/?action=gotomanager) and select `Web Cloud`{.action} in the top navigation bar. Click `Databases`{.action} in the services bar on the left-hand side, then choose the database name concerned. Next, switch to the `Users and rights` tab. Click on the `...`{.action} button to the right of the user concerned, then on `Manage rights`{.action}.
56+
57+
![private-sql](images/private-sql-rights01.png){.thumbnail}
58+
59+
In the left-hand column, **Database**, you will see a list of the databases on your database server.
60+
61+
The 3 types of permissions proposed are described below:
62+
63+
- **Administrator**: Authorisation of the following queries: **Select/Insert/Update/Delete/Create/Alter/Drop**
64+
- **Reading/Writing**: Authorisation of the following queries: **Select/Insert/Update/Delete**
65+
- **Read**: Authorisation of **Select** queries
66+
- **None**: No database rights
67+
68+
> [!primary]
69+
>
70+
> The distribution of rights mentioned above is unique to OVHcloud. This will allow a user with *Administrator* rights to use **DLL** (Data_Definition_Language) and **DML** (Data_Manipulation_Language), while a user with **Reading/Writing** rights will only use **DML**.
71+
72+
![private-sql](images/private-sql-rights02.png){.thumbnail}
73+
74+
#### Deleting a database
75+
76+
> [!warning]
77+
>
78+
> Before deleting a database on a database server, there is no
79+
> checking of the contents of the database. It will be deleted even if
80+
> data is still stored in it, therefore it is recommended that
81+
> a backup is created and downloaded from your side before any deletion.
82+
>
83+
84+
Log in to your [OVHcloud Control Panel](https://ca.ovh.com/auth/?action=gotomanager) and select `Web Cloud`{.action} in the top navigation bar. Click `Databases`{.action} in the services bar on the left-hand side, then choose the SQL instance concerned.
85+
86+
To delete a database on your database server, go to the `Databases` tab, then click on the `...`{.action} button to the right of the database concerned, then click `Delete the database`{.action}.
87+
88+
![private-sql](images/private-sql-deldb01.png){.thumbnail}
89+
90+
## Go further
91+
92+
Join our community of users on <https://community.ovh.com>.

pages/web/hosting/create-db-and-user-on-db-server/guide.en-gb.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ section: Private SQL
66
order: 2
77
---
88

9-
**Last updated 16th September 2020**
9+
**Last updated 30th October 2020**
1010

1111
## Objective
1212

@@ -30,9 +30,9 @@ Log in to your [OVHcloud Control Panel](https://www.ovh.com/auth/?action=gotoman
3030
Fill in the fields by following the criteria listed. You can create a user directly by ticking the **Create User** box.
3131

3232
- **Database name** (obligatory): this will be your database’s name.
33-
- **Username**: This is name of the user that can log in to your database and perform requests (optional if the **Create User** box has not been ticked).
34-
- **Rights** (optional if the box is unticked): the permissions that will be associated with the user on the database. For standard usage, select `Administrator`{.action}. The permissions can be modified as follows.
35-
- **Password**/**Confirm password** (optional if the box is unticked): enter a password, then confirm it.
33+
- **Username**: This is name of the user that can log in to your database and perform requests (only applicable if the **Create User** box is ticked).
34+
- **Rights** (only if the box is ticked): the permissions that will be associated with the user on the database. For standard usage, select `Administrator`{.action}. The permissions can be modified as follows.
35+
- **Password**/**Confirm password** (only if the box is ticked): enter a password, then confirm it.
3636

3737
Finally, click `Confirm`{.action}.
3838

@@ -58,7 +58,7 @@ Log in to your [OVHcloud Control Panel](https://www.ovh.com/auth/?action=gotoman
5858

5959
In the left-hand column, **Database**, you will see a list of the databases on your database server.
6060

61-
The 3 types of permissions proposed are described below:w
61+
The 3 types of permissions proposed are described below:
6262

6363
- **Administrator**: Authorisation of the following queries: **Select/Insert/Update/Delete/Create/Alter/Drop**
6464
- **Reading/Writing**: Authorisation of the following queries: **Select/Insert/Update/Delete**
@@ -89,4 +89,4 @@ To delete a database on your database server, go to the `Databases` tab, then cl
8989

9090
## Go further
9191

92-
Join our community of users on <https://community.ovh.com>.
92+
Join our community of users on <https://community.ovh.com>.

0 commit comments

Comments
 (0)