Re: ANN: Bill Stewart's Apache Tomcat Setup for Windows [9.0.40]

2020-12-01 Thread Brian Wolfe
Rob,
It looks like this installer is specific to windows and from a brief glance
at documentation it mostly helps setting it up as a windows service and
helps with upgrades. As far as linux distributions go installation and
upgrade via the rpm packages should take care of most of that. At least
setting up the systemctl services and the user/groups necessary for it to
run. I'm not sure I see a need for something similar for linux. Anything
more would be specific to your use case.

On Tue, Dec 1, 2020 at 6:08 PM Rob Sargent  wrote:

> Is there something similar for embedded tomcat on linux?
>
> On 12/1/20 3:58 PM, Bill Stewart wrote:
> > Documentation and installer source:
> >
> > https://github.com/Bill-Stewart/ApacheTomcatSetup
> >
> > Download installer:
> >
> > https://github.com/Bill-Stewart/ApacheTomcatSetup/releases
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> > For additional commands, e-mail: users-h...@tomcat.apache.org
> >
>


-- 
Thanks,
Brian Wolfe
https://www.linkedin.com/in/brian-wolfe-3136425a/


Re: ANN: Bill Stewart's Apache Tomcat Setup for Windows [9.0.40]

2020-12-01 Thread Rob Sargent

Is there something similar for embedded tomcat on linux?

On 12/1/20 3:58 PM, Bill Stewart wrote:

Documentation and installer source:

https://github.com/Bill-Stewart/ApacheTomcatSetup

Download installer:

https://github.com/Bill-Stewart/ApacheTomcatSetup/releases

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



ANN: Bill Stewart's Apache Tomcat Setup for Windows [9.0.40]

2020-12-01 Thread Bill Stewart
Documentation and installer source:

https://github.com/Bill-Stewart/ApacheTomcatSetup

Download installer:

https://github.com/Bill-Stewart/ApacheTomcatSetup/releases

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: ERR_CONNECTION_REFUSED

2020-12-01 Thread Jim Johnson
On Mon, Nov 30, 2020 at 10:39 AM Tercio Pedro  wrote:

> Hello,
>
> I am a user of the Tomcat server, I need assistance in configuring the ssl
> certificate and port 443.
>
> I installed the ssl certificate but the site just opens on port 8443 I want
> to go to port 443, I already changed the port on the connector
> (server.xml), I already enabled the port on the firewall and when I try to
> open on port 443 I have the error: ERR_CONNECTION_REFUSED
>
> I need your help.
>
> Thanks
>

Hello,

I guess my first questions would be what user / account are you using to
run the Tomcat process? Can you confirm that port 443 is actually listening
when you start Tomcat? Are there any errors in the catalina.out log?

Ports lower than 1024 are considered privileged ports and only root can
manage processes that use those ports. There are some workarounds where you
can use software like authbind to have a non-root user do it instead but it
takes some extra tinkering. There are also folks that run Tomcat on 8443
and then configure iptables to forward port 443 to 8443. There are a few
different ways to accomplish what you want to do - have you researched any
of these solutions?

Jim