Hi, this is not a bug but a normal behavior, mariadb server will refuse to finalize the setup if port 3306 is already in use.
You can reproduce this with the following command: $ sudo nc -l 3306 and in another terminal: $ sudo apt install mariadb-server-10.0 To finish the installation, just shutdown the service listening on port 3306 and execute the following command: $ sudo apt install You can check which service is listening on port 3306 with the following command: $ sudo netstat -plantu | grep 3306 Remember that you can change the mariadb default listening port: https://mariadb.com/kb/en/library/configuring-mariadb-with-mycnf/ ** Changed in: mariadb-10.0 (Ubuntu) Status: Confirmed => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1576836 Title: package mariadb-server-10.0 cannot be installed if port 3306 is already in use To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/mariadb-10.0/+bug/1576836/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
