0

I'm trying to upgrade MySql from 5.5 to 5.6 in my Ubuntu machine. While running command

sudo apt-get install mysql-server-5.6

we encountered with warning like :

2015-07-01 18:47:58 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).

and it is stuck for more than 2hrs. How can I proceed with this?

stefun
  • 115
  • 4

1 Answers1

1

This is just a warning, it's safe to ignore it. What you really forgot to do, is dump mysql databases in 5.5, and restore them in 5.6. mysql_upgrade is not an option anymore, you have to do the dump/restore sequence when upgrading major versions.

drookie
  • 8,625
  • 1
  • 19
  • 29