본문 바로가기

Linux18

동시접속자 확인 방법 # 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.
[Linux] SSL 인증서 만들기 Generate a private keykey 파일 생성$ openssl genrsa [-des3] -out test.key 1024 Generate Root CA Certificate루트 인증기관(Root CA) 인증서 생성$ openssl req -new -x509 -keyout cakey.pem -out cacert.pem -days 3650 Generate Self Signed Certificate자체 서명 인증서 생성$ openssl req -new -x509 -keyout cacert.pem -out cacert.pem -days 3650keyout과 out에 같은 파일명을 주면되며, 분리하고 싶은 경우는RSA PRIVATE KEY부분과 CERTIFICATE부분을 다른 파일로 분리하면 된다. .. 2013. 2. 8.
[Linux] 리눅스에서 특정 이름의 프로세스 죽이기 - test 라는 이름의 프로세스 죽이는 방법 - ps aux | grep "test" | awk '{ print $2 }' | xargs kill -9 2011. 12. 14.
[MySQL] my.cnf 최적화 MYSQL my.cnf 최적화 MySQL 성능 개선 파라미터For better performance, we recommend replacing the existing MySQL parameters mentioned in startDB.bat/sh, available under \bin directory, with the following MySQL parameters changes for the corresponding RAM Size. Apart from MySQL parameter changes, you can also tune MySQL table sizes based on RAM availabililty to improve MySQL performance. RAM Size MySQL Paramet.. 2011. 11. 15.