-
Notifications
You must be signed in to change notification settings - Fork 0
/
.my.cnf.m4
31 lines (27 loc) · 839 Bytes
/
.my.cnf.m4
1
2
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
# Default settings for MySQL
# These settings are designed for a profile-local database.
# This sets mysql to be completely UTF8
# The server ignores the client connections that don't use UTF8
# On initial setup, do this:
# mysqld --initialize-insecure
[client]
user=root
port=3306
socket="/tmp/mysql.sock"
default-character-set=utf8mb4
[mysql]
prompt='M[\u@\h@\d] » '
pager='less --quit-if-one-screen --no-init --LONG-PROMPT --HILITE-UNREAD --status-column --chop-long-lines --shift .3'
default-character-set=utf8mb4
[mysqld]
port=3306
socket="/tmp/mysql.sock"
datadir="PH_LOCALDATA/mysql"
tmpdir="/tmp"
event_scheduler=ON
default-time-zone='+00:00'
character-set-server=utf8mb4
collation-server=utf8mb4_unicode_ci
character-set-client-handshake=FALSE
innodb_large_prefix=TRUE
# Use `\G` instead of `;` to produce vertical output.