MariaDB wins LinuxQuestions.org Database of the Year for the Third Year Running

MariaDB was voted database of the year for the third year in succession in the LinuxQuestions.org Members Choice awards, winning 45.49% of the vote, up from 34.21% last year. Thanks to everyone from the community that voted for us.

2016 will be a busy year, including the upcoming release of MariaDB 10.2. Take a look at some of the features in the pipeline at Plans for 10.x.

And as a community-driven project, you’re of course very welcome to get involved – see some of the ways to do so here. …

MariaDB 5.5.48 and Connector/J 1.3.5 now available

The MariaDB project is pleased to announce the immediate availability of MariaDB 5.5.48 and MariaDB Connector/J 1.3.5. See the release notes and changelogs for details on these releases.

Download MariaDB 5.5.48

Release Notes Changelog What is MariaDB 5.5?

MariaDB APT and YUM Repository Configuration Generator


Download MariaDB Connector/J 1.3.5

Release Notes Changelog About MariaDB Connector/J

Thanks, and enjoy MariaDB! …

MariaDB in the Running for 2015 LinuxQuestions.org Members Choice Database of the Year

MariaDB won the 2013 and the 2014 LinuxQuestions.org Members Choice Award Database of the Year, and is in the running again for 2015 winner.

Up until 2012, MySQL held a near-monopoly on the title, having won every year since at least 2001 (except for 2002, won by PostgreSQL).

Since 2013, however, it’s been all MariaDB, and now MariaDB is going for a hat-trick of wins.

2015 was a great year for MariaDB development, and the latest stable release, 10.1, includes Galera Cluster, a true multi-master solution, table, tablespace and log encryption, page compression, replication enhancements, numerous optimizations, and a whole lot more. …

MariaDB JIRA is moving

The MariaDB JIRA instance that currently is in use for project and issue tracking will change. The current instance is hosted in Atlassian’s cloud and it has worked well, but we have hit the maximum user limit of 2000 users. It’s fantastic to see how many of you actually report bugs and other issues in the MariaDB project!

To hit that limit also means that we have to migrate over to a self-hosted instance of JIRA. Below are important details about that change.

When will the switch happen: 
Sat 27th of Feb

What is the impact for me as a user of MariaDB’s JIRA:
1.

MariaDB 10.1.11 now available

The MariaDB project is pleased to announce the immediate availability of MariaDB 10.1.11. See the release notes and changelog for details on this release.

Download MariaDB 10.1.11

Release Notes Changelog What is MariaDB 10.1?

MariaDB APT and YUM Repository Configuration Generator

Thanks, and enjoy MariaDB! …

2015 in the MariaDB Foundation

The mariadb.org website had over one million page views in 2015, a growth of about 9% since 2014. Good growth has been visible all over the MariaDB ecosystem and we can conclude that 2015 was a successful year for MariaDB.

Increased adoption

MariaDB was included for the first time in an official Debian release (version 8.0 “Jessie”) and there has been strong adoption of MariaDB 10.0 in Linux distributions that already shipped 5.5. MariaDB is now available from all major Linux distributions including SUSE, RedHat, Debian and Ubuntu.

Adoption of MariaDB in other platforms also increased, and MariaDB is now available as a database option on, among others, Amazon RDS, 1&1Azure and Juju Charm Store (Ubuntu). …

What’s new in MariaDB Connector/C 3.0 – Part I: SSL

New SSL alternatives

SSL connections in previous versions of MariaDB Connector/C are based on the OpenSSL library. But because of the OpenSSL heartbleed bug, licensing problems and the lack of support for different transport layers, we decided to add support for alternative SSL implementations.

That’s why Connector/C 3.0 can use not only OpenSSL, but also

  • GnuTLS (http://www.gnutls.org)
  • SChannel (Windows only)

On Windows Connector/C 3.0 uses SChannel by default and does not require any external SSL libraries.

Currently the SSL implementation must be selected when Connector/C is compiled. One does it by setting WITH_SSL cmake variable to one of the OPENSSL, GNUTLS, SCHANNEL, or OFF to have no SSL support at all. …

The State of SSL in MariaDB

Usually when one says “SSL” or “TLS” it means not a specific protocol but a family of protocols. Wikipedia article has the details, but in short — SSL 2.0 and SSL 3.0 are deprecated and should not be used anymore (the well-known POODLE vulnerability exploits the flaw in SSL 3.0). TLS 1.0 is sixteen years old and while it’s still being used, new security standards (for example PCI DSS v3.1) require TLS 1.1 or, preferably, TLS 1.2.

MySQL used to support TLS 1.0 since 2001. Which means MariaDB supported it from the day one, and never supported weaker SSL 2.0 or SSL 3.0. …