0
$ sudo service lighttpd start
Starting lighttpd:
2016-02-29 09:51:24: (network.c.410) can't bind to port: 88 Permission denied
[FAILED]
in /etc/lighttpd/lighttpd.conf
, I have:
var.log_root = "/var/log/lighttpd"
var.server_root = "/var/www/lighttpd"
var.state_dir = "/var/run"
var.home_dir = "/var/www/html/eboardit/static"
var.conf_dir = "/etc/lighttpd"
#######################################################################
##
## Basic Configuration
## ---------------------
##
server.port = 88
##
## Use IPv6?
##
server.use-ipv6 = "disable"
I realize there's a very similar question from 4 years ago, but it wasn't answered. lighttpd cant bind port permission denied
I've tried a couple different ports. What should I be looking at? what would permission is required to bind to a port?
Thanks!
You are right! SELinux was limiting things. Here's another source. https://visibilityspots.org/selinux.html
But SELinux permitted use of 81 ... so switching to 81 worked.