Not able to install mysql on Ubuntu 14.2 -
i trying
# sudo apt install mysql-server-5.6
executing query showing
reading package lists... done building dependency tree reading state information... done might want run 'apt-get -f install' correct these: following packages have unmet dependencies: mysql-server : depends: mysql-server-5.5 not going installed mysql-server-5.6 : depends: mysql-client-5.6 (>= 5.6.19-0ubuntu0.14.04.1) not going installed depends: mysql-server-core-5.6 (= 5.6.19-0ubuntu0.14.04.1) not going installed recommends: mysql-common-5.6 not going installed e: unmet dependencies. try 'apt-get -f install' no packages (or specify solution).
i followoing tutorial.
how install this???
you have install dependencies, can see below :
the following packages have unmet dependencies: mysql-server : depends: mysql-server-5.5 not going installed mysql-server-5.6 : depends: mysql-client-5.6 (>= 5.6.19-0ubuntu0.14.04.1) not going installed depends: mysql-server-core-5.6 (= 5.6.19-0ubuntu0.14.04.1) not going installed recommends: mysql-common-5.6 not going installed
first have install dependencies :
sudo apt-get install mysql-server-5.5 sudo apt-get install mysql-common-5.6
finally can install mysql-server :
sudo apt-get install mysql-server-5.6
Comments
Post a Comment