centos 방화벽 설정

  • Post author:
  • Post category:Linux

centos 방화벽 설정 -. iptables 리스트 보기iptables -nL -. 편집vi /etc/sysconfig/iptables or 바로반영 iptables -A INPUT -p tcp --dport 80 -j ACCEPT#저장/sbin/service iptables save -. 재시작/etc/init.d/iptables restart

Continue Readingcentos 방화벽 설정

jsp에서 프로퍼티값 표시하기

  • Post author:
  • Post category:Java

jsp에서 properties 파일의 값을 표시하기 원할때가 있음.jsp 에서 바로 호출하여 표시할 수가 있음. config.properites 파일 내용 devmode=[dev] 스프링 xml 에 property-placeholder 를 정의한다. <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:util="http://www.springframework.org/schema/util" xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"…

Continue Readingjsp에서 프로퍼티값 표시하기

Springframework 에서 jquery ajax 사용시 한글깨짐 문제…

  • Post author:
  • Post category:Java

Springframework 에서 jquery ajax 사용시 한글이 깨질때가 있음.. 특히 리눅스에서 운영하면 한글로 잘 나오는데 윈도우에서 개발하면 한글이 안나올때가 있어 난감했음... requestMapping에 produces를 추가하면 됨... ㅠ.ㅠ @RequestMapping(value = "/test", produces =…

Continue ReadingSpringframework 에서 jquery ajax 사용시 한글깨짐 문제…

linux 캐쉬 해제

  • Post author:
  • Post category:Linux

리눅스를 사용하다보면 물리 메모리가 캐쉬로 전부 전환되어 있는 경우가 있다 이를 해제하려면 다음과 같은 명령어로 해결. -. pagecache 해제 echo 1 > /proc/sys/vm/drop_caches -. dentries, inodes 해제 echo 2 >…

Continue Readinglinux 캐쉬 해제

ulimit 적용

  • Post author:
  • Post category:Linux

[root@SCALIM2 security]# pwd /etc/security [root@SCALIM2 security]# cat limits.conf # /etc/security/limits.conf # #Each line describes a limit for a user in the form: # #<domain> <type> <item> <value> # #Where: #<domain>…

Continue Readingulimit 적용

P12 인증서 재변환

  • Post author:
  • Post category:iOS

apns p12 인증서 사용시 리눅스에서 발송이 잘안되는 경우가 있다. 이상하게 인증서 변환을 하면 그때부터 발송이 되는 경우가 있다. 잘발송이 안되는 경우 한번 해보자. openssl pkcs12 -in apnsdev.p12 -out apnsdev.pem -nodes…

Continue ReadingP12 인증서 재변환