Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 318 Bytes

Prepare_DB.md

File metadata and controls

14 lines (12 loc) · 318 Bytes

Prepairing the Database

mysql -u root -p --port 8090

Do the following as root user

create database shoppingappdb;
create user shopAdmin identified with mysql_native_password by 'wrong_password';
use shoppingappdb;
grant all privileges on shoppingappdb.* to 'shopAdmin';
flush privileges;