백업 4

Backup rsync

How to Use rsync to Backup Your Data on LinuxHow to Backup Linux? 15 rsync Command Examples Installation # Ubuntu sudo apt-get install rsync # CentOs yum install rsync Backup (내부 백업) # Directory1 에서 Directory2로 백업 rsync -av --delete /Directory1/ /Directory2/ Options -a 재귀 (디렉토리로 반복), 링크 (심볼릭 링크로 심볼릭 링크 복사), perms (사용 권한 유지), 시간 (수정 시간 보존), 그룹 (그룹 보존), 소유자 (소유자 보존), 장치 파일 보존 및 특수 보존 파일. (단 전송시 타임..

os/Linux 2018.07.24

Access denied; SUPER privilege(s) for this operation

Access denied; you need (at least one of) the SUPER privilege(s) for this operation How to grant super privilege to the user? gunzip < back.20180423.data.gz | mysql -uusername -p -f datbasename Enter Password: ERROR 1227 (42000) at line 279: Access denied; you need (at least one of) the SUPER privilege(s) for this operation failure cause 원인 파악? working server에서 mysqldump를 이용 원격지 db 백업 원격백업이 가능하기..

db/mysql 2018.04.23

mysqldump 옵션 스키마, 데이터만 백업

mysqldump --help # 테이블 자료만 압축으로 백업 mysqldump -u user -p --opt --extended-insert -t -q database | gzip 〉 database.sql.gz mysqldump -u user -p --opt --extended-insert -t -q database table | gzip 〉 database.sql.gz # 압축자료를 그대로 복원 gunzip 〈 database.sql.gz | mysql -u user -p database # 압축자료를 그대로 강제 복원 gunzip 〈 database.sql.gz | mysql -u user -p -f database 주의: 만약, --quick 이나 --opt 없이 덤프하면 메모리가 많이 소모되어..

db/mysql 2010.10.22
반응형