04:55 $ brew install mariadb ==> Installing mariadb dependency: openssl ==> Downloading https://homebrew.bintray.com/bottles/openssl-1.0.2d_1.yosemite.bottle.tar.gz ######################################################################## 100.0% ==> Pouring openssl-1.0.2d_1.yosemite.bottle.tar.gz ==> Caveats A CA file has been bootstrapped using certificates from the system keychain. To add additional certificates, place .pem files in /usr/local/etc/openssl/certs
and run /usr/local/opt/openssl/bin/c_rehash
This formula is keg-only, which means it was not symlinked into /usr/local.
Apple has deprecated use of OpenSSL in favor of its own TLS and crypto libraries
Generally there are no consequences of this for you. If you build your own software and it requires this formula, you'll need to add to your build variables:
==> Summary 🍺 /usr/local/Cellar/openssl/1.0.2d_1: 464 files, 18M ==> Installing mariadb ==> Downloading https://homebrew.bintray.com/bottles/mariadb-10.0.21.yosemite.bottle.tar.gz ######################################################################## 100.0% ==> Pouring mariadb-10.0.21.yosemite.bottle.tar.gz ==> /usr/local/Cellar/mariadb/10.0.21/bin/mysql_install_db --verbose --user=HamnLee --basedir=/usr/lo ==> Caveats A "/etc/my.cnf" from another install may interfere with a Homebrew-built server starting up correctly.
To connect: mysql -uroot
To have launchd start mariadb at login: ln -sfv /usr/local/opt/mariadb/*.plist ~/Library/LaunchAgents Then to load mariadb now: launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mariadb.plist Or, if you don't want/need launchctl, you can just run: mysql.server start ==> Summary 🍺 /usr/local/Cellar/mariadb/10.0.21: 530 files, 130M
Alternatively you can run: '/usr/local/Cellar/mariadb/10.0.21/bin/mysql_secure_installation'
which will also give you the option of removing the test databases and anonymous user created by default. This is strongly recommended for production servers.
See the MariaDB Knowledgebase at http://mariadb.com/kb or the MySQL manual for more instructions.
You can start the MariaDB daemon with: cd'/usr/local/Cellar/mariadb/10.0.21' ; /usr/local/Cellar/mariadb/10.0.21/bin/mysqld_safe --datadir='/usr/local/var/mysql'
You can test the MariaDB daemon with mysql-test-run.pl cd'/usr/local/Cellar/mariadb/10.0.21/mysql-test' ; perl mysql-test-run.pl
Please report any problems at http://mariadb.org/jira
The latest information about MariaDB is available at http://mariadb.org/. You can find additional information about the MySQL part at: http://dev.mysql.com Support MariaDB development by buying support/new features from MariaDB Corporation Ab. You can contact us about this at sales@mariadb.com. Alternatively consider joining our community based development effort: http://mariadb.com/kb/en/contributing-to-the-mariadb-project/
$ mysql -uroot -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 4 Server version: 10.0.21-MariaDB Homebrew
Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h'for help. Type '\c' to clear the current input statement.
MariaDB [(none)]> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | test | +--------------------+ 4 rows inset (0.01 sec)
151006 13:05:14 [ERROR] mysqld: File ‘/usr/local/var/mysql/aria_log_control’ not found (Errcode: 13 “Permission denied”) 151006 13:05:14 [ERROR] mysqld: Got error ‘Can’t open file’ when trying to use aria control file ‘/usr/local/var/mysql/aria_log_control’ 151006 13:05:14 [ERROR] Plugin ‘Aria’ init function returned error. 151006 13:05:14 [ERROR] Plugin ‘Aria’ registration as a STORAGE ENGINE failed.