Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- html #select #option #multiple
- setInterval 중지
- DatePicker
- pm2 시작
- allow_anonymouse
- transfer
- AntDesign
- mySQL_Replication
- pm2 상태 확인
- pm2 설치
- 1883
- mosquitto.conf
- pm2 확인
- Replication
- setInterval 정지
- c# datagridview 데이터 넣기
- invalid data
- timepicker
- DataGridView 직접 입력
- listener 1883
- 서버동기화
- mosquitto
- map이 undefined가 뜰 때
- setInterval 외부 정지
- 맥 어드레스
- 데이터테이블 데이터 넣기
- 공인IP
- pm2
- setInterval clear
- datagridview 직접입력
Archives
- Today
- Total
목록MySQL (1)
개발 노트
mySQL Replication A to Z mySQL 동기화
db,계정은 이미 생성되어있다라고 가정. 1. Master 서버에 Slave 서버가 접속할 수 있도록 권한을 부여한다. grant replication slave on *.* to 'repl_user'@'%' identified by 'test456'; └userId └userPassword 2. Master 서버 log 파일명 설정 master 서버 환경설정 파일(윈도우 = my.ini, 리눅스 = my.cnf)에 파일명을 설정해주어서 동기화 할때 적어준다. bin 파일 찾으면 my.ini 파일이 있다. 아래와같이 설정해준다. (서버명도 사용자 마음이다.) [mysqld] log-bin=mysql-bin └파일 명 server-id=1 └서버 명 3. mySQL을 재시작한다. show master st..
데이타베이스/MySQL
2023. 1. 19. 17:42