Results 1 to 2 of 2

Thread: Mysql guide that works?

  1. #1
    Join Date
    Aug 2020
    Location
    The Server Room
    Beans
    42
    Distro
    Ubuntu

    Mysql guide that works?

    hi i am trying to install mysql 5.5.62 on my ubuntu 18.04 server and i cant actually find a guide that works

    anybody got one

    thanks
    Last edited by math492m; September 15th, 2020 at 11:25 AM.

  2. #2
    Join Date
    Apr 2014
    Location
    Tucson AZ, USA
    Beans
    1,057
    Distro
    Ubuntu

    Re: Mysql guide that works?

    Is there a reason you need exactly that version? Why not just use the one in the repositories? (Prefer MariaDB myself, screw Oracle!)

    Code:
    sudo apt update && sudo apt install -y mysql-server
    If not then can probably manually compile with the Debian backport instructions although I strongly recommend you stick with the newest stable version.

    Code:
    sudo apt update && sudo apt-get install packaging-dev devscripts equivs dirmngr
    *EDIT* you may or may not need dirmngr. I recall needing it because I've also used this process to build packages from a few PPA's on Debian. It would fail unless I had dirmngr installed.

    Do this next part in a dedicated folder to keep it easy to clean up.

    (it wasn't accepting code tags properly for the next line)

    dget -x
    https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/mysql-5.5/5.5.62-0ubuntu0.14.04.1/mysql-5.5_5.5.62-0ubuntu0.14.04.1.dsc




    Afterwards follow these instructions https://wiki.debian.org/SimpleBackportCreation starting at the Install Build Dependencies section. I also tend to skip the fakeroot part.

    I make no guarantees this will work of course. You may need to chase down potentially changed dependency names and such in the Control file. I've used this process in the past to get MergerFS from Ubuntu repos > Debian before it was a standard package there.
    Last edited by Tadaen_Sylvermane; September 15th, 2020 at 05:55 PM.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •