Is not the mysql start command path set?

0

I'm trying to connect web service to netbeans on ubuntu with mysql server, but when I click on start this image error:

    
asked by anonymous 06.12.2014 / 14:42

1 answer

1

A MySQL server must be initialized (as well as restarted, terminated, etc.) via the command line. Usually this command is in:

/etc/init.d/mysql

To start the server, just pass start as argument, like this:

/etc/init.d/mysql start

Use this command in your Netbeans.

    
06.12.2014 / 23:08