Reputation: 3136
I used nmap
to check which ports are open on my server it showed
PORT STATE SERVICE
9090/tcp open zeus-admin
now port 9090 is supposed to listen for apache tomcat
. What is this zeus-admin ?
how I start my apache tomcat server
?
Upvotes: 4
Views: 25375
Reputation: 9
Port 9090/tcp on Red Hat is their Admin Web Console, as described in this document https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/8/html-single/managing_systems_using_the_rhel_8_web_console/index#logging-in-to-the-web-console_getting-started-with-the-rhel-8-web-console
Upvotes: 0
Reputation: 10582
Zeus is sometimes used as an embedded web server for things like admin consoles. If you have the OpenFire XMPP server installed, you will find the configuration UI tools running on port 9090 (http://localhost:9090).
Upvotes: 1
Reputation: 161
It is also the default listed name when nmap'ing it. The actual service listening to that port doesn't have to be, it's what is usually the default service running at that port.
Upvotes: 6
Reputation: 1056
Zeus Web Server is a proprietary web server for Unix and Unix-like platforms.
ZWS seems to be dead since it hasn't been updated since January 2010, and the company no longer offers a similar server solution.
It's probably fine to just kill it, and remove it from operation as it's mostly just a security risk by now.
Upvotes: 3