# MariaDB
# How to enable Remote access to your MariaDB/MySQL database
Use this on your own, better method is SSH Tunnel
Edit /etc/mysql/my.cnf like following:
# Add to end of file
[mysqld]
skip-networking=0
skip-bind-address
Verify MariaDB Server:
netstat -ant | grep 3306
You should see the following:
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN
You may also need to allow port in firewall
sudo ufw allow 3306