※ 제니퍼나 파로스 같은 JAVA 모니터 툴을 사용하지 않고 간단히 OS 상에서 JAVA Thread를 Count 할때 [ 실시간 모니터시 ] [root@TEST01_was ~]# while [ 0 ]; do ps -ef | grep -v "grep" | grep "java" | awk '{print $2}' | while read PID; do ps -eL | grep $PID | wc -l | while read imsi; do echo "$(date) / PID ${PID} count - $imsi"; done; done && echo "" && sleep 2; done [ 단순 확인시 1 ] [root@TEST01_was ~]# pstree | grep java |-cloud-daemonize--..
※ 사용중인 iSCSI 로그인 정보를 삭제 [root@TEST02 ~]# [root@TEST02 ~]# [root@TEST02 ~]# iscsiadm -m node --targetname iqn.2013-09.192.168.137.10:storage.iscsi1 --logout Logging out of session [sid: 2, target: iqn.2013-09.192.168.137.10:storage.iscsi1, portal: 192.168.137.10,3260] Logout of [sid: 2, target: iqn.2013-09.192.168.137.10:storage.iscsi1, portal: 192.168.137.10,3260] successful. [root@TEST02 ~]# [r..
1. 별도의 Storage 장비가 없을 경우 Linux 에서 간단히 iSCSI 형태의 Shared Volume을 제공 가능 [root@TEST01 ~]# [root@TEST01 ~]# yum list | grep scsi iscsi-initiator-utils.x86_64 6.2.0.872-13.el5 installed iscsi-initiator-utils.x86_64 6.2.0.872-16.el5 base lsscsi.x86_64 0.17-3.el5 base scsi-target-utils.x86_64 1.0.14-2.el5 base [root@TEST01 ~]# [root@TEST01 ~]# yum info scsi-target-utils.x86_64 Loaded plugins: fastestmir..
※ Linux 에서 iSCSI 프로토콜을 이용하여 iSCSI Disk volume 마운트 [root@TEST02 ~]# [root@TEST02 ~]# chkconfig --list | grep iscsi iscsi 0:off 1:off 2:off 3:on 4:off 5:on 6:off iscsid 0:off 1:off 2:off 3:on 4:off 5:on 6:off [root@TEST02 ~]# [root@TEST02 ~]# service iscsi status iscsid (pid 1259) is running... [root@TEST02 ~]# [root@TEST02 ~]# service iscsid status iscsid (pid 1259) is running... [root@TEST02 ~]#..
Linux 시스템에서는 하나의 물리적인 Ethernet Device에 대해서 가상의 Device를 추가하여 할당 할 수 있으며 설정 과정은 아래와 같다. 1. ifconfig 명령을 통한 추가 [root@TEST02 ~]# [root@TEST02 ~]# ifconfig eth0:1 192.168.137.40 netmask 255.255.255.0 up [root@TEST02 ~]# 2. ip 명령을 통한 추가 [root@TEST02 ~]# [root@TEST02 ~]# ip addr add 192.168.137.40/24 dev eth0 [root@TEST02 ~]# 3. 추가된 Ethernet Alias 확인 [root@TEST02 ~]# ifconfig eth0 Link encap:Ethernet H..