Starting the services
MySQL Cluster Management Daemon (ndb_mgmd)
I prefer to start stuff manually for demos as my poor little brain likes to know what is running and how they started.
Starting the management Daemon
ndb_mgmd -f /var/lib/mysql-cluster/config.ini –configdir=/var/lib/mysql-cluster –ndb-nodeid=1
Should give you an output similar to:
MySQL Cluster Management Server mysql-5.5.25 ndb-7.3.0
You can check its running with a ps -aux | grep mysql and check for the ndb_mgmd process
root 16868 3.2 0.6 30692 2804 ? Ssl 13:17 0:03 ndb_mgmd -f /var/lib/mysql-cluster/config.ini --configdir=/var/lib/mysql-cluster --ndb-nodeid=1
MySQL NDB Service
As root or sudo
sudo /usr/local/mysql/bin/ndbd &
you should get the following output:
2013-09-02 …[Read more]