27
26

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 5 years have passed since last update.

UbuntuにMySQLをインストールする

Last updated at Posted at 2015-04-09

Ubuntu 14.04にMySQL 5.6をインストールする方法のメモ

#リポジトリを追加
URLはMySQLのWEBサイトで確認。

$ wget http://dev.mysql.com/get/mysql-apt-config_0.3.3-2ubuntu14.04_all.deb

さらにカレントディレクトリでdpkgコマンドを実行

$ sudo dpkg -i mysql-apt-config_0.3.3-2ubuntu14.04_all.deb

以下の画面が表示されるのでServer→mysql-5.6を選択
Applyを選択して確定する。

1.Serverを選択
1.png

2.mysql-5.6を選択
2.png

3.Applyを選択
3.png

#パッケージのリストを最新化

$ sudo apt-get update

#インストールされるMySQLのバージョンを確認

$ sudo apt-cache policy mysql-server
mysql-server:
  インストールされているバージョン: (なし)
  候補:               5.6.24-1ubuntu14.04

#MySQLのインストール

$ sudo apt-get install mysql-server

rootユーザのパスワードを設定する
4.png
再度パスワードを入力
5.png

#インストールされたMySQLのバージョンを確認

$ mysql --version
mysql  Ver 14.14 Distrib 5.6.24, for Linux (x86_64) using  EditLine wrapper
27
26
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
27
26

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?