Created
June 22, 2018 06:41
-
-
Save ammarfaizi2/7f15b032ed0027e6d8055a5c51cbf08a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[client] | |
port = 3306 | |
socket = /var/run/mysqld/mysqld.sock | |
[mysqld_safe] | |
socket = /var/run/mysqld/mysqld.sock | |
nice = 0 | |
[mysqld] | |
skip-grant-tables | |
user = mysql | |
port = 3306 | |
bind-address= 127.0.0.1 | |
pid-file = /var/run/mysqld/mysqld.pid | |
socket = /var/run/mysqld/mysqld.sock | |
#old-passwords | |
#basedir = /usr | |
#datadir = /var/lib/mysql | |
#tmpdir = /tmp | |
#lc-messages-dir = /usr/share/mysql | |
#skip-external-locking | |
#key_buffer = 16M | |
#max_allowed_packet = 16M | |
#thread_stack = 192K | |
#thread_cache_size = 8 | |
#myisam-recover = BACKUP | |
#query_cache_limit = 1M | |
#query_cache_size = 16M | |
#log_error = /var/log/mysql/error.log | |
#expire_logs_days = 10 | |
#max_binlog_size = 100M | |
#[mysqldump] | |
#quick | |
#quote-names | |
#max_allowed_packet = 16M | |
[mysql] | |
#[isamchk] | |
#key_buffer = 16M | |
# !includedir /etc/mysql/conf.d/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment