나크나로 님의 글 45
MS SQL Server Query - 미사용 테이블, 인덱스 확인 쿼리
----Unused tables indexes. ----Tables have index_id’s of either 0 = Heap table or 1 = Clustered Index Declare …
MS SQL Server Query - IO 과점 쿼리
SELECT TOP 50 (qs.total_logical_reads + qs.total_logical_writes) /qs.execution_count as [Avg IO], substring (q…
MS SQL Server Query - CPU 과점 쿼리
SELECT TOP 50 qs.total_worker_time/qs.execution_count as [Avg CPU Time], substring (qt.text,qs.statement_start…
MS SQL Server Query - CPU waits
Select signal_wait_time_ms=sum(signal_wait_time_ms) ,'%signal waits' = cast(100.0 * sum(signal_wait_time_ms) /…
Linux 서버에 FTP 설치 (vsftpd)
1. 개요 리눅스 서버에 FTP 데몬을 설치해보자. 2. 설치방법 2-1. yum 설치 $ sudo yum install vsftpd Loaded plugins: priorities, update-…
WebtoB 웹투비 구조
1. wsm webtob 부팅 시 제일 먼저 로드된다. hth, htl 등을 관리한다. Booting WebtoB on node (paper-PC) Starting WSM at 04/30/13 11…
Linux CPU 과점 Process 확인
1. 방법 top 실행 결과에서 WLS를 시작한 유저의 것 중 CPU 사용량이 높은 PID를 찾는다. kill -3 PID 를 실행하여 WebLogic Server의 스레드 덤프를 여러 번 생성한다…
Linux TCP Parameter 확인
1. 개요 리눅스 서버 TCP 파라미터 확인 방법니다. 2. 방법 $ sysctl -a 만일 keepalive 관련된 파라미터만 보려면 다음과 같다. $ sysctl -a | grep keepali…
Tomcat에서 POST 처리가 잘 안될 때 확인 parameter
1. 설정 2-1. maxParameterCount The maximum number of parameter and value pairs (GET plus POST) which will be aut…
CentOS에서 bind-utils 설치하기
1. 개요 nslookup이 안된다면 bind-utils 설치한다. 2. 설치 # yum install bind-utils Loaded plugins: fastestmirror Loading mir…
CentOS에서 convmv 설치하기
1. 설치 # yum install convmv Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: ft…
expect 명령어를 이용하여 rsync auto script 구현
1. rsync 설치 당연히 rsync가 설치 되어 있어야 한다. 2. 일반적인 사용 rsync -avz -e "ssh -p 22" ip.sh testuser@192.168.1.10:/test/ p…