2013년 7월 15일 월요일

samba 설정시 "액세스 할 권한이 없습니다." 문제 발생시 대처법

samba 를 설정한 이후, 계정을 입력했는데 정작 액세스할 권한이 없다고 나오는 경우가 종종 있다.
이는 SELinux 의 보안옵션 때문으로.. 다음과 같은 명령으로 해결할 수 있다.


* SELinux 설정

   - 이 설정을 하지 않으니 윈도우 탐색기에서 폴더에 접근하려 할 때 권한문제로 접근할 수가 없었다.
   - 자세한 사항은 최초 smb.conf 파일에 기재되어 있음

     chcon -t samba_share_t /공유폴더명


출처: http://happybruce.tistory.com/entry/CentOS-60-%EC%97%90-%EC%82%BC%EB%B0%94samba-%EC%84%9C%EB%B2%84-%EC%84%A4%EC%B9%98

2013년 7월 9일 화요일

apache to tomcat: mod_jk vs apr (mod_proxy)

apache 와 tomcat 을 연동하는데 사용되는 방법별 차이..

출처: http://stackoverflow.com/questions/1081918/apache-to-tomcat-mod-jk-vs-mod-proxy

mod_proxy
* Pros:
      o No need for a separate module compilation and maintenance. mod_proxy,
        mod_proxy_http, mod_proxy_ajp and mod_proxy_balancer comes as part of 
        standard Apache 2.2+ distribution
      o Ability to use http https or AJP protocols, even within the same 
        balancer.
* Cons:
      o mod_proxy_ajp does not support large 8K+ packet sizes.
      o Basic load balancer
      o Does not support Domain model clustering
mod_jk
* Pros:
      o Advanced load balancer
      o Advanced node failure detection
      o Support for large AJP packet sizes
* Cons:
      o Need to build and maintain a separate module