Skip to content

Commit

Permalink
dms
Browse files Browse the repository at this point in the history
  • Loading branch information
omenking committed Apr 11, 2024
1 parent 845f749 commit 37c17b4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions dms/serverless/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

# Install MySQL and PSQL Client

```sh
sudo apt-get install -y postgresql-client
sudo apt-get install -y mysql-client
```

## Assemble PSQL Connection String

postgresql://postgres:password@<hostname>:3306/mydatabase

## Assemble MySQL Connection String

mysql://admin:password@<hostname>:5432/mydatabase


mysql -u admin -ppassword -h database-2.ck6c4llggxsy.us-east-1.rds.amazonaws.com -P 5432 database
psql postgresql://postgres:password@database-2.ck6c4llggxsy.us-east-1.rds.amazonaws.com:3306/mydatabase



0 comments on commit 37c17b4

Please sign in to comment.