1 |
< |
### RPM external mysql 5.0.45 |
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 |
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 |
|
|