Install MySQL 5.5 on Ubuntu 10.04

50,462

Solution 1

Unless you have some specific problems with your environment or installation procedure, it follows the normal pattern:

Solution 2

I used The following guide to install 5.5 on Ubuntu 10.04: http://www.ovaistariq.net/490/a-step-by-step-guide-to-upgrading-to-mysql-5-5/

Everything worked perfectly except one of the final steps, launching mysql:

mysqld --skip-grant-tables --user=mysql

Was giving me the following message and then shutting down:

[ERROR] Can't find messagefile '/usr/share/errmsg.sys'

After some googling I found the solution to be adding the following flag:

--lc-messages-dir="/usr/local/mysql/share/english/"

To launch it and have it actually work, I used the following command:

 mysqld --skip-grant-tables --user=mysql --lc-messages-dir="/usr/local/mysql/share/english/"

MySQL 5.5 has some great new features that solved a partitioning issue for me; partitioning via a varchar.

Good luck!

Solution 3

add-apt-repository ppa:internetbroadcasting/mysql55onlucid
apt-get install mysql-server-5.5

Users with local apache+php5+mysql or similar combination with mysql in it would likely need to recompile mysql-dependent packages (php5-mysql), so it uses libmysqlclient18 provided by mysql-server-5.5.

Using libmysqlclient16-linked packages with mysql 5.5 installation might appear to be working initially, but would tend to crash randomly.

Solution 4

simple instructions for installation of MySQL 5.5 on Linux are documented here along with other libraries that are required.

http://www.geeksww.com/tutorials/database_management_systems/mysql/installation/download_configure_compile_and_install_mysql_558_on_linux.php

Share:
50,462

Related videos on Youtube

Mithun Sreedharan
Author by

Mithun Sreedharan

Tweets @mithunp Works @QBurst

Updated on September 17, 2022

Comments

  • Mithun Sreedharan
    Mithun Sreedharan over 1 year

    How to install the MySQL 5.5 on Ubuntu 10.04?

    apt-get install mysql-server is only allows to install 5.1.41.3ubuntu12

  • Arjan
    Arjan over 13 years
    Please summarize the steps here, rather than only plugging your own blog?
  • iDev247
    iDev247 over 11 years
    I was able to follow the instruction guide without any error. The only thing is at step "Start MySQL server without grants table." it looks like it hangs but it doesn't. Just open another terminal and continue the steps in that new terminal.
  • Hengjie
    Hengjie almost 10 years
    Don't forget to run sudo apt-get update
  • jdhildeb
    jdhildeb almost 10 years
    Due to dependencies, I needed to run: apt-get install mysql-server-5.5 mysql-server-core-5.5 mysql-client-5.5