tomcat
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tomcat [2020/06/11 21:21] – [RHEL 8 / Tomcat 9] k2patel | tomcat [2020/08/10 02:35] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 55: | Line 55: | ||
=== Create User === | === Create User === | ||
<code bash> | <code bash> | ||
- | groupadd --system tomcat -g 91 // with group id 91 | + | groupadd --system tomcat -g 91 # with group id 91 |
- | useradd -u 91 -d / | + | useradd -u 91 -d / |
</ | </ | ||
Line 101: | Line 101: | ||
</ | </ | ||
+ | === Backup / Remove examples === | ||
+ | <code bash> | ||
+ | cp -Rp / | ||
+ | rm -rf / | ||
+ | </ | ||
+ | === Set User === | ||
+ | <code xml | tomcat-users.xml> | ||
+ | <role rolename=" | ||
+ | <role rolename=" | ||
+ | <role rolename=" | ||
+ | <role rolename=" | ||
+ | <role rolename=" | ||
+ | <user username=" | ||
+ | </ | ||
+ | |||
+ | === Tomcat Native === | ||
+ | <code bash> | ||
+ | cd / | ||
+ | tar -xvf tomcat-native.tar.gz | ||
+ | cd tomcat-native-1.2.24-src/ | ||
+ | ./configure --with-java-home=/ | ||
+ | make && make install | ||
+ | </ | ||
+ | |||
+ | <code bash | / | ||
+ | LD_LIBRARY_PATH=$LD_LIBRARY_PATH: | ||
+ | export LD_LIBRARY_PATH | ||
+ | </ | ||
+ | |||
+ | :!: Set SSL[[tomcat# | ||
+ | :?: Set Auto redirect if needed [[tomcat# | ||
+ | |||
+ | === Start Service === | ||
+ | <code bash> | ||
+ | systemctl daemon-reload | ||
+ | systemctl enable tomcat | ||
+ | systemctl start tomcat | ||
+ | </ | ||
+ | |||
+ | === Firewall === | ||
+ | <code bash> | ||
+ | firewall-cmd --permanent --add-port=8080/ | ||
+ | firewall-cmd --permanent --add-port=8443/ | ||
+ | firewall-cmd --reload | ||
+ | </ | ||
tomcat.1591910481.txt.gz · Last modified: 2020/08/10 02:30 (external edit)