Project

General

Profile

How to Secure a Z2 Installation » History » Version 3

Henning Blohm, 15.08.2021 13:48

1 1 Henning Blohm
h1. How to secure a Z2 installation
2 2 Henning Blohm
3 3 Henning Blohm
This how to is looking into some very basic measures to implement to provide basic protection to a z2 installation. While we
4 1 Henning Blohm
5 3 Henning Blohm
are considering z2 here, these suggestions apply to pretty much any Web application system.
6
7 1 Henning Blohm
h2. Run a Firewall to Block Port Access
8 3 Henning Blohm
9
Java applications typically have more ports open than you think. This could be JMX related, debugging support etc. The same is true for your operating system. So in general make sure that only those ports are accessible that are required to run your application. On Linux this may well be just one port for SSH access (i.e. 22 by default) and one for Web application access.
10
11
There are some variations on the latter. In most cases your application is not the actual entry point for Web access but instead there will be some request routing happening before to make sure maintenance scenarios (and outages) and load-balancing can be dealt with and most importantly for SSL termination.
12
13
Instead of protecting every single server node of your installation, you may consider setting up a "Virtual LAN":https://en.wikipedia.org/wiki/Virtual_LAN setup where you can concentrate all access limitations and rules to securing a single gateway node.
14
15
The z2 Environment hasa not particular means for managing port-based access and indeed the reason for this section is to make you aware of this fact.
16
17
Typically the following ports will be used by default with z2:
18
19
|_. Port |_. Purpose |_. Configuration |
20
| 8080 | Web Container (Jetty) | @environment.base/webServer/jetty-http.xml@ |
21
| 5000 | Java debug port for home process | @$Z2_HOME/bin/launch.properties@ |
22
| 5100+x | Java debug port for web worker process | @environment.base/webWorker.properties@ |
23
| 7800+x | JMX port for web worker process | @environment.base/webWorker.properties@ |
24
25
However depending on your configuration other ports may be opened. Also note [[How_to_Remote_Manage]].
26 2 Henning Blohm
27
h2. Use Whitelisting for Web Applications