본문 바로가기

KNOWLEDGE

(50)
Linux bonding (RHEL) 파일 구성 및 온라인 구성 # 환경예시 # bonding mode : active-backup # bonding interface : bond0 # slave interface : em0, em1 # IP: 192.168.1.55 / 24 , GW: 1 # 사전에 NetworkManger 서비스 stop 및 비활성화 #### 모듈 파일 구성 : /etc/modprobe.d/bonding.conf alias bond0 bonding options bond0 mode=active-backup miimon=100 #### em0 인터페이스 파일 구성 : /etc/sysconfig/network-scripts/ifcfg-em0 DEVICE=em0 USERCTL=no ONBOOT=yes MASTER=bond0 SLAVE=yes BOOTPR..
Docker - 원리와 process 살펴보기 1. Docker (container) 의 작동 원리: 1) namespaces 2) cgroups 2. cgroups - 메모리, CPU, I/O, 네트워크, device 노드(/dev/) 제어 3. namespaces - 종류: mnt, uts, ipc, pid, net, user - namespace 사용법 # unshare --fork --pid --mount-proc bash # ps aux # nsenter //cgroup 에 들어가지 않음. ㄹ소스 제한 영향 안 받음 # docker exec //cgroup 에 들어감. 리소스 제한 영향 받음 # cgcreate -a ssut -g memory:testgrp //ssut 유저 소유 # ls -alh /sys/fs/cgroup/memory/te..
Ubuntu Server 18.04 - 네트워크 설정 Ubuntu Server 18.04 네트워크 설정 1. Online Config 1) iproute 패키지의 ip 명령어 이용 - 아래 명령을 사용해 interface 확인 # ip a # lshw -class network # ethtool enp3s0 # ip address add IP주소 dev 인터페이스명 # ip addr add 10.102.66.200/24 dev enp3s0 # ip link set dev enp3s0 up # ip address show dev enp3s0 # ip route add default via 10.102.66.1 # ip route show 추가 명령어 # ip addr del 10.102.66.200/24 dev enp3s0 # ip link set dev e..
AIX PAM IP ACL 증상: 콘솔 접속 정상 원격 접속 세션 맺어지며 계정 비번 입력 후 로그 없이 튕김 원인: IP ACL 문제 경로 /etc/security/pam_acl_conf/ default.conf 파일 - ACL 목록 *:+:*:10.10.10.11/255.255.255.255:*:* * * *::0:0::0:0:*,* pam_acl.conf 파일 - ACL 제어방법 ServiceAccessControl on #acl 적용 ServiceAccessControl warn #acl 미적용
RHEL 6, 7 hostname 변경 rhel6 /etc/sysconfig/network hostname 명령 rhel7 hostnamectl 명령 hostnamectl set-hostname 호스트명 hostnamectl status /etc/hostname /proc/sys/kernel/hostname
IBM storcli IBM x3650 M4 CentOS 6.8 MSM-17버전
HP ML370 G6 No Power cycle HP ML370 G6 증상: 전원선 연결시 전원버튼 주황등으로 standby 상태 전원버튼 눌러도 Fan 돌지 않음 메인보드 LED 중 CR7 CR8 깜빡임 해결: 전원선 분리 CMOS 배터리 교체 전원선 연결 후 정상 작동 원인: CMOS 배터리 전압 부족 기존엔 CMOS 배터리는 BIOS 설정 일부정보의 저장을 위한 전원으로 생각했는데 배터리가 문제가 있다고 부팅이 안된다니... 잘못된 지식을 가지고 있었거나 시스템 특성상 전원 인가시 체크부분일수도 있어 보임.
Windows Backup 볼륨 복구 wbadmin 추가 정리 환경: Windows Server 2008 R2 **DVD 부팅 후 컴퓨터 복구가 안 보이는 경우 shift + F10 cmd> cd recovery cmd> recenv.exe **볼륨만 복구하는 경우 cmd> wbadmin get versions -backupTarget:\\\os_backup -machine: (실제경로: \\\os_backup\WindowsImageBackup\ ) cmd> wbadmin get items -version:10/11/2018-12:30 -backupTarget:\\\os_backup -machine: cmd> wbadmin start recovery -version:10/11/2018-12:30 -backupTarget:\\\os_backu..