Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Fix DB connection step in MySQLset up topic #8060

Merged
merged 4 commits into from
Oct 16, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/cloud/project/services-mysql.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,10 @@ Accessing the MariaDB database directly requires you to use a SSH to log in to t
mysql -h database.internal -u <username>
```

- For Pro, use the following command with db, username, and password retrieved from the `$MAGENTO_CLOUD_RELATIONSHIPS` variable.
- For Pro, use the following command with hostname, port number, username, and password retrieved from the `$MAGENTO_CLOUD_RELATIONSHIPS` variable.

```bash
mysql -h<db> -P<number> -u<username> -p<password>
mysql -h <hostname> -P <number> -u <username> -p <password>
```

## Connect to secondary database
Expand Down