Skip to content

Instantly share code, notes, and snippets.

@jjasghar
Created August 12, 2014 17:17
Show Gist options
  • Save jjasghar/ff3e49f477a979a0ff1d to your computer and use it in GitHub Desktop.
Save jjasghar/ff3e49f477a979a0ff1d to your computer and use it in GitHub Desktop.
[root@mario etc]# cat my.cnf
[client]
port = 3306
socket = /var/lib/mysql/mysql.sock
[mysqld_safe]
socket = /var/lib/mysql/mysql.sock
[mysqld]
user = mysql
pid-file = /var/run/mysqld/mysql.pid
socket = /var/lib/mysql/mysql.sock
port = 3306
datadir = /var/lib/mysql
[mysql]
!includedir /etc/mysql/conf.d
[root@mario etc]# cat mysql
mysql/ mysql_grants.sql
[root@mario etc]# cat mysql/conf.d/openstack.cnf
# This file autogenerated by Chef
# Do not edit, changes will be overwritten
[mysqld]
default-storage-engine = InnoDB
bind-address = 127.0.0.1
innodb_thread_concurrency= 0
innodb_commit_concurrency = 0
innodb_flush_log_at_trx_commit = 2
skip-name-resolve
character-set-server = utf8
[root@mario etc]#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment