]> git.pld-linux.org Git - packages/mysql.git/blob - mysqld.conf
- add old password option
[packages/mysql.git] / mysqld.conf
1 # The MySQL server configuration file.
2 # One can use all long options that the mysqld supports.
3 # Run mysqld with --help to get a whole list of available options
4 # $Id$
5
6 # This section must be the first!
7 [mysqld] 
8 datadir     = /var/lib/mysql/db
9 pid-file    = /var/lib/mysql/mysql.pid
10 port        = 3306
11 socket      = /var/lib/mysql/mysql.sock
12 user        = mysql
13
14 # Use passwords compatible with old 4.0 mysqld
15 #old-passwords
16
17 # Don't use system locking
18 #skip-locking
19
20 # Don't allow connections over the network by default 
21 skip-networking
22
23 # Emergency option. Use only if you really need this.
24 #skip-grant-tables
25
26 # Log connections and queries. It slows down MySQL so it's disabled by default
27 #log        = /var/log/mysql/log
28
29 # Log all updates. 
30 #log-update = /var/log/mysql/update
31 # Log some extra information to update log
32 #log-long-format
33
34 # Log all isam changes
35 #log-isam    = /var/log/mysql/isamlog
36
37 # Language
38 #language   = polish
39
40 #
41 # Internal server variables
42 #
43
44 #set-variable = back_log=5
45 #set-variable = connect_timeout=5
46 #set-variable = delayed_insert_timeout=300
47 #set-variable = delayed_insert_limit=100
48 #set-variable = flush_time=0
49 #set-variable = join_buffer=131072
50 #set-variable = key_buffer=8M
51 #set-variable = long_query_time=10
52 #set-variable = max_allowed_packet=1M
53 #set-variable = max_connections=100
54 #set-variable = max_connect_errors=10
55 #set-variable = max_delayed_insert_threads=20
56 #set-variable = delayed_queue_size=1000
57 #set-variable = max_join_size=4294967295
58 #set-variable = max_sort_length=1024
59 #set-variable = max_write_lock_count=4294967295
60 #set-variable = net_buffer_length=16384
61 #set-variable = record_buffer=131072
62 #set-variable = sort_buffer=2M
63 #set-variable = table_cache=64
64 #set-variable = tmp_table_size=1M
65 #set-variable = thread_stack=65536
66 #set-variable = wait_timeout=28800
67
68
69
70 #
71 # MyISAM tables options
72 #
73
74 # Don't flush key buffers between writes for any MyISAM
75 #delay-key-write-for-all-tables
76
77 # Repair automatically on open if the table wasn't closed properly.
78 myisam-recover
79
80 #set-variable = myisam_sort_buffer_size=4M
81
82
83
84 #
85 # InnoDB tables options (see MySQL manual) 
86 #
87
88 #innodb_data_home_dir = /var/lib/mysql/innodb/data
89 #innodb_data_file_path = 00:10M;01:20M
90 #set-variable = innodb_mirrored_log_groups=1
91 #innodb_log_group_home_dir = /var/lib/mysql/innodb/log
92 #set-variable = innodb_log_files_in_group=3
93 #set-variable = innodb_log_file_size=30M
94 #set-variable = innodb_log_buffer_size=8M
95
96 #innodb_flush_log_at_trx_commit=1
97 #innodb_log_arch_dir = /var/lib/mysql/innodb/log
98 #innodb_log_archive=0
99 #set-variable = innodb_buffer_pool_size=80M
100 #set-variable = innodb_additional_mem_pool_size=10M
101 #set-variable = innodb_file_io_threads=4
102 #set-variable = innodb_lock_wait_timeout=50
103
104
105 #
106 # Berkeley DB tables options
107 #
108 # Don't use berkeley db (saves a lot of memory)
109 #skip-bdb
110
111 #bdb-home          =  /var/lib/mysql/db 
112 #bdb-log-dir       =  /var/lib/mysql/bdb/log
113 #bdb-tmpdir        =  /var/lib/mysql/bdb/tmp
114
115
116 #bdb-lock-detect   =  DEFAULT
117
118 # Don't synchronously flush logs.
119 #bdb-no-sync 
120
121 # Don't start Berkeley DB in recover mode.
122 #bdb-no-recover
123
124 # Start Berkeley DB in multi-process mode (Don't use `DB_PRIVATE' 
125 # when initializing Berkeley DB
126 #bdb-shared-data
127
128 #set-variable      = bdb_max_lock=1000 
129
130
131 # used for logs rotation
132 [mysqladmin]
133 user        = mysql_logrotate 
134 password    = 
This page took 0.050423 seconds and 4 git commands to generate.