| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 
 | # ********************* #
#                       #
#     Sphere "Vert"     #
#                       #
# ********************* #
#
[client]
#password	= your_password
port                  = 3306
socket                = /tmp/mysql.sock
default-character-set = latin1
 
# ----------------------- #
#     access features     #
# ----------------------- #
 
user     = root
password = root
host     = localhost
 
# ================ #
# The MySQL server #
# ================ #
 
[wampmysqld]
port                    = 3306
socket                  = /tmp/mysql.sock
default-time-zone       = SYSTEM
net-buffer-length       = 64K
read_rnd_buffer_size    = 1M
 
basedir   = f:/Wamp/bin/mysql/mysql5.5.54/
datadir   = f:/Wamp/bin/mysql/mysql5.5.54/data
 
server-id = 1
 
skip-federated
skip-slave-start
 
lc-messages-dir = f:/Wamp/bin/mysql/mysql5.5.54/share
lc-messages     = fr_FR
 
date_format     = '%d-%m-%Y'
datetime_format = '%d-%m-%Y %H:%i:%s'
 
# --------------#
# fichier 'log' #
# --------------#
 
#skip-log-warnings
 
log-error = f:/Wamp/logs/mysql_error.log
 
# ----------------------------#
# Journalisation Requetes SQL #
# ----------------------------#
 
log-queries-not-using-indexes
 
slow_query_log      = 0
slow_query_log_file = mysql_slow.log
 
# --------------#
# moteur MyIsam #
# --------------#
 
myisam_sort_buffer_size = 64M
 
key_buffer_size   = 64M
read_buffer_size  = 2M
sort_buffer_size  = 64M
 
# --------------#
# moteur InnoDB #
# --------------#
 
default-storage-engine         = InnoDB
 
innodb_buffer_pool_size        = 128M
innodb_buffer_pool_instances   = 2
 
innodb_data_home_dir           = f:/Wamp/bin/mysql/mysql5.5.54/data/
innodb_data_file_path          = ibdata1:10M:autoextend
innodb_doublewrite             = 1
 
innodb_file_per_table
innodb_flush_log_at_trx_commit = 1
#innodb_force_recovery          = 1
 
innodb_io_capacity             = 2000
innodb_max_dirty_pages_pct     = 75
innodb_lock_wait_timeout       = 50
 
innodb_log_buffer_size         = 8M
innodb_log_file_size           = 256M
innodb_log_group_home_dir      = f:/Wamp/bin/mysql/mysql5.5.54/data/
 
innodb_read_io_threads         = 32
innodb_stats_on_metadata       = 0
innodb_support_xa              = 1
innodb_thread_concurrency      = 0
innodb_write_io_threads        = 32
 
# --------- #
# character #
# --------- #
 
character-set-server = latin1
collation-server     = latin1_general_ci
 
# ----------- #
# Performance #
# ----------- #
 
skip-external-locking
 
concurrent_insert            = 2
connect_timeout              = 10
 
join_buffer_size             = 512K
long_query_time              = 1
 
max_allowed_packet           = 32M
max_connections              = 4
max_heap_table_size          = 64M
 
open_files_limit             = 2048
 
query_alloc_block_size       = 8M
query_cache_limit            = 2M
query_cache_min_res_unit     = 512
query_cache_size             = 128M
query_cache_type             = 1
query_cache_wlock_invalidate = On
 
table_open_cache             = 2048
 
thread_stack                 = 1M
thread_cache_size            = 8
 
tmp_table_size               = 64M
 
wait_timeout                 = 30
 
# -----------------------------------------------------------------------
 
[mysqldump]
quick
max_allowed_packet = 16M
 
[mysql]
no-auto-rehash
 
[isamchk]
key_buffer_size  = 256M
sort_buffer_size = 256M
read_buffer      = 2M
write_buffer     = 2M
 
[myisamchk]
key_buffer_size  = 256M
sort_buffer_size = 256M
read_buffer      = 2M
write_buffer     = 2M
 
[mysqlhotcopy]
interactive-timeout
 
[mysqld]
port = 3306 | 
Partager