+ All Categories
Home > Education > PHP mysql Installing my sql 5.1

PHP mysql Installing my sql 5.1

Date post: 18-Jul-2015
Category:
Upload: syed-mudasir-shah
View: 473 times
Download: 2 times
Share this document with a friend
Popular Tags:
19
Discovering SQL INSTALLING INSTALLING MySQL 5.1 MySQL 5.1 Community Server Community Server
Transcript
Page 1: PHP mysql  Installing my sql 5.1

Discovering SQL

INSTALLING INSTALLING

MySQL 5.1 MySQL 5.1

Community Server Community Server

Page 2: PHP mysql  Installing my sql 5.1

Download MySQL 5.1 from the MySQL official site:

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

Windows (x86, 32-bit), MSI Installer

Double click on the mysql-5.1.49-win32.msi icon

Page 3: PHP mysql  Installing my sql 5.1

3

Click [Next] button

Page 4: PHP mysql  Installing my sql 5.1

4

Select the Typical installation optionClick [Next] button

Page 5: PHP mysql  Installing my sql 5.1

5

Click [Install] button

Page 6: PHP mysql  Installing my sql 5.1

6

Click [Yes] button to allow the installation

Page 7: PHP mysql  Installing my sql 5.1

7

The installation can take some time depending onyour computer’s hardware configuration

Page 8: PHP mysql  Installing my sql 5.1

8

Click [Next] button

Page 9: PHP mysql  Installing my sql 5.1

9

Click [Next] button

Page 10: PHP mysql  Installing my sql 5.1

10

While configuration could be performed at later time, this tutorial does it as part of the installation process.

Click [Finish] button

Page 11: PHP mysql  Installing my sql 5.1

11

Click [Yes] button to continue the setup

Page 12: PHP mysql  Installing my sql 5.1

12

Click [Next] button

Page 13: PHP mysql  Installing my sql 5.1

13

Select the Standard Configuration optionClick [Next] button

Page 14: PHP mysql  Installing my sql 5.1

14

Select the Install As Windows Service option; check box to include MySQL \bin directory in Windows PATH

environmental variable – this will facilitate using MySQL from command line.

Click [Next] button

On Windows machines it is recommended to install server-type software as “Windows Service” as opposed to application. The advantages are that the MySQL server could start automatically on the machine startup, and will run in background thus utilizing fewer resources

Page 15: PHP mysql  Installing my sql 5.1

15

Select the Modify Security Settings option andselect the root password

Click [Next] button

Password for administrative account is the key to the kingdom. Make it reasonably secure and safeguard it. Creating an Anonymous Account would allow anyone to connect to your database server without user ID and password; this could be potentially compromise security in your environment

Page 16: PHP mysql  Installing my sql 5.1

16

Click [Execute] button

Page 17: PHP mysql  Installing my sql 5.1

17

Click [Finish] button

Page 18: PHP mysql  Installing my sql 5.1

18

This screen shows the MySQL 5.1 database service running on your Windows machine (the console is accessible from the Administrative Tools menu).

Page 19: PHP mysql  Installing my sql 5.1

MySQL 5.1 Community Server

MySQL Community Server is a full featured free open source relational database server popular used by many open source projects as storage engine

Acquired by Oracle Corporation in 2009, MySQL is currently released under GNU General Public License (version 2, with linking exception)


Recommended