Cloud(2)
-
Cron으로 Remote Git 동기화
git 리포지터리를 동기화 할 필요가 있을때 linux 서버 기준으로 cron에 등록하여 동기화 하는 방법입니다.test 리포지터리의 master 브랜치를 clone 리포지터리의 master branch로 동기화 하는 샘플입니다. $> cd /home/woocc/git ## 원본 git 을 clone 한다. 여기서는 ssh 인증을 사용하였다.$> git clone git@github.com:wcc8088/test.git -b master ## clone 된 git 으로 이동한다.$> cd test ## 등록된 remote 를 확인한다.$> git remote -vorigin git@github.com:wcc8088/test.git (fetch) origin git@github.com:wcc8088/t..
2024.06.11 -
Ceph 정리 - 작성중
1. Ceph 개요 Ceph란 분산 클러스터 위에서 object storage를 구현해 object, block, file level의 storage 인터페이스를 제공한다. 하나로 object, block storage, file system 모두를 제공한다는 것이 장점. SPOF(Single Point Of Failure) 없는 완전한 분산처리와 exabyte 단위까지 확장 가능하다. Ceph Storage Cluster는 다수의 서버 Ceph Node 로 구성되며 Ceph Object Storage, Ceph Block Device, Ceph File System 을 서비스합니다. Ceph Storage Cluster는 최소한 하나의 Ceph Monitor, Ceph Manager, Ceph OSD(..
2021.07.22