3306
MySQL and MariaDB database server
MySQL / MariaDB Database
What is port 3306?
Port 3306 is the default port for MySQL and MariaDB, the most widely used open-source relational databases. They power WordPress, Drupal, Laravel, Magento, and countless other applications. This port must never be accessible from the internet — it is among the first ports scanned by attackers. Always bind MySQL to 127.0.0.1 and use an SSH tunnel for remote administration.
Quick checks
$
nc -zv example.com 3306
$
nmap -p 3306 example.com
$
telnet example.com 3306