Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialtrishadring
4,599 PointsHow do i find out the port number i should use for my website?
simple question
3 Answers
Chi Lee
3,431 PointsYou can also run the following SQL query in MySQL console or phpMyAdmin -> Query window to get the port number:
SHOW VARIABLES WHERE variable_name = 'port';
Jeff Busch
19,287 PointsHi trisha,
Port number for what? Different services use different ports. The apache web port is probably 80. Are you talking about a hosting service?
Put this in a file, call it whatever you want as long as it has a php extension. I just name mine phpinfo.php. Put this on your website and run it from your browser. It will give you more info than you will ever use.
<?php
phpinfo();
?>
Jeff
trishadring
4,599 Pointsim trying to find out the port number to use when connect to my database example the one for MAMP =8889
Jeff Busch
19,287 PointsI'm not a Mac user (Linux) but I believe 8889 is correct. You can still use the script I provided above. Since you get so much information, use the browser find function and enter mysql.
trishadring
4,599 Pointsthat worked thank you :)