installing mysql bcis 3680 enterprise programming

25
Installing MySQL BCIS 3680 Enterprise Programming

Upload: morgan-fleming

Post on 17-Jan-2016

226 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: Installing MySQL BCIS 3680 Enterprise Programming

Installing MySQL

BCIS 3680 Enterprise Programming

Page 2: 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.

Page 3: Installing MySQL BCIS 3680 Enterprise Programming

3

MySQL Community Server Download

Page 4: Installing MySQL BCIS 3680 Enterprise Programming

4

Installing MySQL

Page 5: Installing MySQL BCIS 3680 Enterprise Programming

5

Skip Undate

Page 6: Installing MySQL BCIS 3680 Enterprise Programming

6

Server Only

Page 7: Installing MySQL BCIS 3680 Enterprise Programming

7

Keep Going

Page 8: Installing MySQL BCIS 3680 Enterprise Programming

8

Get Set

Page 9: Installing MySQL BCIS 3680 Enterprise Programming

9

Almost There

Page 10: Installing MySQL BCIS 3680 Enterprise Programming

10

Go!

Page 11: Installing MySQL BCIS 3680 Enterprise Programming

11

Configuring Server

Page 12: Installing MySQL BCIS 3680 Enterprise Programming

12

Select “Show Advanced Options”

Page 13: Installing MySQL BCIS 3680 Enterprise Programming

13

Set a Password

Set password; “bcis3680” is recommended

Page 14: Installing MySQL BCIS 3680 Enterprise Programming

14

Change Service Name

Change the service name to MySQL

Page 15: Installing MySQL BCIS 3680 Enterprise Programming

15

Keep Going

Page 16: Installing MySQL BCIS 3680 Enterprise Programming

16

Keep Going

Page 17: Installing MySQL BCIS 3680 Enterprise Programming

17

Fingers Tapping…

Page 18: Installing MySQL BCIS 3680 Enterprise Programming

18

Finally!

Page 19: Installing MySQL BCIS 3680 Enterprise Programming

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

Page 20: Installing MySQL BCIS 3680 Enterprise Programming

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)

Page 21: Installing MySQL BCIS 3680 Enterprise Programming

21

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

Page 22: Installing MySQL BCIS 3680 Enterprise Programming

22

Make Sure MySQL Is in the PATH

Page 23: Installing MySQL BCIS 3680 Enterprise Programming

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.

Page 24: Installing MySQL BCIS 3680 Enterprise Programming

24

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

running: mysqlshow mysql –u root –p

Page 25: Installing MySQL BCIS 3680 Enterprise Programming

25

Now You’re Ready to Go!