Przyrost_III/readme_init.txt

10 lines
252 B
Plaintext
Raw Normal View History

2019-02-03 20:43:36 +01:00
https://spring.io/guides/gs/accessing-data-mysql/
service mysql start
service mysql status
database:
mysql --password
create database db_example;
create user 'springuser'@'%' identified by 'ThePassword';
grant all on db_example.* to 'springuser'@'%';