Hello. I installed mariadb114-client and mariadb114-server from pkg on FreeBSD 14.1-RELEASE-p2. Despite being a fresh install I'm unable to start mysql-server.
Running (as root)
The weird thing is that I can start the server without any problems with
P.S. As I have wireguard(client) running on this machine I believed that's the issue, but disabling wireguard does not help.
Running (as root)
service mysql-server start
shows the Starting mysql.
message right after but it takes about 10 seconds for the command to finish running for some reason. Running service mysql-server status
then returns mysql is not running.
, so there is definitely something wrong. I've tried removing /var/db/mysql
but it still doesn't work after creating the directory structure automatically.The weird thing is that I can start the server without any problems with
cd /usr/local; /usr/local/bin/mysqld_safe --datadir='/var/db/mysql'
. Running service -v mysql-server start
doesn't show more logs and I'm unable to find anything on /var/log/messages as well. Is there anything else I should check here? Thanks.P.S. As I have wireguard(client) running on this machine I believed that's the issue, but disabling wireguard does not help.