MacにMySQLを入れてみたので、備忘録的なメモ
- brew updateを行う
$brew update
$brew install mysql
- mysqlの開始
$mysql.server start
- mysqlにログイン
mysql -u root -p
- テーブル作成
create database hoge;
- 番外編 (起動しない時)
sudo /usr/local/opt/mysql/bin/mysqld_safe &
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
MacにMySQLを入れてみたので、備忘録的なメモ
$brew update
$brew install mysql
$mysql.server start
mysql -u root -p
create database hoge;
sudo /usr/local/opt/mysql/bin/mysqld_safe &
Register as a new user and use Qiita more conveniently
Go to list of users who liked