summaryrefslogtreecommitdiff
path: root/packaging
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'mysql/5.5' into 5.5mariadb-5.5.55Sergei Golubchik2017-04-111-14/+20
|\
| * Bug#25287707 THE PID-FILE VALUE IS IGNORED IN THE /ETC/MY.CNF OPTION FILETerje Rosten2017-02-142-23/+26
| | | | | | | | In SysV initscripts for RPMS [mysqld] section was ignored for some options.
| * Bug#24619033 - UNABLE TO START MYSQLD DUE TO CHANGES INShishir Jaiswal2017-01-311-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | MYSQLD_SAFE DESCRIPTION =========== Starting a mysql server by running init script: /etc/init.d/mysqld start is failing. This is happening after the changes done in script 'mysqld_safe' as a patch to Bug#24464380. ANALYSIS ======== Say customer's /etc/my.cnf has following content: [mysqld_safe] . . ledir = /mysqld_ledir mysqld = mysqld_wrapper Patch to Bug#24464380 prohibits using "mysqld" (and few other variables) in config file due to privilege reasons. Since mysqld init scripts internally calls 'mysqld_safe' script, the existing configuration has started failing. FIX === In the init script, we now pass MYSQLD_OPTS as the first argument (expected to be read from /etc/sysconfig/mysqld) to mysqld_safe command. This new variable can have all the mysqld_safe's special options as a string containing command line arguments. For example: MYSQLD_OPTS=" --ledir=/mysqld_ledir --mysqld=my_wrapper " NOTE TO THE DOCUMENTATION TEAM ============================== As mentioned above, the prohibited variables have to be moved from /etc/my.cnf to /etc/sysconfig/mysqld as a string containing command-line arguments in the form of variable MYSQLD_OPTS. We can pass mysqld options as well in this new variable which would be further passed to mysqld process.
| * Updated copyright year in user visible textBalasubramanian Kandasamy2017-01-061-2/+2
| |
| * Bug#25159791 BASEDIR: COMMAND NOT FOUND ERROR WHILE STARTING SERVER WITH ↵Balasubramanian Kandasamy2016-11-283-5/+5
| | | | | | | | INIT SCRIPTS
| * Followup fix for Bug#25088048 - ADDITIONAL ISSUES IN MYSQLD_SAFEBalasubramanian Kandasamy2016-11-261-43/+0
| | | | | | | | - Removed mysql.conf, mysqld.service and mysql-systemd-start from sles spec file
| * Bug#25088048 ADDITIONAL ISSUES IN MYSQLD_SAFETerje Rosten2016-11-168-136/+25
| | | | | | | | | | | | | | | | | | Don't read --ledir option from config file. Ignore current working for finding location of mysqld Remove use of chown/chmod in scripts. Be helpful only when basedir is /var/log or /var/lib. Removed unused systemd files for SLES. Set explicit basedir in scripts.
| * Bug#24925181 INCORRECT ISA DETECTION CODE IN OEL RPM SPECTerje Rosten2016-10-241-8/+15
| | | | | | | | | | | | | | | | | | Wrapper for mysql_config used in multilib installs modified to work as intended, added more archs (aarch64, ppc64le, s390x, s390, sparc and sparc64) to lists in fallback mode and use same script for EL and Fedora. Thanks to Alexey Kopytov for report and fix.
| * Bug#24707666: DEFAULT SETTING FOR SECURE-FILE-PRIV SHOULD BEArun Kuruvila2016-09-285-2/+32
| | | | | | | | | | | | | | | | | | RESTRICTED IN ALL GA RELEASES Back port of WL#6782 to 5.5 and 5.6. This also includes back port of Bug#20771331, Bug#20741572 and Bug#20770671. Bug#24695274 and Bug#24679907 are also handled along with this.
| * Bug#24464380 PRIVILEGE ESCALATION USING MYSQLD_SAFETerje Rosten2016-08-182-2/+2
| | | | | | | | | | | | | | 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.
| * Bug#23736787 - YUM UPDATE FAIL FROM 5.5.51(COMUNITY/COMMERCIAL) TO ↵Balasubramanian Kandasamy2016-07-051-2/+3
| | | | | | | | | | | | 5.6.32(COMUNITY/COMMERCIAL) Remove mysql_config from client sub-package
| * BUG#17903583 MYSQL-COMMUNITY-SERVER SHOULD NOT DEPEND ON ↵Terje Rosten2016-06-172-45/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | MYSQL-COMMUNITY-CLIENT (#70985) Fix is a backport of BUG#18518216/72230 to MySQL 5.5 and 5.6. Will also resolve: BUG#23605713/81384 LIBMYSQLCLIENT.SO.18 MISSING FROM MYSQL 5.7 as mysql-community-libs-5.5 or mysql-community-libs-5.6 can installed on EL6 system with libmysqlclient.16 (from MySQL 5.1) libmysqlclient.20 (from MySQL 5.7) by doing: $ rpm --oldpackage -ivh mysql-community-libs-5.5.50-2.el6.x86_64.rpm Providing a way to have several versions of libmysqlclient installed on the same system. and help: BUG#23088014/80981 LIBS-COMPAT RPMS SHOULD BE INDEPENDENT OF ALL OTHER SUBPACKAGES due to less strict coupling between -libs-compat and -common package.
| * BUG#20693338 CONFLICTS WHILE INSTALLING PACKAGES WHEN LIBMYSQLCLIENT-DEVEL ↵Terje Rosten2016-05-201-1/+0
| | | | | | | | | | | | | | INSTALLED Remove mysql_config from client package to avoid conflict (file shipped in devel package any way).
| * BUG#21879694 - /VAR/LOG/MYSQLD.LOG HAS INCORRECT PERMISSIONS AFTER ↵Balasubramanian Kandasamy2016-05-182-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | INSTALLING SERVER FROM REPO Description: This issue doesn't effect any default installation of repo rpms if user uses init scripts that are shipped as part of package but will have trouble if user tries to createdb or start server manually. After installing mysql-server from repository(yum,zypper) /var/log/mysqld.log is created with logged in user and group permissions instead of with mysql user and group permissions,due to which while creating database or starting server, it is failing Fix: Updated the user and group permissions of the /var/log/mysqld.log and /var/log/mysql/mysqld.log (for sles) files to mysql.
| * Fix for Bugs#14583183 and 19949163Sreedhar.S2016-04-141-2/+6
| |
| * BUG#22600974 - SYSV INITSCRIPT FOR RHEL DON'T ENABLE MYSQLD SERVICE BY ↵Balasubramanian Kandasamy2016-01-271-1/+1
| | | | | | | | | | | | DEFAULT Enable mysqld service by default in sysv initscrips
| * Updated copyright year in user visible textBjorn Munch2016-01-111-2/+2
| |
| * Bug#22361702 - /USR/BIN/MYSQL-SYSTEMD-START DOES NOT RETURN CONTROL TO ↵Balasubramanian Kandasamy2015-12-164-4/+4
| | | | | | | | | | | | | | COMMAND LINE If the configuration files contains multiple datadir lines, use the last datadir entry in the RPM installation scripts
* | Merge branch 'mysql/5.5' into 5.5Sergei Golubchik2015-12-091-1/+6
|\ \ | |/
| * BUG#21950975 - MYSQL RPM INSTALLER(NEW STYLE) FAILS TO CREATE 'MYSQL' USER ↵Balasubramanian Kandasamy2015-11-051-1/+1
| | | | | | | | | | | | FOR EL5 - Remove -N option in useradd for EL5 platforms
| * BUG 22005375 - DEVEL PACKAGES INSTALL FAILS IF ↵Balasubramanian Kandasamy2015-11-042-2/+2
| | | | | | | | | | | | MYSQL-CONNECTOR-C-DEVEL-6.1.6 IS INSTALLED As MySQL Connector C 6.1 is end of life, added conflict with mysql-connector-c-devel dependencies
| * BUG 21900800 - ADD OBSOLETE ON MYSQL-CONNECTOR-C-SHARED AND ↵Balasubramanian Kandasamy2015-09-302-0/+10
| | | | | | | | | | | | MYSQL-CONNECTOR-C-DEVEL As MySQL Connector C 6.1 is end of life, added conflict with mysql-connector-c-shared dependencies
| * Small change to default config for Docker-specific rpm packageLars Tangvald2015-08-191-0/+2
| | | | | | | | Syncs "official" and our own Docker images
| * Update docker package namesmysql-5.5.45Balasubramanian Kandasamy2015-06-251-6/+9
| |
| * Bug#21262883 - MYSQL-SYSTEMD-START SCRIPT ERROR WHEN USING OPTION DATADIR OR ↵Balasubramanian Kandasamy2015-06-171-1/+1
| | | | | | | | | | | | SIMILAR Fixed the syntax in mysql-systemd-start script
| * Add packaging scripts for docker buildsBalasubramanian Kandasamy2015-06-163-0/+1217
| |
* | Merge tag 'mysql-5.5.44' into bb-5.5-sergSergei Golubchik2015-06-051-2/+2
|\ \ | |/
| * Bug#20734434 - SPELLING ERROR \"EMDEDDED\" IN RPM SPEC FILESBalasubramanian Kandasamy2015-03-241-2/+2
| | | | | | | | - Updated emdedded to embedded
| * BUG#19811871 VERSION NUMBR NOT SHOWN IN LOG WHEN [RE]STARTING 5.6.21 SERVICE ↵Terje Røsten2015-03-011-2/+2
| | | | | | | | | | | | | | | | | | WITH SLES11 REPO Log file directory had too strict access rights, server not able to write to log file. Signed-off-by: Terje Røsten <terje.rosten@oracle.com>
| * BUG#20477758 CONFLICTS WHILE INSTALLING COMMUNITY PACKAGESBalasubramanian Kandasamy2015-03-011-2/+2
| | | | | | | | | | Due to large version numbers used libmysqlclient-devel packages was not considered for install. Fixed by removing version check.
| * Raise version number after cloning 5.5.42Bala2015-01-051-2/+2
| |
* | CRLF->LFSergei Golubchik2015-06-025-909/+909
| |
* | Merge remote-tracking branch 'mysql/5.5' into bb-5.5-merge @ mysql-5.5.42Sergei Golubchik2015-02-111-2/+2
|\ \
| * | Updated the copyright year in the welcome message for MySQLmysql-5.5.42Bala2015-01-061-2/+2
| |/
| * Added sles11 repo packagesBalasubramanian Kandasamy2014-11-0410-0/+2098
| |
| * Bug#19775856: When the socket option is relative, mysqld startup script ↵Balasubramanian Kandasamy2014-10-212-5/+25
| | | | | | | | fails on CentOS 6
| * Rename enterprise repo packages to commercialBalasubramanian Kandasamy2014-08-261-14/+14
| |
| * - Merge from mysql-5.5.39-ol7-release branchBalasubramanian Kandasamy2014-08-061-1/+6
| |\ | | | | | | | | | - Reverted version variable
| | * Bug#19223915 Provide mysql-compat-server dependenciesBalasubramanian Kandasamy2014-07-241-1/+6
| |/
| * Bug#19155121 - Remove perl(GD) and dtrace dependencies and bench fixBalasubramanian Kandasamy2014-07-082-5/+8
| |
| * Unconditionally disable dtrace for rpm-oel, barfs on Oracle dtraceBjorn Munch2014-07-011-1/+6
| |
| * Bug#19063012 fix embedded-devel conflict issueBalasubramanian Kandasamy2014-06-261-0/+5
| |
| * Bug#18321083 - Added bench package, enabled dtraceBalasubramanian Kandasamy2014-06-251-2/+32
| |
| * Bug#18972488 Remove packaging/rpm-uln directory from sourceBalasubramanian Kandasamy2014-06-1721-3308/+0
| |
| * Increment release version to resolve upgrade conflict issueBalasubramanian Kandasamy2014-05-111-1/+4
| |
| * - Support for enterprise packagesBalasubramanian Kandasamy2014-04-243-7/+79
| |\ | | | | | | | | | | | | - Upgrade from MySQL-* packages - Fix Cflags for el7
| | * updated optflags variable and cmake option for debug buildBalasubramanian Kandasamy2014-04-071-2/+3
| | |
| | * Fix Cflags for el7Balasubramanian Kandasamy2014-04-071-1/+6
| | |
| | * Changed permisison for filter-requires.sh and filter-provides.shBalasubramanian Kandasamy2014-04-042-0/+0
| | |
| | * Support for enterprise packagesBalasubramanian Kandasamy2014-04-031-5/+68
| | |