db 88

Access denied; you need (at least one of) the SUPER privilege(s) for this operation

Access denied; SUPER privilege(s) for this operation Access denied; you need (at least one of) the SUPER privilege(s) for this operation First attempt to migrate EC2 MySQL to Amazon RDS no going well - SUPER privileges 방금 aws MySQL rds 인스턴스를 만들고 나서, 로컬에 있는 DB… #1227 - Access denied; you need the SUPER privilege for this operation RDS 인스턴스를 생성시 Master Username 을 개별 사용자(root 가 아닌)로 생성하면 백업파일중 SET ..

db/mysql 2018.04.02

Centos7 Mariadb datadir change

CentOS, Nginx + PHP7 + MariaDB 설치 How To Change a MariaDB Data Directory to a New Location on CentOS 7 MySQL Data directory 변경하기 MariaDB(Mysql) var폴더에서 home폴더로 변경 MariaDB(MySQL):データディレクトリの変更方法 [문제해결 일지] systemctl start mariadb 실행시 Failed to issue method call: No such file or directory. 에러 MariaDB 설치 yum install mariadb-server mariadb -y systemctl status mariadb systemctl enable mariadb PHP db 관련..

db/mysql 2018.03.07

centos7 mysql5.7

How to Install Latest MySQL 5.7.9 on RHEL/CentOS 7/6/5 and Fedora 23/22/21 Centos 7 - 데이타베이스(MySql) 설치 Chapter 1 Installing MySQL on Linux Using the MySQL Yum Repository setting mysql root password in CentOS 7 mysql root 비번 분실 MySQL 5.7.7 - Centos 7 el7 - Access denied MySQL 5.7.9 릴리즈 변화된 root 비밀번호 변경하기 MySQL 5.7 설치시 알아둬야 할 사항 MySQL 5.7 Reference Manual / Security / Security Plugins / The Passwo..

db/mysql 2017.02.24

mysqladmin 퍼포먼스 정보 확인

20 MySQL (Mysqladmin) Commands for Database Administration in Linux mysqladmin status 및 mysql 퍼포먼스 요소 찾아내기 서버에 현재 활동중인 threads상태 mysqladmin -p3432 proc stat mysqladmin -ppassword processlist 서버 상태 Uptimethe MySQL server 시작된 후 현재까지 시간 (초) Threads현재 디비서버에 연결된 유저수 Questions서버시작후 지금까지 요청된 쿼리수 Slow queries--log-slow-queries[=file_name] option로 시작된 서버가 variables에 지정된 long_query_time seconds시간보다 큰 쿼리시간..

db/mysql 2017.02.03

Shell 에서 MySQL 용량확인

MySQL_데이터베이스_용량_확인 # 이건 용량이 많으면 시간도 많이 걸린다. SELECT SUM(data_length+index_length)/1024/1024 used_MB, SUM(data_free)/1024/1024 free_MB FROM information_schema.tables; # mysql 정보 확인 mysqladmin -p version mysqladmin -p extended-status mysqladmin -p processlist mysqladmin -p status mysqladmin -p variables # mysqladmin, du 로 용량 확인 mysqladmin -p variable | grep "datadir" | awk '{print $4}' | du -sh

db/mysql 2017.01.31

MySQL 5.7 update after my.conf

mysql 5.5.x my.cnf 참고 validate_password 플러그인을 사용하여 Amazon RDS MySQL DB 인스턴스의 보안을 개선하려면 어떻게 해야 합니까? 6.4.3.1 암호 유효성 검사 구성 요소 설치 및 제거 설정을 모두 수정하는건 아니고, 변경이 필요한 부분만 수정/추가한다. [mysqld] datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.sock # Disabling symbolic-links is recommended to prevent assorted security risks symbolic-links=0 log-error=/var/log/mysqld.log pid-file=/var/run/mysqld/mysqld.pid # 비..

db/mysql 2016.11.18

MySQL UTF-8

MySQL은 현재 하나의 UTF-8 문자당 3바이트로 제한하고 있으며, 따라서 U+FFFf 이상의 코드 포인트를 저장하지 못한다. 대개 이러한 제한이 문제가 되지 않지만 그 이상의 코드 값은 음악 기호, 고대 페르시아 문자, 에게(Aegean) 숫자들을 포함한 잘 쓰지 않은 문자를 나타내기 때문이다. 일부 코드 포인트들을 저장할 수 없다는 사실을 기억하는 편이 좋고 데이터를 필터링하는 코드에서 참고해야 한다. - 스케이러블 웹사이트 구축 ISBN 978-89-92939-45-4 104page

db/mysql 2016.10.16

데이터 저장을 위한 구조적 형태

Key Value ( KV ) NoSQL에서 사용되는 가장 단순한 저장 형태로 각 키에 대응되는 값들은 임의의 길이를 갖는 바이너리 데이터로만 간주된다. 데이터 저장소는 각 값이 내부적으로 어떤 구조를 갖고 있는지에 대해서는 일절 관여하지 않는다. 그러므로 애플리케이션에서 JSON, ProtocolBuffer, Thrift, Avro같은 전용 포멧 등을 사용하여 테이터를 추가로 인코딩/디코딩 해야 한다. http://json.org/example.html https://github.com/google/protobuf ( https://code.google.com/p/protobuf ) http://thrift.apache.org http://avro.apache.org Using Oracle Berkel..

db 2016.07.25
반응형