I am working on 100 Days DevOps Day12 Linux Network Services

[Fri Aug 07 11:44:39.402096 2026] [autoindex:error] [pid 42701:tid 42848] [client 10.244.49.49:48244] AH01276: Cannot serve directory /var/www/html/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive
[Fri Aug 07 11:49:44.418701 2026] [autoindex:error] [pid 42702:tid 42861] [client 10.244.49.49:48592] AH01276: Cannot serve directory /var/www/html/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive

[tony@stapp01 ~]$ curl -I http://stapp01:6000
HTTP/1.1 403 Forbidden
Date: Fri, 07 Aug 2026 11:49:44 GMT
Server: Apache/2.4.62 (CentOS Stream)
Last-Modified: Fri, 12 Dec 2025 14:14:29 GMT
ETag: “296919-645c1e12b9b40”
Accept-Ranges: bytes
Content-Length: 2713881
Content-Type: text/html; charset=UTF-8

thor@jump-host ~$ curl -I http://stapp01:6000
HTTP/1.1 403 Forbidden
Date: Fri, 07 Aug 2026 12:07:15 GMT
Server: Apache/2.4.62 (CentOS Stream)
Last-Modified: Fri, 12 Dec 2025 14:14:29 GMT
ETag: “296919-645c1e12b9b40”
Accept-Ranges: bytes
Content-Length: 2713881
Content-Type: text/html; charset=UTF-8

thor@jump-host ~$ telnet stapp01 6000
Trying 10.244.49.49…
Connected to stapp01.
Escape character is ‘^]’.
^]
telnet> quit
Connection closed.

Think through the steps you need to take here.

  1. Identify the host by trying "curl stapp0N:6000 for N=1,2,3
  2. Suppose stapp01 is the problem host. Then ssh into stapp01 and become root.
  3. Did “curl stapp01:6000” work on that host?
  4. Suppose it didn’t. What’s running on 6000? Try “lsof -i :6000”.
  5. If something other than httpd is running on 6000, configure it to use a different port.
  6. Check to see the status of httpd. If it isn’t running, restart it.
  7. Does curl give you httpd on that host now? If it does, try jumphost.
  8. Doesn’t work? Maybe it’s the firewell. Try checking that on stapp01.

I went through all the points suggested, still having the same issue.
I’m able to telnet and curl from the jump host.
curl http://stapp02:8087
telnet stapp02 8087

Please help me to fix this issue as I’m not able to move further.

Thanks

See if this page explains the process a bit better for you.