UbuntuでBaas (MySQL インストール編)

あら、これだけ。



sudo apt-get install mysql-server

まぁ、ユーザーも追加しとこうかな。


create database testdb;
create user 'testuser'@localhost identified by x'password';
grant all on testdb.* to 'testuser';