Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 774 Bytes

README.md

File metadata and controls

40 lines (32 loc) · 774 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

IntelliJ

  • Dialect: MySQL
  • Host: localhost
  • Port: 3307
  • User: dbuser
  • Password: dbpassword
  • Database: dbyawa
  • Use SSL: false

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