{"id":14229,"date":"2025-02-07T17:33:12","date_gmt":"2025-02-07T12:03:12","guid":{"rendered":"https:\/\/www.skynats.com\/?p=14229"},"modified":"2025-02-07T17:33:15","modified_gmt":"2025-02-07T12:03:15","slug":"how-to-install-openmaint-and-geoserver-on-ubuntu-server","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\/","title":{"rendered":"How to Install OpenMAINT and GeoServer on Ubuntu server"},"content":{"rendered":"\n<p>In this blog post, we will walk you through the steps to install OpenMAINT and GeoServer on Ubuntu server. The installation process includes setting up Java 17, PostgreSQL 12, GeoServer, and finally, OpenMAINT.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-pre-requisites\" style=\"font-size:18px\"><strong>Pre-requisites<\/strong><\/h3>\n\n\n\n<p>Before we start, we need to ensure that the system is updated and all the necessary dependencies are installed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" style=\"font-size:18px\"><strong>Step 1: Update Your System<\/strong><\/h3>\n\n\n\n<p>Start by updating the apt repository to ensure you have the latest packages.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get update -y\nsudo apt-get upgrade<\/code><\/pre>\n\n\n\n<p>Once the system is updated, install the unzip utility:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install unzip<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" style=\"font-size:18px\"><strong>Step 2: Install Java&nbsp;<\/strong><\/h3>\n\n\n\n<p>openMAINT requires <strong>Java <\/strong>for proper functionality. Let\u2019s install it and verify the installation<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get install openjdk-17-jdk\njava -version<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" style=\"font-size:18px\"><strong>Step 3: Install PostgreSQL 12<\/strong><\/h3>\n\n\n\n<p>openMAINT requires <strong>PostgreSQL 12<\/strong> to store its data. However, PostgreSQL 12 is not available by default on Ubuntu 20.04, so we need to add the PostgreSQL repository.<\/p>\n\n\n\n<p>Import the PostgreSQL Repository Key<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>wget --quiet -O - https:\/\/www.postgresql.org\/media\/keys\/ACCC4CF8.asc | sudo apt-key add -<\/code><\/pre>\n\n\n\n<p>Add the PostgreSQL Repository<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>echo \"deb http:\/\/apt.postgresql.org\/pub\/repos\/apt\/ $(lsb_release -cs)-pgdg main\" | sudo tee \/etc\/apt\/sources.list.d\/postgresql-pgdg.list > \/dev\/null\n\nsudo apt-get update<\/code><\/pre>\n\n\n\n<p>Install PostgreSQL 12<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get install postgresql-12<\/code><\/pre>\n\n\n\n<p>Install PostGIS for GeoSpatial Data<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install postgresql-12-postgis-3 libpostgis-java<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" style=\"font-size:18px\"><strong>Step 4: Configure PostgreSQL<\/strong><\/h3>\n\n\n\n<p>We need to configure PostgreSQL by changing the superuser password. Set a password for the postgres user:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo passwd postgres<\/code><\/pre>\n\n\n\n<p>Add the postgres user to the sudo group:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo usermod -aG sudo postgres<\/code><\/pre>\n\n\n\n<p>Log into PostgreSQL:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo -u postgres psql template1<\/code><\/pre>\n\n\n\n<p>Change the postgres user password:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ALTER USER postgres WITH PASSWORD 'PSSWD';\nReplace 'PSSWD' with your preferred password.\nExit the PostgreSQL console:\n\\q<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-5-install-geoserver\" style=\"font-size:18px\"><strong>Step 5: Install GeoServer<\/strong><\/h2>\n\n\n\n<p><a href=\"https:\/\/geoserver.org\/\">GeoServer<\/a> is required to provide map and spatial data services for openMAINT.\u00a0<\/p>\n\n\n\n<p>Create a geoserver user and add it to the sudo group:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo adduser geoserver\nsudo usermod -aG sudo geoserver\nsudo su - geoserver<\/code><\/pre>\n\n\n\n<p>Download GeoServer:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>wget https:\/\/sourceforge.net\/projects\/geoserver\/files\/GeoServer\/2.21.0\/geoserver-2.21.0-bin.zip<\/code><\/pre>\n\n\n\n<p>Extract the GeoServer zip file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>unzip -d \/home\/geoserver\/server geoserver-2.21.0-bin.zip<\/code><\/pre>\n\n\n\n<p>Edit the GeoServer port configuration:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>nano \/home\/geoserver\/server\/start.ini<\/code><\/pre>\n\n\n\n<p>In the start.ini file, change the line and Save the file:<br>jetty.http.port=8082<\/p>\n\n\n\n<p>Add GeoServer as a service:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo nano \/usr\/lib\/systemd\/system\/geoserver.service<\/code><\/pre>\n\n\n\n<p>Add the following configuration:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;Unit]\nDescription=GeoServer Service\nAfter=network.target\n\n&#91;Service]\nType=simple\nUser=root\nEnvironment=\"GEOSERVER_HOME=\/home\/geoserver\/server\"\nExecStart=\/home\/geoserver\/server\/bin\/startup.sh\nExecStop=\/home\/geoserver\/server\/bin\/shutdown.sh\n&#91;Install]\nWantedBy=multi-user.target<\/code><\/pre>\n\n\n\n<p>Reload systemd and enable GeoServer to start on boot:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl daemon-reload\nsudo systemctl enable --now geoserver<\/code><\/pre>\n\n\n\n<p>Now GeoServer should be running, and you can access it via http:\/\/YOUR-IP:8082\/geoserver using the default credentials: <strong>admin \/ geoserver<\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-6-install-openmaint-2-3\" style=\"font-size:18px\"><strong><strong>Step 6: Install OpenMAINT 2.3<\/strong><\/strong><\/h2>\n\n\n\n<p>Finally, let\u2019s install <strong>OpenMAINT<\/strong>.<\/p>\n\n\n\n<p>Create an openmaint user:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo adduser openmaint\nsudo usermod -aG sudo openmaint\nsudo su - openmaint<\/code><\/pre>\n\n\n\n<p>Download openMAINT 2.3:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>wget https:\/\/downloads.sourceforge.net\/project\/openmaint\/2.3\/openmaint-2.3-3.4.1-d.war<\/code><\/pre>\n\n\n\n<p>Run the installation:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>java -jar .\/openmaint-2.3-3.4.1-d.war install<\/code><\/pre>\n\n\n\n<p>During the installation process, you will be prompted for several configurations:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>PostgreSQL admin account<\/strong>: postgres\/PSSWD (use the password you set earlier).<\/li>\n\n\n\n<li><strong>CMDBuild PostgreSQL database name<\/strong>: openmaint_db<\/li>\n\n\n\n<li><strong>Database dump to load<\/strong>: empty<\/li>\n<\/ul>\n\n\n\n<p>Follow the instructions on the screen and complete the installation.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" style=\"font-size:18px\"><strong>Step 7: Launch OpenMAINT<\/strong><\/h4>\n\n\n\n<p>Begin by navigating to the cmdbuild_30 directory and executing the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd cmdbuild_30\/bin\/\n.\/startup.sh<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" style=\"font-size:18px\"><strong>Step 8: Access the OpenMAINT Dashboard<\/strong><\/h4>\n\n\n\n<p>With OpenMAINT now running and accessible on port 8080, you can visit it by navigating to the following URL: http:\/\/your-server-ip:8080\/cmdbuild.<\/p>\n\n\n\n<p>This will take you to the OpenMAINT login page, where you can log in using the default credentials:<br><strong>Username<\/strong>: admin<br><strong>Password<\/strong>: admin<\/p>\n\n\n\n<p>After logging in, you will be redirected to the OpenMAINT dashboard.<\/p>\n\n\n\n<p>If you need assistance with the process, our team is here to help you install OpenMAINT and GeoServer on Ubuntu server seamlessly. <a href=\"https:\/\/www.skynats.com\/contact-us\/\">Contact us<\/a> today for expert support and guidance to ensure a smooth installation!<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog post, we will walk you through the steps to install OpenMAINT and GeoServer on Ubuntu server. The installation process includes setting up Java 17, PostgreSQL 12, GeoServer, and finally, OpenMAINT. Pre-requisites Before we start, we need to ensure that the system is updated and all the necessary dependencies are installed. Step 1: [&hellip;]<\/p>\n","protected":false},"author":14,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[962,963,961,851],"class_list":["post-14229","post","type-post","status-publish","format-standard","hentry","category-blog","tag-geoserver","tag-install-openmaint-and-geoserver-on-ubuntu-server","tag-openmaint","tag-ubuntu-server"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Install OpenMAINT and GeoServer on Ubuntu server<\/title>\n<meta name=\"description\" content=\"Learn how to install OpenMAINT and GeoServer on Ubuntu server with this step-by-step guide. Get started today!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.skynats.com\/blog\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install OpenMAINT and GeoServer on Ubuntu server\" \/>\n<meta property=\"og:description\" content=\"Learn how to install OpenMAINT and GeoServer on Ubuntu server with this step-by-step guide. Get started today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2025-02-07T12:03:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-07T12:03:15+00:00\" \/>\n<meta name=\"author\" content=\"Jishnu V\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jishnu V\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\\\/\"},\"author\":{\"name\":\"Jishnu V\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/c63611da5e22d216e38d8658e5a605c5\"},\"headline\":\"How to Install OpenMAINT and GeoServer on Ubuntu server\",\"datePublished\":\"2025-02-07T12:03:12+00:00\",\"dateModified\":\"2025-02-07T12:03:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\\\/\"},\"wordCount\":443,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"GeoServer\",\"Install OpenMAINT and GeoServer on Ubuntu server\",\"OpenMAINT\",\"ubuntu server\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\\\/\",\"name\":\"How to Install OpenMAINT and GeoServer on Ubuntu server\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-02-07T12:03:12+00:00\",\"dateModified\":\"2025-02-07T12:03:15+00:00\",\"description\":\"Learn how to install OpenMAINT and GeoServer on Ubuntu server with this step-by-step guide. Get started today!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install OpenMAINT and GeoServer on Ubuntu server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/c63611da5e22d216e38d8658e5a605c5\",\"name\":\"Jishnu V\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"caption\":\"Jishnu V\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Install OpenMAINT and GeoServer on Ubuntu server","description":"Learn how to install OpenMAINT and GeoServer on Ubuntu server with this step-by-step guide. Get started today!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.skynats.com\/blog\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\/","og_locale":"en_US","og_type":"article","og_title":"How to Install OpenMAINT and GeoServer on Ubuntu server","og_description":"Learn how to install OpenMAINT and GeoServer on Ubuntu server with this step-by-step guide. Get started today!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-02-07T12:03:12+00:00","article_modified_time":"2025-02-07T12:03:15+00:00","author":"Jishnu V","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Jishnu V","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\/"},"author":{"name":"Jishnu V","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/c63611da5e22d216e38d8658e5a605c5"},"headline":"How to Install OpenMAINT and GeoServer on Ubuntu server","datePublished":"2025-02-07T12:03:12+00:00","dateModified":"2025-02-07T12:03:15+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\/"},"wordCount":443,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["GeoServer","Install OpenMAINT and GeoServer on Ubuntu server","OpenMAINT","ubuntu server"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\/","url":"https:\/\/www.skynats.com\/blog\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\/","name":"How to Install OpenMAINT and GeoServer on Ubuntu server","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-02-07T12:03:12+00:00","dateModified":"2025-02-07T12:03:15+00:00","description":"Learn how to install OpenMAINT and GeoServer on Ubuntu server with this step-by-step guide. Get started today!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-openmaint-and-geoserver-on-ubuntu-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install OpenMAINT and GeoServer on Ubuntu server"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/c63611da5e22d216e38d8658e5a605c5","name":"Jishnu V","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","caption":"Jishnu V"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14229","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=14229"}],"version-history":[{"count":0,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14229\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=14229"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=14229"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=14229"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}