https://velog.io/@velopert/eslint-and-prettier-in-react

https://velog.io/@honeysuckle/%EC%8B%A0%EC%9E%85-%ED%94%84%EB%A1%A0%ED%8A%B8%EC%97%94%EB%93%9C-%EB%A9%B4%EC%A0%91-%EC%A7%88%EB%AC%B8-%EB%AA%A8%EC%9D%8C

Centos 6.5 에서 6.6 업그레이드 이후 시스템이 이상해졌다.

nginx - tomcat 연동을 잘 되었는데 자꾸만 permition deny 오류가 뜬다.

구글링을 해도 답이 없어서... 친구에게 확인 결과

/etc/selinux/confg 열어 보니 SELINUX=enforcing 되어 있다.

SELINUX=disabled 로 변경후 재부팅 하니 잘 동작 한다.


SELINUX가 뭐지?? ㅡㅡ;;

어려운 OS의 세계~


그래도 해결~


친구야~ 고맙다~ ㅋㅋ



추가 작업.. .수정

SELINUX 관련 자료를 찾다가 SELINUX를 disabled 하지 않고 해결 방법을 찾았는데

/var/log/audit/audit.log 에서 nginx 가  denied 되는 부분만 찾아

semodule 로 추가 해주는 방법

I had a similar issue getting Fedora 20, Nginx, Node.js, and Ghost (blog) to work. It turns out my issue was due to SELinux.

I checked for errors in the SELinux logs:

sudo cat /var/log/audit/audit.log | grep nginx | grep denied

And found that running the following commands fixed my issue:

sudo cat /var/log/audit/audit.log | grep nginx | grep denied | audit2allow -M mynginx
sudo semodule -i mynginx.pp

References:

SELINUX 어렵군.. ㅡㅡ;


'서버 설정' 카테고리의 다른 글

Tomcat Session Clustering 설정  (0) 2014.11.08

+ Recent posts