〇インストール方法
シェルから以下のコマンド実行します
echo "mariadb-server-10.0 mysql-server/root_password password root" | sudo debconf-set-selections
echo "mariadb-server-10.0 mysql-server/root_password_again password root" | sudo debconf-set-selections
sudo apt-get -y install mariadb-server
sudo mysql -uroot -e "CREATE DATABASE test DEFAULT CHARACTER SET utf8;"
sudo mysql -uroot -e "CREATE USER test@localhost IDENTIFIED BY 'test';"
sudo mysql -uroot -e "GRANT ALL PRIVILEGES ON test.* TO 'test'@'localhost';"
sudo mysql -uroot -e "FLUSH PRIVILEGES;"
mysql -utest -ptest -e "select version();"
0 件のコメント:
コメントを投稿