0

I turned apex oracle to linux, my link looks like this:

http://localhost:8080/ords/

I want the link to look like this:

http://localhost/ords/

I have tried to change the ttomcat settings: How to change the port of Tomcat from 8080 to 80?, like here, but it didn't help, I'll dragging his forehead help)!

0xh3xa
  • 4,801
  • 2
  • 14
  • 28
Apex_MAN
  • 107
  • 3
  • 10

1 Answers1

0

You do this in different methods, the simplest one using the firewalld

  1. Add port firwalld from 80 to 8080 permanent
  2. Reload the firwalld

firewall-cmd --add-forward-port=port=80:proto=tcp:toport=8080 --permanent

firewall-cmd --reload

More information: RedHat

0xh3xa
  • 4,801
  • 2
  • 14
  • 28