Since MariaDB 10.0.12 will be release today, What's the command to update my installation? Thanks !
Just the usual. You can also do a YUM LIST first to check Code: yum list MariaDB-client MariaDB-common MariaDB-compat MariaDB-devel MariaDB-server MariaDB-shared then update Code: yum update MariaDB-client MariaDB-common MariaDB-compat MariaDB-devel MariaDB-server MariaDB-shared
Maybe, we shall see. Might offer it up as an alternative so MariaDB 10 official or AXIVO MariaDB 10.. user choice
What happens if I lose connection at the point where it is running the upgrade queries? How do I recover to that point?
For yum command itself, it would just be a matter or re-running the commands. Of course you can also install linux screen and setup a dedicated screen for updates which would survive connectivity issues between your server and yourself Screen tutorials http://www.tecmint.com/screen-command-examples-to-manage-linux-terminals/ http://www.mattcutts.com/blog/a-quick-tutorial-on-screen/
added a dedicated thread for Screen for noobs https://community.centminmod.com/threads/who-uses-screen-for-linux.508/
So having it commented out is the same as having InnoDB = On since it is the default engine in MariaDB right? Is it actually XtraDB?
Code: show engines; This gives me the following: Code: MariaDB [(none)]> show engines; +--------------------+---------+----------------------------------------------------------------------------+--------------+------+------------+ | Engine | Support | Comment | Transactions | XA | Savepoints | +--------------------+---------+----------------------------------------------------------------------------+--------------+------+------------+ | CSV | YES | CSV storage engine | NO | NO | NO | | MRG_MYISAM | YES | Collection of identical MyISAM tables | NO | NO | NO | | MEMORY | YES | Hash based, stored in memory, useful for temporary tables | NO | NO | NO | | BLACKHOLE | YES | /dev/null storage engine (anything you write to it disappears) | NO | NO | NO | | MyISAM | DEFAULT | MyISAM storage engine | NO | NO | NO | | InnoDB | NO | Percona-XtraDB, Supports transactions, row-level locking, and foreign keys | NULL | NULL | NULL | | ARCHIVE | NO | Archive storage engine | NULL | NULL | NULL | | FEDERATED | NO | FederatedX pluggable storage engine | NULL | NULL | NULL | | PERFORMANCE_SCHEMA | YES | Performance Schema | NO | NO | NO | | Aria | YES | Crash-safe tables with MyISAM heritage | NO | NO | NO | +--------------------+---------+----------------------------------------------------------------------------+--------------+------+------------+ 10 rows in set (0.00 sec) I need to enable Innodb.. I've commented out the skip-innodb by doing: Code: #skip-innodb ..I've restart mysql with no luck. Any ideas? I'm a newbie, go easy on me!
UPDATE: Fixed it. I had to remove the lb_LogFileXXX under the directory /var/lib/mysql/ and restart MySQL.
@BoostN glad to see you fixed it. In future you can check mysql error log to see what the problem is. FAQ 19 at Centmin Mod FAQ - Menu based Nginx installer