NextCloud 1번서버(메인서버)에서 NextCloud 2번서버(백업서버)로 백업하는 방법을 구성합니다. 1. ssh 원격 자동 로그인 - 출발지(백업서버) ssh키 생성 및 확인 # ssh-keygen -t rsa -C "comment" # cat ~/.ssh/id_rsa.pub - 도착지(메인서버) ssh키 추가 # ssh-copy-id -p 포트 -i ~/.ssh/id_rsa.pub test@메인서버.com - 도착지(메인서버) 접속확인 # ssh -p 포트 test@메인서버.com 2. 메인서버 rsyncd.conf 설정 (제외폴더 설정) # vi /etc/rsyncd.conf [nextcloud] path = /www/html/nextcloud/{계정명}/files comment = Next..
Linux
mdadm으로 레이드를 생성후 resync작업할때 마운트 되어 있을경우 resync속도가 엄청 느립니다. resync는 umount후 하시는게 시간절약을 할수 있습니다. 아래는 raid1(2TB x 2) resync속도입니다. mount resync # umount /mnt/raid1 umount resync
https://gist.github.com/2called-chaos/5073996 enable nginx vim syntax highlighting (on Ubuntu/Debian) enable nginx vim syntax highlighting (on Ubuntu/Debian) - install_nginx_vim.sh gist.github.com nginx conf파일 vim구문강조
# yum install nfs-utils # systemctl enable nfs-server.service # systemctl start nfs-server.service # systemctl status nfs # firewall-cmd --permanent --zone=public --add-service=nfs # firewall-cmd --permanent --zone=public --add-service=rpc-bind # firewall-cmd --permanent --zone=public --add-service=mountd # firewall-cmd --reload -------------------------------------------------------------------..