RookedsyscSpringSpringEtc ProgrammingEtc ProgrammingAlgorithmAlgorithmTheoryTheoryNodeNodeBlogBlogIntroduceIntroduce
GitHubGitHub (opens in a new tab)DiscordDiscord (opens in a new tab)
    • 프로세스와 스레드
    • IPC
    • 프로세스 스케줄
    • 스레드
    • 프로세스 동기화
    • Memory Management
    • 메시징(이론)
    • RabbitMQ 공식문서 번역
      • Index And persistence
      • Replication(공식문서 번역)
      • Sentinel(공식문서 번역)
      • Functions Python Guide
      • Azure Functions Deploy
      • Durable Functions Perf and Scale
      • Azure Durable Functions Billing
      • Azure Container Apps Billing
      • Azure Functions 컨테이너 배포 및 SSH 접속 가이드
    • JVM
    • GC
    • Synchronized
    • 서블릿
    • Hash
    • B Tree
    • SQL Index
    • SQL 문법
    • N+1
    • 스키마
    • 데이터베이스 정규화
    • 뷰
    • 트랜잭션
    • 복제
    • 조인 종류
    • Rate Limiter
    • Multiplexing & Demultiplexing
    • Stateless & Connectionless
    • WebSocket

On This Page

  • 데이터 베이스 수동 백업
  • MySQL
Question? Give us feedback → (opens in a new tab)Edit this page
Theory
Database
복제

데이터 베이스 수동 백업

MySQL

  • 파일 복사
mysqldump -h [호스트명] -u [사용자명] -p[패스워드 (띄워쓰기 없음 주의)] --databases [Scheama or Database 이름] > backup.sql
  • 파일 복원
mysql -h [호스트명] -P [포트번호] -u [사용자명] -p [Schema or Database 이름] < backup.sql
트랜잭션조인 종류

Rookedsysc