ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CMSDIST/mysql.spec
(Generate patch)

Comparing COMP/CMSDIST/mysql.spec (file contents):
Revision 1.18 by elmer, Fri Nov 2 16:40:18 2007 UTC vs.
Revision 1.23 by valya, Fri Jun 5 15:56:07 2009 UTC

# Line 1 | Line 1
1 < ### RPM external mysql 5.0.18-CMS18
1 > ### RPM external mysql 5.1.35
2   ## INITENV +PATH LD_LIBRARY_PATH %i/lib/mysql
3 + ## INITENV SET MYSQL_HOME $MYSQL_ROOT
4  
5   #Different download locations according to the version.
6  
7   %if "%(echo %realversion | cut -d. -f1)" == "4"
8   %define source http://downloads.mysql.com/archives/mysql-4.0/%n-%realversion.tar.gz
9   %else
10 < %define source http://mirror.provenscaling.com/mysql/community/source/5.0/mysql-%realversion.tar.gz
10 > #%define source http://mirror.provenscaling.com/mysql/community/source/5.0/mysql-%realversion.tar.gz
11 > %define source http://opensource.become.com/mysql/Downloads/MySQL-5.1/mysql-%realversion.tar.gz
12   %endif
13  
14   Source: %source
# Line 30 | Line 32 | make %makeprocesses
32   %install
33   make install
34   perl -p -i -e "s|^#!.*perl(.*)|#!/usr/bin/env perl$1|" $(grep -r -e "^#!.*perl.*" %i | cut -d: -f1)
35 + rm -fR %i/mysql-test
36  
37   # SCRAM ToolBox toolfile
38   mkdir -p %i/etc/scram.d
# Line 58 | Line 61 | EOF_TOOLFILE
61   %{relocateConfig}bin/mysql_install_db
62   %{relocateConfig}etc/scram.d/%n
63  
64 + # setup approripate links and made post install procedure
65 + . $RPM_INSTALL_PREFIX/%{pkgrel}/etc/profile.d/init.sh
66 + cat > $MYSQL_ROOT/etc/my.cnf << EOF
67 + [mysqld]
68 + max_allowed_packet=128M
69 +
70 + max_connections = 1000
71 + connect_timeout = 60
72 +
73 + set-variable = innodb_log_file_size=512M
74 + set-variable = innodb_log_buffer_size=8M
75 + set-variable = innodb_buffer_pool_size=2G
76 + set-variable = innodb_additional_mem_pool_size=50M
77 +
78 + key_buffer=512M
79 +
80 + query_cache_type=1
81 + query_cache_limit=10M
82 + query_cache_size=128M
83 +
84 + # inodb
85 + innodb_thread_concurrency=0
86 + innodb_concurrency_tickets=10000
87 + innodb_commit_concurrency=0
88 + innodb_flush_logs_at_trx_commit=0
89 + innodb_flush_method=O_DIRECT
90 + innodb_file_io_threads = 4
91 + innodb_checksums=0
92 + innodb_doublewrite=0
93 +
94 +
95 + max_heap_table_size=1024M
96 + tmp_table_size=1024M
97 +
98 + long_query_time=5
99 + innodb_sync_spin_loops=60
100 +
101 + innodb_force_recovery = 0
102 + innodb_lock_wait_timeout = 100
103 + innodb_autoinc_lock_mode = 2
104 +
105 +
106 + [mysql.server]
107 + STRICT_TRANS_TABLES=1
108 + transaction-isolation = READ-COMMITTED
109 + EOF
110  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines