DB32 Amazon RDS for MySQL의 파라미터 구성 모범 사례, 2부: 복제와 관련된 파라미터 https://aws.amazon.com/ko/blogs/database/best-practices-for-configuring-parameters-for-amazon-rds-for-mysql-part-2-parameters-related-to-replication/ Best practices for configuring parameters for Amazon RDS for MySQL, part 2: Parameters related to replication | Amazon Web Servi This blog post was last reviewed or updated May, 2022. In the previous blog post of this series, I discuss MySQL parame.. 2022. 8. 4. Amazon RDS for MySQL의 파라미터 구성 모범 사례, 1부: 성능 관련 파라미터 https://aws.amazon.com/ko/blogs/database/best-practices-for-configuring-parameters-for-amazon-rds-for-mysql-part-1-parameters-related-to-performance/ Best practices for configuring parameters for Amazon RDS for MySQL, part 1: Parameters related to performance | Amazon Web Servi This blog post was last reviewed or updated May, 2022. With Amazon Relational Database Service (Amazon RDS) for MySQL, .. 2022. 8. 4. MySQL status mysql의 현재 상태를 확인 하는 명령과 각 항목의 설명입니다. 사용명령: # /usr/local/mysql/bin/mysqladmin status -p 또는 mysql 에 접속후 mysql> show status; 로도 볼수 있습니다. 설명: Aborted_clients : 클라이언트가 연결을 적절히 닫지않아서 죽었기때문에 끊어진 연결수. Aborted_connects : 연결실패된 mysql서버에 연결시도 수. Bytes_received : 모든 클라이언트로 부터 받은 바이트 수 Bytes_sent : 모든 클라이언트에게 보낸 바이트수 Connections : mysql서버에 연결시도한 수 Created_tmp_disk_tables : sql문을 실행하는 동안 생성된 디스크에 존재하는 임시테이블 수.. 2013. 8. 5. MySQL log-bin 관리 MySQL Binary Log 는 add, delete, insert, update 등의 query 가 저장되어 있는 파일 1. MySQL Replication 환경에서 지우기 - MySQL Replication MASTER 서버 shell> mysql -u root -p mysql> RESET MASTER; - MySQL Replication SLAVE 서버 shell> mysql -u root -p mysql> RESET MASTER; 2. MySQL Binary Log sequence number 또는 특정 일자로 지우기 shell> mysql -u root -p mysql> PURGE BINARY LOGS TO 'mysql-bin.000015'; shell> mysql -u root -p mysq.. 2013. 7. 31. 이전 1 2 3 4 5 6 7 8 다음