centos 6.5 minimal version에서 x11 forwarding 오류.

centos 6.5 minimal version 에서 아래와 같이 X11 포워딩이 안되는 문제가 발생.

WARNING! The remote SSH server rejected X11 forwarding request.

sshd_config 화일에서, x11 forwarding을 허용하도록 설정이 되어 있다.

# cat /etc/ssh/sshd_config | grep -i x11
#X11Forwarding no
X11Forwarding yes
#X11DisplayOffset 10
#X11UseLocalhost yes
#       X11Forwarding no

확인 결과 xorg-x11-xauth, xorg-x11-fonts-*, xorg-x11-utils 패키지가 필수라고 한다. 이들 필수 패키지를 설치한다.

# yum install xorg-x11-xauth xorg-x11-fonts-* xorg-x11-utils

이후, desktop 실행하면 잘 된다.


CentOS 7 minimal 에서 위의 패키지 설치후 아래 오류 발생할 경우

X11 forwarding request failed on channel 0

xauth 패키지를 설치하면 됨.

# yum install xauth

linux powerpath 설치 – CentOS6

사용환경
CentOS Linux release 6.5 64bit, Minimal version
EMC powerpath

1. naviagentcli 설치

naviagentcli rpm 패키지가 있는 디렉토리로 이동하여, 패키지를 설치한다.

# yum install ./naviagentcli-6.26.32.0.72-1.noarch.rpm
Loaded plugins: fastestmirror
S...
Installed:
  naviagentcli.noarch 0:6.26.32.0.72-1

Complete!

navisphere agent를 실행한다.

# /etc/init.d/naviagent start
Starting Navisphere agent:                                 [  OK  ]

Continue reading

bash history에 시간 넣기

보통 history 커맨드를 내리면, 아래처럼 보인다.

  999  ls
 1000  ls -l
 1001  history
 1002  clear
 1003  history

Continue reading

보호된 글: sec. check 임시

이 콘텐츠는 비밀번호로 보호되어 있습니다. 이 콘텐츠를 보려면 아래에 비밀번호를 입력해주세요:

AIX paging space(swap) 관련 명령어 정리

1.현재 paging device 확인

# lsps -a
Page Space      Physical Volume   Volume Group    Size %Used Active Auto  Type Chksum
hd6             hdisk0            rootvg        2048MB     0   yes    no    lv     0

Continue reading

리눅스 multipath 설정.

참고문서: https://access.redhat.com/documentation/ko-KR/Red_Hat_Enterprise_Linux/6/html-single/DM_Multipath/

구성: CentOS7, 1HBA, EMC cx4-120 스토리지, SAN 스토리지

1. multipath 패키지 설치

# yum install device-mapper-multipath

Continue reading

리눅스용 HP MCSG 설치, 설정 하기.

클러스터 구성 환경
Node1:
OS: CentOS6.6
eth0: 192.168.0.79
eth1: 10.10.10.1
hostname: fox1

Node2
OS: CentOS6.6
eth0: 192.168.0.80
eth1: 10.10.10.2
hostname: fox2

ServiceIP: 192.168.0.81

Shared Storage
1GB: lock lun용
53GB: data 용

MCSG vsrsion: A.12.00.00_Base_for_Red_Hat_Enterprise_Linux_6_BB094-11001

아래 그림과 같이 구성.

hp_cmcluster
Continue reading

HPUX 계정 잠김 해제하기

상황: hpux b.11.31 에서 비밀번호를 여러번 잘못 입력했을때, 계정이 잠기며 아래와 같은 메시지가 나타난다.

login: 44 authentication failures on account "root"  Access is denied by the AUTH_MATRIES attribute in security(4).
root login from the console is allowed.

일단, root계정이 잠긴 상황이라면, single user mode 로 부팅 한 후에 root 비밀번호를 바꿔주면 된다.

만약, 올바른 root 비밀번호를 알고 있다면, 콘솔에서는 root 로그인이 허용된다. 하지만, 계정이 잠기었기 때문에, ssh나 telnet으로 접속이 되지 않는다.
이때, 아래 커맨드로 잠긴 계정을 해제해야 한다.

userdbset -d -u root auth_failures

이후, ssh, telnet으로 접속이 허용된다.

 

리눅스 메모리 테스트하기.

CentOS에서 아래 패키지를 설치면, 부팅시 메모리 테스트를 할 수 있다.(Ubuntu 리눅스도 마찬가지다)

# yum install memtest86+

그리고, 아래 커맨드를 실행하면

# /usr/sbin/memtest-setup
Setup complete.

Continue reading

linux sosreport

sosreport – 운영중인 시스템의 정보를 수집하는 스크립트.

옛날 버전은 sysreport

자세한 것은 https://access.redhat.com/ko/node/82033