Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've just made a database on mysql on my server. I want to connect to this via my website using php. This is the contents of my connections file:

$dbhost = 'localhost';
$dbuser = 'root';
$dbpass = 'password';

$conn = mysql_connect($dbhost, $dbuser, $dbpass)
    or die('Error connecting to mysql');

$dbname = 'epub';
mysql_select_db($dbname);

I know what the username/passwords are, and I know the IP address of the server. What I'm just wondering is how do I know which port to use?

share|improve this question
What type of machine is this? If its linux check if mysqld is running, either "service mysqld status" or "/etc/init.d/mysqld status" as root. – Chris Sep 17 '10 at 15:29
@Chris, It's running on a windows server, 2008. – 109221793 Sep 17 '10 at 15:31

3 Answers

up vote 4 down vote accepted

If your MySQL server runs on default settings, you don't need to specify that.

Default MySQL port is 3306.

[updated to show mysql_error() usage]

$conn = mysql_connect($dbhost, $dbuser, $dbpass)
    or die('Error connecting to mysql: '.mysql_error());
share|improve this answer
I've tried both the IP address on it's own, and with :3306 appended to the end of it, none work. Is there a way I can find out if there is a different port? I did not set up this server. – 109221793 Sep 17 '10 at 15:16
Fitst you should check what is the error you're getting from mysql_connect(). Use mysql_error() function for that. Knowing what the error is, will help us find out what is going on, and what's the actual issue. – Mchl Sep 17 '10 at 15:59
The error is: Can't connect to MySQL server on 'xxx.xx.xx.xx' (10060) – 109221793 Sep 18 '10 at 9:49
Never mind. I added a rule in the firewall settings for the port number. I thought this had been done before hand. Thanks anyway – 109221793 Sep 18 '10 at 10:08

If you specify 'localhost' the client libs default to using the filesystem system socket on a Unix system - trying the mysql_default_socket value from php.ini (if set) then the my.cnf value.

If you connect using a different tool, try issuing the command "show variables like '%socket%'"

If you want to use a network port (which is a wee bit slower) then try specifying 127.0.0.1 or a physical interface asociated with the machine.

share|improve this answer

check this out dude

<?php
// we connect to example.com and port 3307
$link = mysql_connect('example.com:3307', 'mysql_user', 'mysql_password');
if (!$link) {
    die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_close($link);

// we connect to localhost at port 3307
$link = mysql_connect('127.0.0.1:3307', 'mysql_user', 'mysql_password');
if (!$link) {
    die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_close($link);
?>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.