728x90

Linux 16

rocky8 ntp 서버 만들기

1. 설치[root@ntp]# dnf install chrony 2. config 설정[root@ntp]# vi /etc/chrony.conf내용 추가server time.bora.net iburst  3. 서비스 시작[root@ntp]# systemctl restart chronyd.service [root@ntp]# systemctl status chronyd.service ● chronyd.service - NTP client/server    Loaded: loaded (/usr/lib/systemd/system/chronyd.service; enabled; vendor preset: enabled)    Active: active (running) since Thu 2024-05-16 18:43..

IT/LINUX 2024.05.16

rocky8 Glusterfs 구성

GlusterFS는 확장성이 가능한 NAS 파일 시스템이다. 다수의 스토리지를 이더넷 또는 인피니밴드를 통하여 하나의 커다란 병렬 네트워크 파일 시스템으로 통합한다. 클라우드 컴퓨팅 및 스트리밍 미디어 서비스 그리고 콘텐츠 전송 네트워크와 같은 서비스 등에 사용된다 간단하게, 다수의 서버를 하나의 NAS로 통합시켜주는 오픈소스이다. 구성환경 OS : rocky8.8 - node1 : 192.168.0.31/24 , 77TB , 10G NIC * 2ea - node2 : 192.168.0.32/24 , 77TB , 10G NIC * 2ea - node3 : 192.168.0.33/24 , 77TB , 10G NIC * 2ea - node4 : 192.168.0.34/24 , 77TB , 10G NIC * ..

IT/LINUX 2023.11.07

linux Network OS 설치 하기 - PXE 서버 구성

1.방화벽 disable systemctl stop firewalld systemctl disable firewalld sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/sysconfig/selinux cat /etc/sysconfig/selinux reboot 2.필요 패키지 설치 yum install dhcp tftp-server httpd syslinux xinetd tftp 3.dhcp 설정 vi /etc/dhcp/dhcpd.conf 수정 ddns-update-style interim; ignore client-updates; authoritative; allow booting; allow bootp; allow-unknown-clients; #inte..

IT/LINUX 2023.05.08

Linux에서 NFS 서버를 설정하는 방법

NFS Server #firewalld disable systemctl stop firewalld systemctl disable firewalld # nfs 설치 yum -y install nfs-utils # 서비스 시작 / 부팅 시 자동 시작 systemctl start nfs-server systemctl start rpcbind systemctl enable nfs-server systemctl enable rpcbind # 공유할 디렉토리 생성 mkdir /nfstest chmod 777 /nfstest # mount 설정 # 읽고 쓰기(rw) 가능, 클라이언트의 계정을 root로 매핑(no_root_squash), 서버-클라이언트 동기화(rync) /etc/exports /nfstest 19..

IT/LINUX 2023.05.03

ubuntu timezone 변경

현재 시스템의 타임존을 확인합니다. # timedatectl Local time: Fri 2019-04-19 07:53:45 UTC Universal time: Fri 2019-04-19 07:53:45 UTC RTC time: n/a Time zone: Etc/UTC (UTC, +0000) System clock synchronized: yes systemd-timesyncd.service active: yes RTC in local TZ: no 설정할 타임존 값을 확인합니다. 여기선 서울로 설정합니다. # timedatectl list-timezones | grep Seoul Asia/Seoul 위에서 확인한 타임존 값으로 설정합니다. # timedatectl set-timezone Asia/Seou..

IT/LINUX 2023.04.18
728x90