1. [ Session Timeout ] 시작 -> 실행창 -> inetmgr -> 사이트 -> IIS Service Name -> 오른쪽 IIS 그룹이하 ASP -> 세션속성 -> 시간제한 120 (Default 20분) - 세션 개체와 연결된 마지막 요청 이후에 세션 개체를 유지할 기본 시간 2. [ Connection Timeout ] 시작 -> 실행창 -> inetmgr -> 사이트 -> IIS Service Name -> 마우스 오른쪽 버튼 -> 웹사이트관리 -> 고급설정 -> 연결제한 -> 연결 시간 제한 10 (Default 120초) - 세션에 대한 소켓 연결을 끊기 전에 비활성 상태로 유지할 수 있는 시간 3. Session Timeout 설정 후 TCP Session FIN, CLOSE..
※ findstr 및 find 명령을 활용한 원하는 TCP Session 의 Count C:\Windows\system32> C:\Windows\system32> C:\Windows\system32>netstat -na | findstr "WAIT LISTEN ESTABL" | find /C "TCP" 77 C:\Windows\system32> C:\Windows\system32> C:\Windows\system32>
Centos multipathd 데몬을 통한 iSCSI Storage Multipath 설정 [root@iSCSI-TEST ~]# [root@iSCSI-TEST ~]# [root@iSCSI-TEST ~]# for LIST in `ifconfig -a | grep eth | awk '{print $1}'`; do echo "${LIST} - `ethtool ${LIST} | grep 'Link detected'`"; done eth0 - Link detected: yes eth1 - Link detected: yes eth2 - Link detected: yes eth3 - Link detected: yes [root@iSCSI-TEST ~]# [root@iSCSI-TEST ~]# [root@iSCSI-T..
iSCSI를 사용할 Source 서버 IQN 정보 확인 Linux : cat /etc/iscsi/initiatorname.iscsi widnows : 시작->관리도구->ISCSI초기자->구성->초기자 이름 확인 [root@TEST02 ~]# [root@TEST02 ~]# cat /etc/iscsi/initiatorname.iscsi InitiatorName=iqn.1994-05.com.redhat:2f7377814fdc [root@TEST02 ~]#
[ Linux Shell기반 MySQL DB HA 구현 ] 안녕하세요 불량펭귄 최광민 입니다. 요즘 HA 구현에 관심이 생겨 조그만 개인 프로젝트를 시작하게 되었습니다. DB HA Cluster 솔루션중 상용솔루션들은 역시나 그 비용이 만만치 않기 때문에 HA본연의 기능에 충실하고 간단히 구성 및 운영이 가능한 오픈소스 기반의 HA 솔루션 구현을 목표로 하고 있으며 유지보수나 개작의 편의를 위해 Linux Bash Shell 기반으로 개발 중입니다. 사용권한은 상업적 목적으로 이용하지 않는다는 전재하에 개인, 기업을 구분하지 않을 생각입니다. 아무쪼록 많은 관심 부탁드리며 오늘은 간단히 구조에 대해서만 논하고자 합니다. 1. HA란? HA란 High Availability 의 약자로서 우리말로 표현하자면..
※ 1433 Port를 LISTEN 및 ESTABLISHED 중인 프로세스에 대한 PID 확인 C:\Users\TestDB1.TBAD> C:\Users\TestDB1.TBAD> C:\Users\TestDB1.TBAD>netstat -nabo | findstr 1433 | findstr "LISTEN ESTAB" TCP 192.168.10.11:63859 192.168.10.18:1433 ESTABLISHED 29544 TCP 192.168.10.18:1433 0.0.0.0:0 LISTENING 21604 C:\Users\TestDB1.TBAD> C:\Users\TestDB1.TBAD> C:\Users\TestDB1.TBAD>