MariaDB(MySQL)をCentOS8.4にインストール
まずはインストール
yum install mariadb-server
起動
systemctl start mariadb.service
PC起動時自動起動
systemctl enable mariadb.service
初期設定
mysql_secure_installation
Enter current password for root (enter for none):
enter
rootのパスワード入力
Remove anonymous users? [Y/n]
enter
Disallow root login remotely? [Y/n]
enter
Remove test database and access to it? [Y/n]
enter
Reload privilege tables now? [Y/n]
enter
これでphpmyadminなどからrootと先ほどのパスワードでログインできるようになる
yum install mariadb-server
起動
systemctl start mariadb.service
PC起動時自動起動
systemctl enable mariadb.service
初期設定
mysql_secure_installation
Enter current password for root (enter for none):
enter
rootのパスワード入力
Remove anonymous users? [Y/n]
enter
Disallow root login remotely? [Y/n]
enter
Remove test database and access to it? [Y/n]
enter
Reload privilege tables now? [Y/n]
enter
これでphpmyadminなどからrootと先ほどのパスワードでログインできるようになる
関連 2021-10-28 21:43:30