MySQL 5.5.9 安装问题

  • When applying security settings the configuration process will fail

NOTE: There is a bug in Version 5.8.8 that prevents security application to the MySQL instance.

The following window will appear during the MySQL 5.5.9 installation process as shown in Diagram 1.

The Error Message is as shown in diagram 1.

“The security settings could not be applied to the database because the connection has failed with following error. Error Nr:1364Field ‘authentication_string’ doesn’t have a default value…” message will display as shown in Diagram 1.

Follow these simple steps to successfully overcome this issue.

Click on Skip to close this window.

diagram1.png
Diagram 1

The MySQL Server Instance Configuration wizard opens as shown in Diagram 2. 

Security could not be applied. Error Number 1364. Field ‘authentication_string’ doesn’t have a default value message is displayed.

Red color cross in the circle indicates the failure of complete installation of MySQL as shown in Diagram 2.

Click on cancel to stop the installation procedure as shown in Diagram 2.

diagram2.png
Diagram 2

At the desktop Click > Start > Run as shown in Diagram 3.

diagram3.png
Diagram 3

In the run text-box enter the command cmd as shown in Diagram 4.

diagram4.png
Diagram 4

This opens a Command Window with a Command Prompt visible.

At the Command Prompt enter the following mysql –uroot to log in to MySQL as shown in Diagram 5.

diagram6.png
Diagram 5

Before working with data held within a table it is necessary to inform the MySQL db engine which database holds the tables. The USE command specifies which database the MySQL db engine should set as active.

Use the mysql database as shown in Diagram 7.

mysql> USE mysql;
Database changed

diagram7.png
Diagram 7

Remove the NOT NULL from the authentication_string field in table user by passing following command at the mysql prompt as shown in Diagram 8.

mysql>ALTER TABLE `mysql`.`user` CHANGE `authentication_string` `authentication_string` TEXT CHARACTER SET utf8 COLLATE utf8_bin NULL ;

diagram8.png
Diagram 8

Quit the command line as shown in Diagram 9.

mysql>exit;
Bye

diagram9.png
Diagram 9

Now you rerun the Instance Configuration wizard by navigating to Start > All Programs > MySQL > MySQL Server 5.5 > MySQL Instance Configuration Wizard as shown in Diagram 10.

diagram10.png
Diagram 10

The MySQL Instance Configuration Wizard opens as shown in Diagram 11.

Click on Next to continue with the configuration of MySQL Server 5.5 server instance.

diagram11.png
Diagram 11

Select the maintenance option as shown in Diagram12.

Select Reconfigure Instance option to create a new configuration for the instance.

Click on Next to continue with the configuration wizard process as shown in Diagram 12.

diagram12.png
Diagram 12

From the MySql Server Instance Configuration Wizard select Standard Configuration and click on Next as shown in Diagram 13.

diagram13.png
Diagram 13

Check the checkbox of Include the Bin Directory in Windows PATH and click on Next as shown in Diagram 14.

diagram14.png
Diagram 14

Now Configure the MySQL Server instance with your choice of root password as shown in Diagram 11

Current root password: ????????? ( provided earlier while installing MySQL )
Enter New Root Password : ????????? ( your choice )
Enter Confirm : ???????? ( your choice )
Check the check-box of Enable root access from remote machines.
Check the check-box of Create Anonymous Account.

Click on Next as shown in Diagram 15.

diagram15.png
Diagram 15

The security settings would now successfully be applied to MySQL as shown in Diagram 16.

diagram16.png
Diagram 16

MySQL 5.5.9 will now successfully be installed on your system.

posted @ 2011-11-26 09:37  浪子の无悔  阅读(422)  评论(0编辑  收藏  举报