How to start MySQL server on OSX?

Cannot find path to MySQL server?

  • Answer:

    First you need to create a database/user via cPanel -> MySQL Databases. Second you need to connect to the database via PHP script: <?php // Connect. mysql_connect($host, $user, $pass) or die ("Couldn't connect to database."); // Select database. mysql_select_db($database) or die ("Couldn't select database."); // Execute query... $result = mysql_query("query"); ?>

KeylaGreensleeve at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

First you need to create a database/user via cPanel -> MySQL Databases. Second you need to connect to the database via PHP script: <?php // Connect. mysql_connect($host, $user, $pass) or die ("Couldn't connect to database."); // Select database. mysql_select_db($database) or die ("Couldn't select database."); // Execute query... $result = mysql_query("query"); ?>

Parul

I suggest that you uninstall mysql server and install wamp instead its free http://fzy.be/o Basicly you get apache, mysql and PHP This will give you web control panel for mysql. after you install go to http://localhost/phpmyadmin/ if you still want to use the mysql command line you can it will be much easer to find where mysqld is.

intikad i

I suggest that you uninstall mysql server and install wamp instead its free http://fzy.be/o Basicly you get apache, mysql and PHP This will give you web control panel for mysql. after you install go to http://localhost/phpmyadmin/ if you still want to use the mysql command line you can it will be much easer to find where mysqld is.

intikad i

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.