nicudotro Asked: 2009-05-04 18:23:04 +0800 CST2009-05-04 18:23:04 +0800 CST 2009-05-04 18:23:04 +0800 CST Install a mysql-cluster 5.1 in ubuntu 9.04 772 I have 4 servers with Ubuntu 9.04 I want to install mysql-cluster 5.1 but the package in the ubuntu repository doeas not have ndb binaries. What is the beast way to install mysql 5.1 with ndb binaries in ubuntu 9.04 ubuntu mysql cluster 3 Answers Voted Adam Gibbins 2009-05-04T18:27:13+08:002009-05-04T18:27:13+08:00 I'd say compile it yourself. Best Answer hernan43 2009-05-05T10:28:10+08:002009-05-05T10:28:10+08:00 The mysql website offers non-RPM binaries of their cluster server: http://dev.mysql.com/downloads/cluster/7.0.html#Linux_(non_RPM_packages) I've used their pre-packaged binaries in the past and they seem to be pretty easy to use. They are about as easy to install as it gets without using a package manager. dotplus 2009-05-07T07:11:23+08:002009-05-07T07:11:23+08:00 The Best Practice solution to this problem of "package X is not available (with the options I need) on my desired OS distribution" is: "Build it yourself and make a package for your desired OS distribution and document the process of doing so." Partial Reasoning: You are likely to want to repeat the process either on other machines in your environment or when you need to upgrade. You add to the wealth and usefulness of the communities of both the package (MySQL) and your OS distribution.
I'd say compile it yourself.
The mysql website offers non-RPM binaries of their cluster server:
http://dev.mysql.com/downloads/cluster/7.0.html#Linux_(non_RPM_packages)
I've used their pre-packaged binaries in the past and they seem to be pretty easy to use. They are about as easy to install as it gets without using a package manager.
The Best Practice solution to this problem of "package X is not available (with the options I need) on my desired OS distribution" is:
"Build it yourself and make a package for your desired OS distribution and document the process of doing so."
Partial Reasoning: