Comments on: Making Multiple MySQL Instances on One Server https://mossiso.com/2012/07/31/making-multiple-mysql-instances-on-one-server/ mossiso = more better Mon, 22 Sep 2014 18:09:13 +0000 hourly 1 https://wordpress.org/?v=6.6.1 By: Nazar Revutsky https://mossiso.com/2012/07/31/making-multiple-mysql-instances-on-one-server/#comment-15241 Fri, 03 Jan 2014 22:14:42 +0000 http://mossiso.com/?p=1275#comment-15241 action $”Initializing MySQL database: ” /usr/bin/mysql_install_db –datadir=”$datadir” –user=mysql
should be changed, –defaults-file=”$defaultfile” is required to create proper new mysql instance:
action $”Initializing MySQL database: ” /usr/bin/mysql_install_db –defaults-file=”$defaultfile” –datadir=”$datadir” –user=mysql

]]>
By: ammon https://mossiso.com/2012/07/31/making-multiple-mysql-instances-on-one-server/#comment-10059 Mon, 26 Nov 2012 21:13:10 +0000 http://mossiso.com/?p=1275#comment-10059 In reply to Ameya.

I had not looked into mysqld_multi. Not sure I knew about it. I will have to take a look at it, though.

]]>
By: Ameya https://mossiso.com/2012/07/31/making-multiple-mysql-instances-on-one-server/#comment-10048 Fri, 23 Nov 2012 04:49:04 +0000 http://mossiso.com/?p=1275#comment-10048 Hi ammon,

that was quite descriptive. I was just wondering, if you have tried out mysqld_multi instead of this approach. Any thoughts?

]]>