centos8x update error
# Operation System/Linux2023. 1. 17. 15:41centos8x update error

오류확인 centos8초기버전에서 yum(또는 dnf) update할려고할시 업데이트 에러가 발생 Error: Failed to download metadata for repo 'appstream': Cannot prepare internal mirrorlist: No URLs in mirrorlist 오류원인 저장소 경로가 잘못되었거나 할경우 발생할수 있던건데. 현재는(작성일 기준 : 2023-01-18) EOL로 인한 업데이트 에러. 해결방법 centos초기 버전이라 일단 아래와 같이 repo파일 수정. 기존 mirrorlist는 주석처리. https://vault.centos.org/8.5.2111/AppStream/x86_64/os/ https://vault.centos.org/8.5.2111/B..

리눅스 NFS구축
# Operation System/Linux2019. 11. 14. 09:41리눅스 NFS구축

설치환경 : centos8 [darksharavim]yum -y install nfs-utils [darksharavim]vi /etc/exports /DATA 2xx.6x.3x.xx8(rw,sync,no_root_squash) [darksharavim]systemctl enable/start rpcbind [darksharavim]systemctl enable/start nfs-server [darksharavim]systemctl enable/start nfs-lock [darksharavim]mount -t nfs [NFS서버 IP]:/DATA /DATA -o nolock,rsize=32768,wsize=32768,tcp,nfsvers=3

아파치 webdav구성(ssl)
# Web&WAS/Apache2019. 10. 31. 13:19아파치 webdav구성(ssl)

설치환경 centos8 설치 # yum install httpd mod_ssl httpd-devel httpd-tools dav_module (shared) dav_fs_module (shared) dav_lock_module (shared) 위 3개 모듈이 활성화 되어 있어야함 # 데이터 폴더 생성 및 권한 설정 # mkdir /home/test/webdav # chmod 755 /home/test/webdav # chown apache.apache /home/test/webdav # 계정생성 및 권한 설정 # htpasswd -c /etc/httpd/.htpasswd test # chown root:apache /etc/httpd/.htpasswd # chmod 640 /etc/httpd/.htpas..

image