• データベースとデータベースユーザーの作成 % mysql --comments --host 127.0.0.1 --port 4000 -u root -p mysql> create database db_example; -- Creates the new database mysql> create user 'springuser'@'%' identified by 'ThePassword'; mysql>grant all on db_example.* to 'springuser'@'%';