상단

Migration


Service 현황 확인

#--- CPU, Memory
top

#--- Storage
lsblk
df  -h

#--- Service
#--- Device type
#---     1. 정류기, 2. 원격TB, 3. 배관링크, 4. 수위센서, 5. 관말압력, 6.특정정압기
mysql -u${USER} -p${PASSWD} ${DATABASE}
    SELECT count(*) FROM sites;
    SELECT count(*) FROM devices;
    SELECT type, count(*) FROM devices GROUP BY type;
    
    SELECT table_schema, sum(data_length) /1024/1024 AS mb 
      FROM information_schema.tables  
     GROUP BY table_schema 
     ORDER BY sum(data_length+index_length) DESC;

    SELECT  
        table_name, engine, table_rows AS tbl_rows,
        avg_row_length AS rlen,  
        floor((data_length+index_length)/1024/1024) AS mbTotal,  #--- 총용량
        floor((data_length)/1024/1024) AS mbUse,                 #--- 사용 용량
        floor((index_length)/1024/1024) AS mbIdx                 #--- 인덱스 용량
      FROM information_schema.tables  
     WHERE table_schema=database()  
     ORDER BY (data_length+index_length) DESC;  

Migration 준비

tar  cvf  /nas2/backup/obcon.tar  obcon

# mysql -u${USER} -p${PASSWD} ${DATABASE} -e '~'
mysql -u${USER} -p${PASSWD} ${DATABASE}
    show  tables;
    show  create  table  ~;

Server 준비

  • KT UCloud Biz에서 서버 등을 준비 한다.

    • 공인 IP 신청

    • Server 신청

    • 방화벽 설정

  • Domain에 hostname을 추가 한다.

  • Server 접속후 서버 비밀번호 변경

  • Server에 OBCon을 설치 한다.

 

최종 수정일: 2024-09-30 12:26:19

이전글 :
다음글 :