summaryrefslogtreecommitdiff
path: root/support-files
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '10.0' into 10.1Vicențiu Ciorbaru2017-01-167-8/+240
|\
| * Merge branch '5.5' into 10.0Vicențiu Ciorbaru2017-01-126-2/+51
| |\
| | * MDEV-11676 Starting service with mysqld_safe_helper fails in SELINUX ↵Sergei Golubchik2017-01-116-2/+51
| | | | | | | | | | | | | | | | | | | | | "enforcing" mode compile, and install selinux policy for mysqld_safe_helper on centos6. the policy was created as described in https://mariadb.com/kb/en/mariadb/what-to-do-if-mariadb-doesnt-start/#other-selinux-changes
| * | Merge remote-tracking branch 'origin/5.5' into 10.0vicentiu2017-01-061-7/+1
| |\ \ | | |/
| | * Numerous issues in mysqld_safeSergei Golubchik2016-12-221-7/+1
| | |
* | | Merge branch '10.0' into 10.1Sergei Golubchik2016-09-291-1/+1
|\ \ \ | |/ /
| * | Merge branch '5.5' into 10.0Sergei Golubchik2016-09-291-1/+1
| |\ \ | | |/
| | * mysqld_safe: close stdout and stderrSergei Golubchik2016-09-291-1/+1
| | | | | | | | | | | | | | | when they're not needed anymore. Helps when daemonizing it from mysql.init
* | | Merge branch '10.0' into 10.1Sergei Golubchik2016-09-281-1/+1
|\ \ \ | |/ /
| * | Merge branch '5.5' into 10.0Sergei Golubchik2016-09-271-1/+1
| |\ \ | | |/
| | * Merge branch 'mysql/5.5' into 5.5Sergei Golubchik2016-09-111-1/+1
| | |\ | | | | | | | | | | | | 80% reverted
| | | * Bug#24464380 PRIVILEGE ESCALATION USING MYSQLD_SAFETerje Rosten2016-08-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Argument to malloc-lib must be included in restricted list of directories, symlink guards added, and mysqld and mysqld-version options restricted to command line only. Don't redirect errors to stderr.
* | | | MDEV-10507: MariaDB 10.1 + wsrep fails to start under systemd post-rebootNirbhay Choubey2016-08-221-1/+2
| | | | | | | | | | | | | | | | /var/run/mysqld must be created before wsrep recovery.
* | | | MDEV-10538: MariaDB fails to start without galera_recovery in systemd modeNirbhay Choubey2016-08-222-8/+13
| | | | | | | | | | | | | | | | | | | | Update ExecStartPre scripts to not fail if 'galera_recovery' script is not available.
* | | | MDEV-10404 - Improved systemd service hardening causes SELinux problemsSergey Vojtovich2016-08-172-2/+4
| | | | | | | | | | | | | | | | Disabled NoNewPrivileges until SELinux policy is fixed.
* | | | MDEV-10298: Systemd hardeningCraig Andrews2016-07-122-0/+20
| | | | | | | | | | | | | | | | Add ProtectSystem=full, NoNewPrivileges=true, PrivateDevices=true, and ProtectHome=true to the systemd units.
* | | | MDEV-10004: Galera's pc.recovery process fails in 10.1 with systemdNirbhay Choubey2016-06-272-3/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Galera recovery process works in two phases. In the first phase, mysqld is started as non-daemon with --wsrep-recover to recover and fetch the last logged global transaction ID. This ID is then used in second phase as the start position (--wsrep-start-position=XX) to start mysqld as daemon. As this process was implemented in mysqld_safe script, the recovery did not work when server was started using systemd. Fixed by introducing a shell script (wsrep_recovery.sh) that mimics the first phase of the recovery process.
* | | | MDEV-10145: Systemd fails to start mysqld in multi-instance modeNirbhay Choubey2016-06-271-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | --defaults-xxx options must be placed before all other options in the command line. Also moved MYSQLD_OPTS at the end so that its options take precedence.
* | | | Merge branch '10.0' into 10.1Sergei Golubchik2016-05-041-3/+3
|\ \ \ \ | |/ / /
| * | | Fixed failing test cases and compiler warningsMonty2016-04-251-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Fixed wait condition in kill_processlist-6619 - Updated Ssl_chiper for openssl tests - Added supression for valgrinds when using libcrypto - Fixed wrong argument to pthread_mutex in server_audit.c when compiling with debug - Adding missing debug_sync_update() to debug_sync.h - Added initializers to some variables and fixed error handling in jsonudf.cpp - Fixed cluster_filter_unpack_varchar which doesn't have a stable index type. - Updated compiler_warnings.supp
* | | | MDEV-9095 - [PATCH] systemd capability for --memlockSergey Vojtovich2015-12-222-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Adjust systemd files to enable CAP_IPC_LOCK to allow rootless mlockall (triggered by memlock option). This is amended version of a patch originally submitted by Daniel Black.
* | | | MDEV-9209 - [PATCH] scripts: Do not prepend the prefix to absolute pathsSergey Vojtovich2015-12-221-7/+7
| | | | | | | | | | | | | | | | Allow absolute paths for INSTALL_*DIR.
* | | | Merge branch '10.0' into 10.1Sergei Golubchik2015-12-212-3/+20
|\ \ \ \ | |/ / /
| * | | Merge branch '5.5' into 10.0Sergei Golubchik2015-12-131-1/+1
| |\ \ \ | | |/ /
| | * | MDEV-8607 Init script doesn't check all applicable configuration groupsSergei Golubchik2015-12-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | use --mysqld instead of naming all groups explicitly https://github.com/MariaDB/server/pull/92
| * | | Fixed problems found by buildbot:Monty2015-11-271-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Better error from check_slave_param - Better error message from TokuDB if it can't be compiled. - Marked rpl_mixed_drop_create_temp_table and rpl_stm_drop_create_temp_table as big tests to stop timeout failures on power8 - Added sync_slave_with_master to semisync_future-7591 to ensure that slave is up to date with master before calling rpl_end. - Disabled compiler warnings from connect and mroonga and on MacOSX. Mroonga: - Fixed bug when testing if file is a normal file that can be deleted - Marked a lot of date and datetime test to not run on macosx. This is because mktime() can't handle negative years and this restricts mroonga so that it can only store dates after the year 1900.
* | | | MDEV-9227 : Both CentOS service names mysql and mariadb exist?Nirbhay Choubey2015-12-091-8/+0
| | | | | | | | | | | | | | | | | | | | As 10.1 has systemd support, there is no longer need to set _SYSTEMCTL_SKIP_REDIRECT/SYSTEMD_NO_WRAP.
* | | | Merge branch 'github/10.0-galera' into 10.1Sergei Golubchik2015-11-191-0/+8
|\ \ \ \
| * \ \ \ Merge tag 'mariadb-10.0.22' into 10.0-galeraNirbhay Choubey2015-10-312-16/+11
| |\ \ \ \ | | |/ / /
| * | | | Merge branch '5.5-galera' into 10.0-galeraNirbhay Choubey2015-09-251-0/+8
| |\ \ \ \
| | * | | | MDEV-8803: Debian jessie 8.2 + MariaDB 10.1.7 + GaleraClusterNirbhay Choubey2015-09-151-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Merge fix for issue #127 from mysql-wsrep (commit : a0ba0d7) * Also, cherry-picked a similar fix for OpenSUSE (commit : 7790cb1)
| | * | | | Merge tag 'mariadb-5.5.44' into 5.5-galeraNirbhay Choubey2015-06-211-2/+2
| | |\ \ \ \
| | * \ \ \ \ Merge branch '5.5' into 5.5-galeraNirbhay Choubey2015-02-184-32/+42
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| | * \ \ \ \ \ Merge revisions from maria/5.5 (5.5.41)Nirbhay Choubey2014-12-221-11/+13
| | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bzr merge -r4393 lp:maria/5.5
| | * | | | | | | MDEV-7319 : Galera bootstrap (/etc/init.d/mysql bootstrap)Nirbhay Choubey2014-12-201-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | returns code 0 on failure Modified init script to return with proper exit status for bootstrap command. [Based on Kenny Rasschaert's suggestion]
| | * | | | | | | bzr merge -rtag:mariadb-5.5.40 maria/5.5Nirbhay Choubey2014-10-091-6/+12
| | |\ \ \ \ \ \ \
| | * | | | | | | | Moved wsrep_slave_threads to optional settings.Nirbhay Choubey2014-09-241-1/+1
| | | | | | | | | |
| | * | | | | | | | Updated config files:Nirbhay Choubey2014-09-232-8/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Removed QC restriction - Added bind-address Fixed file permissions for wsrep_sst_rsync.sh.
| | * | | | | | | | bzr merge -r3997..4010 codership-mysql/5.5Nirbhay Choubey2014-08-061-1/+4
| | | | | | | | | |
| | * | | | | | | | Local merge of mariadb-5.5.39Nirbhay Choubey2014-08-063-4/+16
| | |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bzr merge -r4264 maria/5.5 Text conflict in sql/mysqld.cc Text conflict in storage/xtradb/btr/btr0cur.c Text conflict in storage/xtradb/buf/buf0buf.c Text conflict in storage/xtradb/buf/buf0lru.c Text conflict in storage/xtradb/handler/ha_innodb.cc 5 conflicts encountered.
| | * | | | | | | | | 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-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| | * | | | | | | | | bzr merge -r3985..3997 codership/5.5Nirbhay Choubey2014-06-101-1/+1
| | | | | | | | | | |
| | * | | | | | | | | bzr merge -rtag:mariadb-5.5.38 maria/5.5Nirbhay Choubey2014-06-102-2/+3
| | |\ \ \ \ \ \ \ \ \
| | * | | | | | | | | | * Removed unnecessary duplicate script files.Nirbhay Choubey2014-04-181-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Updated failing mtr tests.
| | * | | | | | | | | | Merge lp:codership-mysql/5.5 -r3961..3980.Jan Lindström2014-04-162-0/+2
| | | | | | | | | | | |
| | * | | | | | | | | | Merge from lp:maria/5.5 to maria-5.5.37 release revision 4154.Jan Lindström2014-04-1617-2/+23
| | |\ \ \ \ \ \ \ \ \ \
| | * \ \ \ \ \ \ \ \ \ \ Merge from maria/5.5 (-rtag:mariadb-5.5.36).Nirbhay Choubey2014-02-253-69/+104
| | |\ \ \ \ \ \ \ \ \ \ \
| | * \ \ \ \ \ \ \ \ \ \ \ Merge of maria/5.5 into maria-5.5-galera.Nirbhay Choubey2014-01-293-2/+12
| | |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bzr merge -r tag:mariadb-5.5.35 maria/5.5
| | * | | | | | | | | | | | | Merging revision 3839..3932 from codership-mysql/5.5.Nirbhay Choubey2014-01-091-28/+1
| | | | | | | | | | | | | | |