auser / cloudfoundry-quickstart

Quickstart with cloudfoundry
Other
32 stars 6 forks source link

mysql_node not starting #2

Closed garethr closed 13 years ago

garethr commented 13 years ago

Great job on these recipes. I ran into one problem with the mysql_node service not starting. vcap services would list it as stopped. Bit of investigation in /tmp/vcap-run/ showed that access to mysql via 127.0.0.1 wasn't working. Testing with mysql -u root -p (success) vs mysql -u root -p -h 127.0.0.1 (fail) confirmed it.

Changing mysql to bind to 127.0.0.1 rather than the node ip should resolve that,