Installing MySQL BCIS 3680 Enterprise Programming.

Post on 17-Jan-2016

226 views 1 download

Transcript of Installing MySQL BCIS 3680 Enterprise Programming.

Installing MySQL

BCIS 3680 Enterprise Programming

2

Installing MySQL Download the Community Server Edition of

MySQL (version 5.6.12) from the course website: http://www.cob.unt.edu/itds/faculty/wu/bcis3680/installers/mysql-installer-community-5.6.12.2.msi If you want to download the latest version, bear in

mind that it has not been tested for the course. Latest MySQL Community Server Edition:

http://dev.mysql.com/downloads/mysql/ Run the installer. Configure MySQL.

3

MySQL Community Server Download

4

Installing MySQL

5

Skip Undate

6

Server Only

7

Keep Going

8

Get Set

9

Almost There

10

Go!

11

Configuring Server

12

Select “Show Advanced Options”

13

Set a Password

Set password; “bcis3680” is recommended

14

Change Service Name

Change the service name to MySQL

15

Keep Going

16

Keep Going

17

Fingers Tapping…

18

Finally!

19

Add Path Open the Windows Environment Variables

dialog, just like what we did when configuring Tomcat.

Edit the system path variable. To the end of the current value, append the

path to the \bin subfolder of the MySQL installation folder In Windows 7 and Windows 8, the default is C:\Program Files\MySQL\MySQL Server 5.6\bin

20

Start Console with Admin Rights Right-click the Command Console icon, and

Select “Run as administrator” in the pop-up menu (Windows 7) Click the “Run as administrator” icon (Windows 8)

21

Start Console with Admin Rights Click “Yes” in the UAC dialog box.

22

Make Sure MySQL Is in the PATH

23

Quick Verification Run mysqlshow –u root –p Enter the password when prompted. If you can see a listing of the databases that

come with MySQL, your installation is good.

24

Another Fast Check List the tables in the included “mysql” DB by

running: mysqlshow mysql –u root –p

25

Now You’re Ready to Go!