Changes

Setup a MariaDB Database
#*Create a new root password
#*Answer Yes to all questions
##Log into the mysql database as root by running <pre>sudo mysql</pre>
#Create a database and user for webtrees by running <pre>CREATE DATABASE webtreesDB;&#10;GRANT ALL PRIVILEGES ON webtreesDB.* TO 'webtrees'@'localhost' IDENTIFIED BY 'WEBtreesPASSWORD';&#10;FLUSH PRIVILEGES;&#10;exit</pre>