CougTek
Hairy Aussie
I followed this guide to install Mariadb 5.5 alongside MySQL 5.5.31. It went smoothly up to the point where I'm supposed to copy and edit my-medium.cnf. It's because, the file isn't there. There's a my-medium.cnf.sh in /opt/mariadb/support-files, but no my-medium.cnf. Same goes for my-small.cnf and my-large.cnf.
In details, this is what I did so far, as a root :
#> cp mariadb-5.5.31.tar.gz /opt
#> cd /opt
#opt> tar -zxvf mariadb-5.5.31.tar.gz
#opt> mkdir mariadb-data
#opt> ln -s mariadb-5.5.31 mariadb
#opt> groupadd --system mariadb
#opt> useradd -c "MariaDB Server" -d /opt/mariadb -g mariadb --system mariadb
#opt> chown -R mariadb:mariadb mariadb-5.5.31/
#opt> chown -R mariadb:mariadb mariadb-data/
Then I'm supposed to :
#opt> cp mariadb/support-files/my-medium.cnf mariadb-data/my.cnf
But the file isn't there. Why the how-to guides in Linux NEVER correspond to what we see on the screen when we try to actually do what they lead you to do?
OS is Debian 7.0, with an updated kernel (3.8.2). MySQL-server 5.5.31 is installed and running on port 3306. I'm not familiar with the installation of databases on Linux (or elsewhere, for that matter). Anyone has an idea what to do to complete the installation of MariaDB?
In details, this is what I did so far, as a root :
#> cp mariadb-5.5.31.tar.gz /opt
#> cd /opt
#opt> tar -zxvf mariadb-5.5.31.tar.gz
#opt> mkdir mariadb-data
#opt> ln -s mariadb-5.5.31 mariadb
#opt> groupadd --system mariadb
#opt> useradd -c "MariaDB Server" -d /opt/mariadb -g mariadb --system mariadb
#opt> chown -R mariadb:mariadb mariadb-5.5.31/
#opt> chown -R mariadb:mariadb mariadb-data/
Then I'm supposed to :
#opt> cp mariadb/support-files/my-medium.cnf mariadb-data/my.cnf
But the file isn't there. Why the how-to guides in Linux NEVER correspond to what we see on the screen when we try to actually do what they lead you to do?
OS is Debian 7.0, with an updated kernel (3.8.2). MySQL-server 5.5.31 is installed and running on port 3306. I'm not familiar with the installation of databases on Linux (or elsewhere, for that matter). Anyone has an idea what to do to complete the installation of MariaDB?