2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

CentOSにMySQLのインストール/アンインストール

Last updated at Posted at 2021-03-14

備忘録

環境

  • CentOS 7

MySQLのインストール

mysqlの公式に、各OS毎のyumリポジトリがありますので、自分のOSに合うもののダウンロードページへ行きます。

# ここは人によって違う
$ yum install https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm

$ yum -y install mysql-community-server

$ systemctl enable mysqld.service
$ systemctl start mysqld.service

# 表示された最後の文字列がパスワード
$ sudo grep password /var/log/mysqld.log

# MySQLログイン
$ mysql -u root -p

アンインストール

アンインストールは上記の逆を行う

# インストールされているMySQL一覧
$ rpm -qa | grep -i mysql

# 全部削除
$ sudo yum remove mysql*

参考

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?