Make sure your user can connect to the DB server
First of all, let's make sure the user you created has access to the database. To check this login to your server and type:
If you managed to login then that's cool. If not then your issue is probably connected with that rather than your cloud config.Going through the wizard without SSL
Unfortunatly I haven't managed to go through the wizard using TLS/SSL connection. For some reason, Nextcloud/ownCloud doesn't take it's config into consideration while in the wizard. What we have to do is to lower our guard for a while and let the cloud configure the database. Then we can switch back to the secure connection.
I have my MariaDB server configured to accept only secure TLS connections so for me the steps are to go to /etc/mysql/mariadb.conf.d/50-server.cnf
and comment out this line:
Securing everything back
Let's start securing everything back by dropping the temporary user:
Now let's go to the/etc/mysql/mariadb.conf.d/50-server.cnf
and uncomment the ssl=on
line we previously commented out.
Don't forget to restart the service:
Finally we can go to the place where you have installed the Nextcloud/ownCloud server and go to the config
folder and edit the config.php
file. Make sure you have these lines in your config and all passwords, paths, etc. adjusted to your environment. Highlighted lines are essential to establish an SSL connection:
Additionally if your DB and cloud server are on the same machine then you probably want to edit the /etc/hosts
file and add yourdbhost
there as 127.0.0.1
. It is important for MySQL driver to have the same hostname in the dbhost
setting as in the certificate! So if your certificate is registered for mysql.example.com
and it is hosted locally to the cloud server then put mysql.example.com
into the dbhost
value and also into /etc/hosts
like this:
Cutting edges
You can now refresh your cloud webpage. Everything should still be working as expected but with TLS/SSL connection! Additionally, if the DB server is hosted locally to the cloud server then you may want to change the connection to the socket. Edit cloud's config.php
once more and change the dbhost
line to look like the following (the socket may be located somewhere else on your machine):