投稿

ラベル(MySQL)が付いた投稿を表示しています

[忘備録] Alpine LinuxにMySQL導入

Alpine LinuxにMySQL導入 公式の wiki でも書かれていますがAplineではmysqlのパッケージをインストールするとMariaDBがインストールされる様です。こちらの方が速くてシンプルだと。今はそうかもしれませんし、実際は私もMaria入れようかな、と思っていたのでちょうどよかったのですが、パッケージ名は決してmysqlではないよーな。。。本当に入れたい時はどうするの??笑 Install とはいえ、このままMariaDBをインストールします。 apk add mysql mysql-client 公式のwikiの通りインストール・設定していきます。 私がインストールしたVersionは Server version: 10.6.9-MariaDB です。他のVersionでは、以降に出てくるSQLのシンタックスが異なることがあります。その場合は調べてください。。。 最初に書いてある The datadir located at /var/lib/mysql must be owned by the mysql user and group. The location of the datadir can be changed by editing the mariadb service file in /etc/init.d . The new location will also need to be set by adding datadir=<YOUR_DATADIR> in the [mysqld] section in a mariadb configuration file. Normal initialization of mariadb can be done as follows: Initialize the main mysql database, and the data dir as standardized to /var/lib/mysql by running /etc/init.d/mariadb setup Start the main service. At this point there will be no root password set. ...