Javaっと。

Javaに関する事を綴っていきます。

環境構築手順まとめはこちら

Java + Tomcat + Eclipse + Seasar2 + MySQL 環境構築手順 その4

前回はSeasar2のサンプルアプリケーションを作成しました。

今回は、MySQLのインストールを行います。

MySQLのインストール

1.MySQLインストーラのダウンロード。

以下URLにアクセス。

http://dev.mysql.com/downloads/windows/installer/

 

下段の「Windows (x86, 32-bit), MSI Installer」の「Download」ボタンをクリック。

f:id:JavaMaster:20141217230833p:plain

 

「No thanks, just start my download.」をクリック。

f:id:JavaMaster:20141217230949p:plain

ファイルのダウンロードが開始されます。

 

2.MySQLインストールExeを実行。

mysql-installer-community-5.6.XX.0.msi」ファイルをクリックし、実行する。

3.「Install MySQL Products」をクリック。

f:id:JavaMaster:20141217231312p:plain

4.「I accept the license terms」にチェックを入れて、「Next」ボタンをクリック。

f:id:JavaMaster:20141217231406p:plain

5.「Skip the check fot updates」にチェックを入れて、「Next」ボタンをクリック。

f:id:JavaMaster:20141217231447p:plain

6.「Custom」にチェックを入れて、「Next」ボタンをクリック。

f:id:JavaMaster:20141217231524p:plain

7.「Applications」を選択し、「MySQL Workbench CE 6.1.7」にのみチェックを入れる。(他にチェックがついている場合は外す)

f:id:JavaMaster:20141217231619p:plain

8.「MySQL Connectors」を選択し、「Connector/J 5.1.31」にのみチェックを入れる。(他にチェックがついている場合は外す)

f:id:JavaMaster:20141217231714p:plain

9.「Documentation」のチェックを外し、「Next」ボタンをクリック。

f:id:JavaMaster:20141217231747p:plain

10.「Next」ボタンをクリック。

f:id:JavaMaster:20141217231833p:plain

11.「Exexute」ボタンをクリック。

f:id:JavaMaster:20141217231917p:plain

インストールが開始されます。

12.インストール完了後、「Next」ボタンをクリック。

f:id:JavaMaster:20141217232024p:plain

13.「Next」ボタンをクリック。

f:id:JavaMaster:20141217232104p:plain

14.「Show Advanced Options」にチェックを入れて、「Next」ボタンをクリック。

f:id:JavaMaster:20141217232148p:plain

15.「MySQL Root Password」と「Repeat Password」にRoot(管理者)のパスワードを入力し、「Next」ボタンをクリック。

f:id:JavaMaster:20141217232408p:plain

16.「Next」ボタンをクリック。

f:id:JavaMaster:20141217232537p:plain

17.「Next」ボタンをクリック。

f:id:JavaMaster:20141217232608p:plain

インストールが開始されます。

18.インストール完了後、「Next」ボタンをクリック。

f:id:JavaMaster:20141217232731p:plain

19.「Finish」ボタンをクリック。

f:id:JavaMaster:20141217232801p:plain

 

以上で、MySQLのインストールは完了です。

次回は

MySQLでサンプルデータベースを作成していきます。