diff options
author | James Meyer <james.meyer@operamail.com> | 2012-12-05 16:42:07 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2012-12-05 16:42:07 (GMT) |
commit | 3ec5ecd6751d34076601560814ec2a82d3ad0702 (patch) | |
tree | ccb5ce0c05ec2b443956c87a153d6bd8258d69ef /abs/core/mysql | |
parent | 1e14254595134c958ef0b38daa5f6519b48b74e7 (diff) | |
download | linhes_pkgbuild-3ec5ecd6751d34076601560814ec2a82d3ad0702.zip linhes_pkgbuild-3ec5ecd6751d34076601560814ec2a82d3ad0702.tar.gz linhes_pkgbuild-3ec5ecd6751d34076601560814ec2a82d3ad0702.tar.bz2 |
mysql: removed binary logging from my.cnf
These files can get rather large and eat up all the space on the database partition.
refs #874
Diffstat (limited to 'abs/core/mysql')
-rwxr-xr-x | abs/core/mysql/PKGBUILD | 4 | ||||
-rw-r--r-- | abs/core/mysql/__changelog | 3 | ||||
-rwxr-xr-x | abs/core/mysql/my.cnf | 4 |
3 files changed, 6 insertions, 5 deletions
diff --git a/abs/core/mysql/PKGBUILD b/abs/core/mysql/PKGBUILD index 5d9cbb7..17850bd 100755 --- a/abs/core/mysql/PKGBUILD +++ b/abs/core/mysql/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=mysql pkgname=('libmysqlclient' 'mysql-clients' 'mysql') pkgver=5.5.28 -pkgrel=1 +pkgrel=2 arch=('i686' 'x86_64') license=('GPL') url="https://www.mysql.com/products/community/" @@ -127,7 +127,7 @@ package_mysql(){ } md5sums=('da8ddb3d00e6e159153d2444360f52a8' 'e7eb2faeab755cbb2fe03542bf328da9' - '698827c2380bd5f831f2b8160cee4cae' + 'e0f0c53cb6e3cead8896fa1f0c902789' '6ea6ceb360d09a774e87335ee098ddd5' '2fa6e456964d4ff5e6d4f9ff0126aed6' 'a0e1460c276a50a9666c331de83271f2') diff --git a/abs/core/mysql/__changelog b/abs/core/mysql/__changelog index 6aac3a6..ec41d21 100644 --- a/abs/core/mysql/__changelog +++ b/abs/core/mysql/__changelog @@ -1 +1,2 @@ -data dir /data/srv/mysql
\ No newline at end of file +data dir /data/srv/mysql +removed binary logging diff --git a/abs/core/mysql/my.cnf b/abs/core/mysql/my.cnf index 457a750..6d24cfa 100755 --- a/abs/core/mysql/my.cnf +++ b/abs/core/mysql/my.cnf @@ -54,10 +54,10 @@ join_buffer_size = 128K # Replication Master Server (default) # binary logging is required for replication -log-bin=mysql-bin +#log-bin=mysql-bin # binary logging format - mixed recommended -binlog_format=mixed +#binlog_format=mixed # required unique id between 1 and 2^32 - 1 # defaults to 1 if master-host is not set |