운영체제66 동시접속자 확인 방법 # netstat -ant |grep :80 |grep ES |awk '{print $5}' | cut -f 1 -d : |sort | uniq 포트 80에 ESTABLISHED 된 Connection 추출 후 Foreign Address(IP)만 잘라 sort 시킨 후 uniq한 IP만 뽑는다. 갯수를 알고 싶다면 위 명령어 맨 뒤에 만 붙히면 된다. # netstat -ant |grep :80 |grep ES |awk '{print $5}' | cut -f 1 -d : |sort | uniq |wc -l 앞에 불필요한 7자의 문자가 있을 경우 잘라버리고 8번째 문자부터 출력 => cut -c8-# netstat -ant |grep :80 |grep ES |awk '{print $5}' |cut -c8.. 2013. 3. 7. [CentOS] i18n Character Set UTF8로 변경하기 CentOS 서버 캐릭터 셋을 변경하려면 vi /etc/sysconfi/i18n LANG="ko_KR.UTF-8"SUPPORTED="en_US.iso885915:en_US:en:ko_KR.UTF-8:ko_KR:ko" 로그아웃후 콘솔 접속을 UTF8로 변경후 다시 접속. 2013. 2. 19. [CentOS] Nginx+PHP+MySQL 설치 방법 링크 출처: http://blog.debug.so/entry/How-to-setuo-nginx-php-mysql-Korean 2013. 2. 18. [CentOS] SSL 인증서 # Generate private key openssl genrsa -out sphtest.key 1024 # Generate CSR openssl req -new -key sphtest.key -out sphtest.csr # Generate Self Signed Keyopenssl x509 -req -days 365 -in sphtest.csr -signkey sphtest.key -out sphtest.crt # Copy the files to the correct locationscp sphtest.crt /etc/pki/tls/certscp sphtest.key /etc/pki/tls/private/sphtest.keycp sphtest.csr /etc/pki/tls/private/sphtest.. 2013. 2. 12. 이전 1 2 3 4 5 6 ··· 17 다음