Spaces:
Build error
Build error
Demosthene-OR
commited on
Commit
•
9ca27ec
1
Parent(s):
62c0e63
Upload my.cnf
Browse files
my.cnf
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# For advice on how to change settings please see
|
2 |
+
# http://dev.mysql.com/doc/refman/9.0/en/server-configuration-defaults.html
|
3 |
+
|
4 |
+
[mysqld]
|
5 |
+
bind-address = 0.0.0.0
|
6 |
+
#
|
7 |
+
# Remove leading # and set to the amount of RAM for the most important data
|
8 |
+
# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
|
9 |
+
# innodb_buffer_pool_size = 128M
|
10 |
+
#
|
11 |
+
# Remove leading # to turn on a very important data integrity option: logging
|
12 |
+
# changes to the binary log between backups.
|
13 |
+
# log_bin
|
14 |
+
#
|
15 |
+
# Remove leading # to set options mainly useful for reporting servers.
|
16 |
+
# The server defaults are faster for transactions and fast SELECTs.
|
17 |
+
# Adjust sizes as needed, experiment to find the optimal values.
|
18 |
+
# join_buffer_size = 128M
|
19 |
+
# sort_buffer_size = 2M
|
20 |
+
# read_rnd_buffer_size = 2M
|
21 |
+
|
22 |
+
host-cache-size=0
|
23 |
+
skip-name-resolve
|
24 |
+
datadir=/var/lib/mysql
|
25 |
+
socket=/var/run/mysqld/mysqld.sock
|
26 |
+
secure-file-priv=/var/lib/mysql-files
|
27 |
+
user=mysql
|
28 |
+
|
29 |
+
pid-file=/var/run/mysqld/mysqld.pid
|
30 |
+
[client]
|
31 |
+
socket=/var/run/mysqld/mysqld.sock
|