Created
September 3, 2022 07:33
-
-
Save parallaxhub/69404a445699736e0d6ebcb904210e88 to your computer and use it in GitHub Desktop.
GeoSerrver Installation with Apache Tomcat on Ubuntu 20.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mv geoserver-2.18.0-war.zip /var/lib/tomcat9/webapps | |
# navigate to the directory using: | |
cd /var/lib/tomcat9/webapps | |
# And unzip the file using: | |
unzip geoserver-2.18.0-war.zip | |
# Run the list command | |
ls | |
# and confirm the following directories and files exist: | |
# geoserver | |
# geoserver-2.18.0-war.zip | |
# geoserver.war | |
# license | |
# NOTICE.md | |
# README.txt | |
# ROOT | |
# target | |
# While not strictly necessary, you can choose to clean up the files and delete the zip file using | |
# rm geoserver-2.18.0-war.zip | |
# Go to the URL http://127.0.0.1:8080/geoserver to load the 'admin' page. | |
# Default Access Credential--> User: admin, pass: geoserver |
Author
parallaxhub
commented
Sep 3, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment