Mysql Server time zone 설정
SELECT @@global.time_zone, @@session.time_zone;
SELECT CURRENT_TIMESTAMP();
SET @@session.time_zone='+09:00';
vi /etc/my.cnf.d/server.cnf
default-time-zone='+09:00'
mysql utf-8 설정
mysql version
mysql Ver 14.14 Distrib 5.7.17, for Linux (x86_64) using EditLine wrapper
/etc/mysql/mysql.conf.d/mysqld.cnf 에 아래의 내용을 추가합니다.
character-set-client-handshake = FALSE
init_connect="SET collation_connection =...
Cacti MySQL Template
Percona MySQL Monitoring Template for Cacti
Percona MySQL Monitoring Template for Cacti
plugin download : http://www.percona.com/downloads/percona-monitoring-plugins/
Download & Installing
Configuring
Import template
mysql setting
Testing the Setup
data Template :...
ubuntu MYSQL manual install
1. 필요 패키지 설치
apt-get install libaio1
2.그룹 및 사용자 추가
groupadd mysql
useradd -r -g mysql mysql
3.필요 폴더 생성
mkdir -p /server
4.mysql 다운로드
아래의 URL로 다운로드...