mtmacdonald
mtmacdonald

Reputation: 15070

How to change the Rundeck web interface port from 4440 to 80

I'm trying to use Rundeck on Ubuntu 14.04.

How do I change the web interface port from 4440 (default) to 80?

The port number seems to be referred to in various config locations (including /etc/rundeck/profile and /etc/rundeck/framework.properties) but changing these had no effect for me and I can't find a specific section in the documentation on changing the web port.

Upvotes: 0

Views: 4974

Answers (2)

wilsonwers
wilsonwers

Reputation: 1

Do you can use two rules iptables

iptables -t nat -I PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 4440 iptables -I INPUT -p tcp --dport 4440 -j ACCEPT

Upvotes: 0

Leo Prince
Leo Prince

Reputation: 2050

Use a proxy pass with either Apache or Nginx. Its a solution..

You needed to modify these files from 4440 to 80

framework.properties profile rundeck-config.properties

But you will get the following java exception when trying to run in 80.

java.net.SocketException: Permission denied

Hence apache or nginx proxy pass is the working solution

Upvotes: 1

Related Questions