역시... 생각한대로 SELinux 때문에 생긴 문제 였던것 같다.. 하아.. 이게 맞앗어 그래..
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.
This should solve the problem:
setsebool -P httpd_can_network_connect 1
Details
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:
http://blog.frag-gustav.de/2013/07/21/nginx-selinux-me-mad/
https://wiki.gentoo.org/wiki/SELinux/Tutorials/Where_to_find_SELinux_permission_denial_details
http://wiki.gentoo.org/wiki/SELinux/Tutorials/Managing_network_port_labels
반응형
'Server > Linux(Centos7)' 카테고리의 다른 글
[리눅스] CENTOS 모니터링 (디스크, CPU, 메모리) (0) | 2022.11.14 |
---|---|
리눅스 Centos7 최신 커널 업데이트 (0) | 2022.02.04 |
pam_tally2 리눅스 패스워드 잠금해제(잠김) (0) | 2021.12.15 |
SCP 원격 서버에서 로컬PC(localhost)로 파일/디렉토리 복사(이동) 방법/ 그리고 로컬PC에서 원격서버로 파일/디렉토리 복사(이동)방법 (0) | 2021.12.15 |
GENOME Desktop 먹통 (gui모드 안될때) (0) | 2018.07.20 |
zsh insert, home, page up, delete, end, page down 먹통 (0) | 2018.07.17 |
리눅스(centos7) zsh zshell 제트쉘 설치 및 적용 (0) | 2018.07.17 |
Centos7 리눅스 프로세스 확인 및 종료 (0) | 2018.02.14 |