Fixing nginx “13: Permission Denied” Error on RHEL8 with SELinux

Fixing nginx “13: Permission Denied” Error on RHEL8 with SELinux

Takahiro Iwasa
Takahiro Iwasa
1 min read
nginx SELinux

When configuring nginx to route traffic to a non-standard port such as 1080 on an instance, you may encounter the error 13: Permission denied. This issue often arises due to SELinux restrictions.

systemd[1]: Starting The nginx HTTP and reverse proxy server...
nginx[1626]: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx[1626]: nginx: [emerg] bind() to 0.0.0.0:1080 failed (13: Permission denied)
nginx[1626]: nginx: configuration file /etc/nginx/nginx.conf test failed
systemd[1]: nginx.service: Control process exited, code=exited status=1
systemd[1]: nginx.service: Failed with result 'exit-code'.
systemd[1]: Failed to start The nginx HTTP and reverse proxy server.

Solution

To resolve the issue, you need to allow nginx to use the custom port 1080 by updating SELinux policies. Use the following command:

Terminal window
sudo semanage port -a -t http_port_t -p tcp 1080

If you encounter the error sudo: semanage: command not found, install the required package with these commands:

Terminal window
sudo dnf provides /usr/sbin/semanage
sudo dnf install policycoreutils-python-utils
Takahiro Iwasa

Takahiro Iwasa

Software Developer
Involved in the requirements definition, design, and development of cloud-native applications using AWS. Japan AWS Top Engineers 2020-2023.