-
Notifications
You must be signed in to change notification settings - Fork 847
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch from MySQL 5.5 to MariaDB 5.5
This is the first step in #876 and #949. Switching to MariaDB available in the official Ubuntu 14.04 repositories is a very safe change and it paves way to easily upgrade to 10.0 or 10.1 in a later step.
- Loading branch information
Showing
6 changed files
with
20 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# Custom MySQL configuration to save the root user's password for both client | ||
# Custom MariaDB/MySQL configuration to save the root user's password for both client | ||
# and mysqladmin access. This allows us to use `mysql -u root` to access | ||
# MySQL rather than having to use a password. | ||
[client] | ||
user = root | ||
password = root | ||
|
||
[mysqladmin] | ||
[mysqladmin] | ||
user = root | ||
password = root | ||
password = root |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters