Skip to content

Instantly share code, notes, and snippets.

@Synchro
Forked from kamermans/build_mysql51.sh
Last active August 29, 2015 14:07
Show Gist options
  • Save Synchro/d2e697b3968f27446a62 to your computer and use it in GitHub Desktop.
Save Synchro/d2e697b3968f27446a62 to your computer and use it in GitHub Desktop.
#!/bin/bash
set -e
wget http://dev.mysql.com/get/Downloads/MySQL-5.1/mysql-5.1.73.tar.gz
tar -zxf mysql-5.1.73.tar.gz
cd mysql-5.1.73
./configure '--prefix=/usr' '--exec-prefix=/usr' '--libexecdir=/usr/sbin' '--datadir=/usr/share' '--localstatedir=/var/lib/mysql' '--includedir=/usr/include' '--infodir=/usr/share/info' '--mandir=/usr/share/man' '--with-system-type=debian-linux-gnu' '--enable-shared' '--enable-static' '--enable-thread-safe-client' '--enable-assembler' '--enable-local-infile' '--with-fast-mutexes' '--with-big-tables' '--with-unix-socket-path=/var/run/mysqld/mysqld.sock' '--with-mysqld-user=mysql' '--with-libwrap' '--without-readline' '--with-ssl' '--without-docs' '--with-extra-charsets=all' '--with-plugins=max' '--with-embedded-server' '--with-embedded-privilege-control'
make
sudo make install
@Synchro
Copy link
Author

Synchro commented Oct 3, 2014

Fixed download URL, updated to latest 5.1, removed cd to home

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment