Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 638 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 638 Bytes

YAWA - Database

YAWA Logo

You can connect to the database using PhpMyAdmin or MySQL client.

Credentials

  • username: dbuser
  • password: dbpassword

PhpMyAdmin

You can connect to the database using PhpMyAdmin.

  1. Go to http://localhost:8003
  2. Connect to server: database
  3. Loging with the database credentials

MySQL client

From host:

mysql -h 127.0.0.1 -P 3307 -u dbuser -p --ssl-mode=DISABLED

From database container:

mysql -h 127.0.0.1 -P 3306 -u dbuser -p

From server container:

mysql -h database -P 3306 -u dbuser -p --ssl-mode=DISABLED