3
我需要在Ubuntu服務器中安裝MySQL 5.1。我在其他問題中看到使用 deb http://packages.dotdeb.org lenny全部 但它不工作。有沒有其他的存儲庫?如何從存儲庫中安裝MySQL 5.1到Ubuntu 12.04服務器
我需要在Ubuntu服務器中安裝MySQL 5.1。我在其他問題中看到使用 deb http://packages.dotdeb.org lenny全部 但它不工作。有沒有其他的存儲庫?如何從存儲庫中安裝MySQL 5.1到Ubuntu 12.04服務器
試試這個
#!/bin/bash
set -e
cd ~/
wget http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.65.tar.gz
tar -zxf mysql-5.1.65.tar.gz
cd mysql-5.1.65
./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
這個問題似乎是題外話,因爲它是關於安裝軟件。 – Flexo