LoginSignup
0
0

More than 5 years have passed since last update.

MySQL5.6のCentOS6へのインストール方法(2015/10月現在)

Last updated at Posted at 2015-09-30

リポジトリ設定

$ yum install http://dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm

インストール

$ yum install mysql-community-server

バージョンの確認

$ mysqld --version
mysqld  Ver 5.6.26 for Linux on x86_64 (MySQL Community Server (GPL))

自動起動設定

$ chkconfig mysqld on
$ chkconfig --list mysqld
  mysqld            0:off   1:off   2:on    3:on    4:on    5:on    6:off

サーバの起動

$ service mysqld start

サーバの停止

$ /etc/init.d/mysqld stop
0
0
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
0
0