summaryrefslogtreecommitdiff
path: root/debian
Commit message (Collapse)AuthorAgeFilesLines
* Updated innotop on debian/additions from 1.7.1 to 1.11.4Jean Weisbuch2017-03-073-485/+1993
|
* spelling fixesklemens2017-03-073-4/+4
|
* Merge 10.0 into 10.1Marko Mäkelä2017-03-031-1/+2
|\
| * MDEV-11610: Alter Debian log rotate to not rotate binary/relay logsDaniel Black2017-03-021-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rotating binary/relay logs can cause interuption to the processing on the server. Binary and relay logs have their own mechanism already for not getting out of control (expire_logs_days). By no longer rotating binary and relay logs log rotation is limited to the following logs: * error log * general log * slow query log Writing these to the binary log would cause any logrotation on the slave to occur twice, once due to this and another due to the log- rotate script on the slave. Now --local is passed to mysqladmin to prevent this duplication.
* | mysql_install_db enhancements to facilitate Debian bug#848616 fixKristian Nielsen2017-01-171-12/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In Debian, the default install is made more secure by omitting the anonymous user and by making the root account authenticate by unix socket authentication instead of the default password-less root. However, Debian hard-codes this change in mysql_install_db, which breaks that program for other users. This commit instead implements new general options for mysql_install_db that can be used by anyone to similarly perform a more secure install: --skip-auth-anonymous-user: omits the anonymous user. --auth-root-authentication-method=normal: Keeps the existing behaviour with a password-less root account. Currently on by default. --auth-root-socket-user=USER --auth-root-authentication-method=socket: creates the MariaDB root user with the name USER (defaults to 'root') and using unix socket authentication. This way, only that user has MariaDB root access after install. The idea with --auth-root-authentication-method=normal is that applications that need this behaviour can give that option explicitly. Then eventually we could make --auth-root-authentication-method=socket the default, giving a more secure default installation. Note that it is perfectly possible to do a secure install with --auth-root-authentication-method=normal. For example, installing a private server just for local access by a single OS-level user, by using --skip-networking and putting the connection socket in a location without public access. So it is important to preserve this API for backwards compatibility.
* | Merge branch '10.0' into 10.1Vicențiu Ciorbaru2017-01-161-0/+1
|\ \ | |/
| * Fix problems from 5.5 mergeVicențiu Ciorbaru2017-01-102-0/+2
| | | | | | | | | | | | | | * Update mysqld_safe script to remove duplicated parameter --crash-script * Make --core-file-size accept underscores as well as dashes correctly. * Add mysqld_safe_helper to Debian and Ubuntu files. * Update innodb minor version to 35
* | Merge branch '10.0' into 10.1Sergei Golubchik2016-12-111-1/+0
|\ \ | |/
| * MDEV-11164 - hardening-wrapper has been removed from Debian SidSergey Vojtovich2016-10-283-3/+0
| | | | | | | | | | The hardening-wrapper package has been removed from Debian Sid. Remove dependency and relevant settings.
* | MDEV-10032 Connect engine not installable on XenialSergei Golubchik2016-06-281-2/+2
| | | | | | | | s/unixODBC/unixodbc/
* | MDEV-6211: MariaDB-Galera-server uses 'socat', but 'socat' is not in the ↵Nirbhay Choubey2016-05-051-1/+2
| | | | | | | | | | | | | | dependency list Xtrabackup-based SST method uses socat. Move it from Suggests to Depends list.
* | Merge branch '10.0' into 10.1Sergei Golubchik2016-05-041-2/+0
|\ \ | |/
| * Merge branch '5.5' into 10.0Sergei Golubchik2016-04-261-2/+0
| |\
| | * MDEV-9953 Debian packages install broken 'maria' test suite which cannot be runElena Stepanova2016-04-201-2/+0
| | | | | | | | | | | | | | | Debian packages create empty maria/t and maria/r directories, and MTR cannot run maria.* tests
* | | Merge branch 'bb-10.1-serg' into 10.1Sergei Golubchik2016-03-226-18/+14
|\ \ \
| * \ \ Merge branch '10.0' into 10.1Sergei Golubchik2016-03-216-18/+14
| |\ \ \ | | |/ /
| | * | Fixed false errors returned by logrotate scriptSergey Vojtovich2016-03-101-12/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Logrotate script assumed an error if mysqladmin failed to connect to server and there's mysqld process exists. However there can be non-system instance of mysqld running (e.g. in docker) making this assumption wrong. Check pid file existance instead.
| | * | Update AskMonty and Atlassian references to MariaDBiangilfillan2016-03-081-1/+1
| | | |
| | * | Fix spelling: occurred, execute, which etcOtto Kekäläinen2016-03-043-4/+4
| | | |
| | * | MDEV-9643: Don't emit any "deb-systemd-helper not found" warningsOtto Kekäläinen2016-02-292-4/+8
| | | |
| | * | MDEV-9354: Debian: unmask the mysql.service on installationOtto Kekäläinen2016-01-112-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Unmask the systemd mysql.service if left behind by mysql-server-5.6 Without this a simple 'apt-get install mariadb-server' would end up with a system where mysqld is not running despite it was running OK with mysql-server-5.6 installed, and users might wrongly think mariadb-server package is broken when the real cause was the removal of mysql-server-5.6 that left a /etc/systemd/system/ file behind pointing to /dev/null.
* | | | MDEV-9382: After updating mariadb server apt-configure failsNirbhay Choubey2016-03-221-1/+4
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When acting as a Galera receiver node, server startup may take more than 30 secs (the current default) as it has to wait for SST/IST operation to complete besides spending some time doing wsrep recovery. Fixed by raising the default value of MYSQLD_STARTUP_TIMEOUT to 60 secs. Also sourced /etc/default/mariadb into the init script so that it can be used to set MYSQLD_STARTUP_TIMEOUT.
* | | MDEV-9587 - Debian packaging for GSSAPI pluginSergey Vojtovich2016-03-183-0/+15
| | |
* | | mysqlreport update to 4.0, see MDEV-573 for more informationsJean Weisbuch2016-02-171-101/+429
| | |
* | | MDEV-9484 - Typo fixesDaniel Dent2016-02-172-2/+2
| | |
* | | MDEV-9259 Add missing mroonga files to Debian packaging in 10.1Sergei Golubchik2016-01-251-0/+3
| | |
* | | MDEV-9081 - Debian: insecure debian-sys-maint password handlingSergey Vojtovich2015-12-221-0/+2
| | | | | | | | | | | | | | | | | | Set umask so that newly created file is not readable by others. This is a quick fix to close security gap. To be replaced by MDEV-8375 - passwordless root login.
* | | Merge branch '10.0' into 10.1Sergei Golubchik2015-12-212-2/+1
|\ \ \ | |/ /
| * | Merge branch '5.5' into 10.0Sergei Golubchik2015-12-131-1/+1
| |\ \ | | |/
| | * fix debian logrotate slow log filenameChristian Loos2015-12-071-1/+1
| | | | | | | | | | | | | | | | | | | | | debian/additions/my.cnf sets slow_query_log_file to /var/log/mysql/mariadb-slow.log. Update the filename to rotate the slow log file.
| * | Force installation of MariaDB version of mysql-commonOtto Kekäläinen2015-12-111-5/+5
| | | | | | | | | | | | | | | | | | | | | Make dependency on mysql-common package in debian/control versioned to force that it is installed together with the other mariadb-* packages. This ensures that the init.d and systemd files for MariaDB mysqld are the ones from MariaDB.org repos.
| * | Make autobake-deb.sh to omit .git directory from source tar.gzOtto Kekäläinen2015-12-111-2/+3
| | | | | | | | | | | | | | | | | | This is useful for developers who run autobake-deb.sh directly from the source tree as the resulting source tar package will be 90% smaller and all operations regarding it consequently 10x faster.
| * | Add MySQL 5.6 stanzas next to MySQL 5.5 in debian/control fileOtto Kekäläinen2015-12-111-10/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | This should make the provides/breaks/replaces/conflicts lines work properly when upgrading from mysql-5.6 to mariadb-packages. Conflicts: debian/control
| * | Run wrap-and-sort for debian/* files. No functional changes.Otto Kekäläinen2015-12-112-95/+185
| | |
| * | Replace two identical debian/control files with a single oneOtto Kekäläinen2015-12-113-290/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The only difference between the files was the Debian standards line by one micro version. There was no logical motivation why there was separate control file for Debian and Ubuntu. The new debian/control file lives directly at the correct location and has the correct contents. Modify autobake.sh to take into account new control file location.
* | | MDEV-9227 : Both CentOS service names mysql and mariadb exist?Nirbhay Choubey2015-12-091-3/+0
| | | | | | | | | | | | | | | As 10.1 has systemd support, there is no longer need to set _SYSTEMCTL_SKIP_REDIRECT/SYSTEMD_NO_WRAP.
* | | switch from myisam_recover to myisam_recover_optionsChristian Loos2015-12-031-1/+1
| | | | | | | | | | | | | | | | | | | | | myisam_recover is only an alias for myisam_recover_options. Use the option name instead of the alias is more correct. This also avoids an note about the use of an alias instead of the option name on every server start.
* | | Merge branch 'github/10.0-galera' into 10.1Sergei Golubchik2015-11-191-1/+11
|\ \ \
| * \ \ Merge branch '5.5-galera' into 10.0-galeraNirbhay Choubey2015-09-251-1/+11
| |\ \ \
| | * | | MDEV-8803: Debian jessie 8.2 + MariaDB 10.1.7 + GaleraClusterNirbhay Choubey2015-09-151-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | * Merge fix for issue #127 from mysql-wsrep (commit : a0ba0d7) * Also, cherry-picked a similar fix for OpenSUSE (commit : 7790cb1)
| | * | | MDEV-8804: bootstrap command missing in debian init scriptNirbhay Choubey2015-09-151-1/+8
| | | | | | | | | | | | | | | | | | | | Add 'bootstrap' to debian init script.
| | * | | Merge tag 'mariadb-5.5.44' into 5.5-galeraNirbhay Choubey2015-06-214-23/+23
| | |\ \ \ | | | | |/ | | | |/|
| | * | | Update galera package nameNirbhay Choubey2015-03-042-2/+2
| | | | |
| | * | | Merge branch '5.5' into 5.5-galeraNirbhay Choubey2015-02-183-3/+3
| | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge banch 5.5 till revision : fdd6c11 - MDEV-7419 Function cli_safe_read not exported Conflicts: .bzrignore debian/dist/Debian/mariadb-galera-server-5.5.files.in debian/dist/Ubuntu/mariadb-galera-server-5.5.files.in storage/tokudb/CMakeLists.txt support-files/build-tags
| | * | | | MDEV-7204: mariadb-galera-server el7 rpms packagingNirbhay Choubey2014-12-092-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | issue, no mariadb-server in provides MDEV-7233: Fix issue with missing dependency socat when installing MariaDB-galera-server on RedhatEL/OracleEL/(Others?) RPM based * Added mariadb-server to "provides" for MariaDB Galera server package. (rpm) * Removed "socat" from MariaDB Galera server's mandatory dependency list. (rpm) * Moved "socat" from mandatory to optional dependency. (deb)
| | * | | | bzr merge -rtag:mariadb-5.5.40 maria/5.5Nirbhay Choubey2014-10-092-10/+12
| | |\ \ \ \
| | * | | | | Moved wsrep_slave_threads to optional settings.Nirbhay Choubey2014-09-241-1/+1
| | | | | | |
| | * | | | | Updated config files:Nirbhay Choubey2014-09-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Removed QC restriction - Added bind-address Fixed file permissions for wsrep_sst_rsync.sh.
| | * | | | | MDEV-6495: innodb_flush_log_at_trx_commit=0 as suggestionNirbhay Choubey2014-08-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | for galera vs =2 Updated innodb_flush_log_at_trx_commit value in cnfs as per recommendation.
| | * | | | | MDEV-3896: More user-friendly cnf files in MariaDB-Galera rpm/debNirbhay Choubey2014-07-171-1/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | packages * Added "galera" as default option group. * Updated deb/rpm server config files to include mandatory and optional settings (as comments) required to configure Galera cluster.