MacOSにMariaDBを入れる
homebrewからぶち込め。
$ brew install mariadb
==> mariadb
A "/etc/my.cnf" from another install may interfere with a Homebrew-built
server starting up correctly.
MySQL is configured to only allow connections from localhost by default
To have launchd start mariadb now and restart at login:
brew services start mariadb
Or, if you don't want/need a background service you can just run:
mysql.server start
接続
インストール中のメッセージによるとlocalhostからしか接続できないようになっているそうだ。
起動
インストール中のメッセージによるとMariaDBの起動は以下のコマンドで行えとしている。
- 恒常的な起動は:brew services start mariadb
- 単発的な起動は:mysql.server start