{"id":1817,"date":"2023-05-30T12:30:00","date_gmt":"2023-05-30T17:30:00","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=1817"},"modified":"2023-08-29T07:13:47","modified_gmt":"2023-08-29T12:13:47","slug":"how-to-install-xwiki-on-almalinux-9","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-xwiki-on-almalinux-9\/","title":{"rendered":"How to Install XWiki on AlmaLinux 9"},"content":{"rendered":"\n<p>XWiki is a free and open-source wiki platform software written in Java. It was initially released in 2003 under an LGPL license. XWiki runs on a servlet container like Tomcat, JBoss, Jetty, etc. It enables you to deploy a simple web platform. In this tutorial, we will show you how to install <a href=\"https:\/\/www.rosehosting.com\/almalinux-hosting\/\" title=\"\">XWiki on AlmaLinux<\/a> 9.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisite<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>an AlmaLinux 9 server<\/li>\n\n\n\n<li>root access enabled or a regular user with sudo privileges<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Conventions<\/h3>\n\n\n\n<p># \u2013 given commands should be executed with root privileges either directly as a root user or by use of sudo command<br>$ \u2013 given commands should be executed as a regular user<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Log in to your server via SSH<\/h2>\n\n\n\n<p>First, you will need to log in to your AlmaLinux 9 VPS via SSH as the root user:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># ssh root@IP_Address -p Port_number<\/pre>\n\n\n\n<p>You will need to replace &#8216;IP_Address&#8217; and &#8216;Port_number&#8217; with your server&#8217;s respective IP address and SSH port number. Additionally, replace &#8216;root&#8217; with the username of the system user with sudo privileges.<\/p>\n\n\n\n<p>You can check whether you have the proper AlmaLinux version installed on your server with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># cat \/etc\/almalinux-release<\/pre>\n\n\n\n<p>It will return an output like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">AlmaLinux release 9.1 (Lime Lynx)<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Update the system<\/h2>\n\n\n\n<p>Before starting, you have to make sure that all AlmaLinux OS packages installed on the server are up to date. You can do this by running the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># dnf update\n# dnf upgrade<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3. Install Java<\/h2>\n\n\n\n<p>We can install Java from the default repository; let&#8217;s execute this command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># dnf install java<\/pre>\n\n\n\n<p>To verify, we can check the Java version. Run this command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># java -version<\/pre>\n\n\n\n<p>It will return an output like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">openjdk version \"11.0.18\" 2023-01-17 LTS\nOpenJDK Runtime Environment (Red_Hat-11.0.18.0.10-2.el9_1) (build 11.0.18+10-LTS)\nOpenJDK 64-Bit Server VM (Red_Hat-11.0.18.0.10-2.el9_1) (build 11.0.18+10-LTS, mixed mode, sharing)<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4. Install Tomcat<\/h2>\n\n\n\n<p>Tomcat 10 is not recommended at the moment to run XWiki, and Tomcat 9 also has some bugs. So we are going to install Tomcat 8 in this step. Tomcat will be installed under a new system user called &#8216;tomcat&#8217;. Let&#8217;s create this user first.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># groupadd tomcat\n# useradd -g tomcat -d \/opt\/tomcat tomcat<\/pre>\n\n\n\n<p>Now, we can switch to Tomcat users to proceed with downloading and installing Tomcat.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># su - tomcat<\/pre>\n\n\n\n<p>You can check the <a href=\"https:\/\/tomcat.apache.org\/download-80.cgi\">latest released Tomcat<\/a> 8 at their download page, then right-click the .tar.gz file and copy the link<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ wget https:\/\/dlcdn.apache.org\/tomcat\/tomcat-8\/v8.5.87\/bin\/apache-tomcat-8.5.87.tar.gz -O tomcat8.tar.gz<\/pre>\n\n\n\n<p>Once downloaded, we can extract it and exit.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ tar -xzvf tomcat8.tar.gz --strip-components=1\n$ exit<\/pre>\n\n\n\n<p>That&#8217;s it; Tomcat files are extracted in \/opt\/tomcat directory. The next step is to create a Tomcat systemd file.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># nano \/etc\/systemd\/system\/tomcat8.service<\/pre>\n\n\n\n<p>Copy and paste the following in to that file<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[Unit]\nDescription=Apache Tomcat 8 Service\nAfter=syslog.target network.target\n\n[Service]\nType=forking\n\nUser=tomcat\nGroup=tomcat\n\nEnvironment=JAVA_HOME=\/usr\/lib\/jvm\/jre\nEnvironment=CATALINA_PID=\/opt\/tomcat\/temp\/tomcat.pid\nEnvironment=CATALINA_HOME=\/opt\/tomcat\nEnvironment=CATALINA_BASE=\/opt\/tomcat\nEnvironment='CATALINA_OPTS=-Xms512M -Xmx1024M -XX:MaxPermSize=192m -server -XX:+UseParallelGC'\nEnvironment='JAVA_OPTS=-Djava.awt.headless=true -Djava.security.egd=file:\/dev\/.\/urandom'\n\nExecStart=\/opt\/tomcat\/bin\/startup.sh\nExecStop=\/bin\/kill -15 $MAINPID\n\n[Install]\nWantedBy=multi-user.target<\/pre>\n\n\n\n<p>Save the file, then exit.<\/p>\n\n\n\n<p>It is time to reload systemd and run Tomcat<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># systemctl daemon-reload\n# systemctl enable --now tomcat8<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5. Install MariaDB Server and Create a Database<\/h2>\n\n\n\n<p>MariaDB server is available in the default repository, so we can install it easily.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># dnf install mariadb-server<\/pre>\n\n\n\n<p>MySQL is installed, and we will run it and enable it on boot.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># systemctl enable --now mariadb<\/pre>\n\n\n\n<p>MySQL is running now, and we can create a user and database. Since we didn&#8217;t create a password for the MySQL root user, we can execute these commands below to create a database and user and give it the privileges.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mysql -e \"create database xwiki default character set utf8mb4 collate utf8mb4_bin\"\nmysql -e \"CREATE USER 'xwiki'@'localhost' IDENTIFIED BY 'm0d1fyth15'\";\nmysql -e \"grant all privileges on *.* to xwiki@localhost\"<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6. Download XWiki<\/h2>\n\n\n\n<p>To get the more recent version, you can check their download page at https:\/\/www.xwiki.org\/xwiki\/bin\/view\/Download\/. When writing this article, the latest stable version is 15.2 so we are going to download and install that version.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># su - tomcat<\/pre>\n\n\n\n<p>Now, download and move it to webapps directory<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ wget https:\/\/nexus.xwiki.org\/nexus\/content\/groups\/public\/org\/xwiki\/platform\/xwiki-platform-distribution-war\/15.2\/xwiki-platform-distribution-war-15.2.war -O xwiki.war\n$ mv xwiki.war \/opt\/tomcat\/webapps\/<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 7. Download MariaDB Connector<\/h2>\n\n\n\n<p>Since we are using MariaDB, so we need to download its Java connector. Do not confuse this with MySQL Java connector.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ wget https:\/\/dlm.mariadb.com\/2896669\/Connectors\/java\/connector-java-3.1.3\/mariadb-java-client-3.1.3.jar\n$ mv mariadb-java-client-3.1.3.jar webapps\/xwiki\/WEB-INF\/lib\/\n$ exit<\/pre>\n\n\n\n<p>You can check the more <a href=\"https:\/\/mariadb.com\/downloads\/connectors\/connectors-data-access\/java8-connector\">recent version of the MariaDB connector<\/a>.<\/p>\n\n\n\n<p>Now, we need to configure XWiki to use MariaDB as the database server. To do this, we need to disable the default database and enable MariaDB.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># nano \/opt\/tomcat\/webapps\/xwiki\/WEB-INF\/hibernate.cfg.xml<\/pre>\n\n\n\n<p>Comment out the default hsqldb database section and uncomment and edit the MariaDB database section as shown below:<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/04\/disable-hsqldb.png\" alt=\"\" class=\"wp-image-45340\"\/><\/figure>\n<\/div>\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/04\/xwiki-enable-mariadb.jpg\" alt=\"\" class=\"wp-image-45339\"\/><\/figure>\n<\/div>\n\n\n<p>Now, let&#8217;s restart Tomcat and go to http:\/\/YOUR_IP_ADDRESS:8080\/xwiki, and you should see that XWiki is initializing.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/04\/xwiki-installation-1.jpg\" alt=\"\" class=\"wp-image-45341\"\/><\/figure>\n<\/div>\n\n\n<p>Click Continue to proceed.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/04\/xwiki-installation-2-create-admin.jpg\" alt=\"\" class=\"wp-image-45342\"\/><\/figure>\n<\/div>\n\n\n<p>Click on Register and Login<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/04\/xwiki-installation-3-connected.jpg\" alt=\"\" class=\"wp-image-45343\"\/><\/figure>\n<\/div>\n\n\n<p>Click on the <strong>Continue<\/strong> button<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/04\/xwiki-installation-4-flavor.png\" alt=\"\" class=\"wp-image-45344\"\/><\/figure>\n<\/div>\n\n\n<p>Click on the existing flavor then click &#8216;Install this flavor&#8217;<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/04\/xwiki-installation-5-flavor2.jpg\" alt=\"\" class=\"wp-image-45345\"\/><\/figure>\n<\/div>\n\n\n<p>Click on Install and once finished click Continue<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/04\/xwiki-installation-5-flavor-installed.png\" alt=\"\" class=\"wp-image-45346\"\/><\/figure>\n<\/div>\n\n\n<p>Click Continue<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/04\/xwiki-installation-7-report.jpg\" alt=\"\" class=\"wp-image-45347\"\/><\/figure>\n<\/div>\n\n\n<p>Click the Continue button.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/04\/xwiki-installation-8-installed.jpg\" alt=\"\" class=\"wp-image-45348\"\/><\/figure>\n<\/div>\n\n\n<p>That&#8217;s it, XWiki installation has been completed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 8. Install and Configure Nginx<\/h2>\n\n\n\n<p>In this step, you are able to access your XWiki installation at http:\/\/YOUR_IP_ADDRESS:\/8080\/xwiki. If you want to access your XWiki installation using a domain or subdomain, we need to install a webserver and configure it.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># dnf install nginx<\/pre>\n\n\n\n<p>Let&#8217;s create a new nginx server block for your domain.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># nano \/etc\/nginx\/conf.d\/xwiki.conf<\/pre>\n\n\n\n<p>Paste the lines below into the configuration file.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">map $request_uri $expires {\ndefault off;\n~*\\.(ogg|ogv|svg|svgz|eot|otf|woff|mp4|ttf|rss|atom|js|jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)(\\?|$) 1h;\n~*\\.(css) 0m;\n}\n\nexpires $expires;\n\nserver {\nlisten 80;\nserver_name yourdomain.com;\ncharset utf-8;\n\nroot \/var\/www\/html;\n\nlocation \/.well-known {\nalias \/var\/www\/html;\n}\n\nlocation \/ {\nrewrite ^ $scheme:\/\/$server_name\/xwiki$request_uri? permanent;\n}\n\nlocation ^~ \/xwiki {\nproxy_pass http:\/\/localhost:8080;\nproxy_cache off;\nproxy_set_header X-Real-IP $remote_addr;\nproxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\nproxy_set_header Host $http_host;\nproxy_set_header X-Forwarded-Proto $scheme;\nexpires $expires;\n}\n}<\/pre>\n\n\n\n<p>Exit the file, but before you do that, make sure to replace yourdomain.com with your actual domain or subdomain name. Finally, restart nginx to apply the new nginx server block.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># systemctl restart nginx<\/pre>\n\n\n\n<p>We hope that our step-by-step guide on installing XWiki on AlmaLinux 9 has made the process much clearer and easier for you. Now, we&#8217;d love to hear from you:<\/p>\n\n\n\n<p>Do you have any concerns about the steps or need more detailed information?<\/p>\n\n\n\n<p>Could you share any unique topics or tutorial requests you&#8217;d like us to consider for our upcoming posts?<\/p>\n\n\n\n<p>We&#8217;d appreciate your feedback in the comments below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>XWiki is a free and open-source wiki platform software written in Java. It was initially released in 2003 under an LGPL license. XWiki runs on a servlet container like Tomcat, JBoss, Jetty, etc. It enables you to deploy a simple web platform. In this tutorial, we will show you how to install XWiki on AlmaLinux &#8230; <a title=\"How to Install XWiki on AlmaLinux 9\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-xwiki-on-almalinux-9\/\" aria-label=\"More on How to Install XWiki on AlmaLinux 9\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":1820,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[260,274,13],"tags":[232,88],"class_list":["post-1817","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","category-open-source","category-tutorials","tag-almalinux","tag-xwiki"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install XWiki on AlmaLinux 9 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"XWiki is a free and open-source wiki platform software written in Java. It was initially released in 2003 under an LGPL license. XWiki runs on a servlet\" \/>\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.linuxcloudvps.com\/blog\/how-to-install-xwiki-on-almalinux-9\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install XWiki on AlmaLinux 9 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"XWiki is a free and open-source wiki platform software written in Java. It was initially released in 2003 under an LGPL license. XWiki runs on a servlet\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-xwiki-on-almalinux-9\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2023-05-30T17:30:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-29T12:13:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/05\/how-to-install-xwiki-on-almalinux-9.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-xwiki-on-almalinux-9\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-xwiki-on-almalinux-9\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Install XWiki on AlmaLinux 9\",\"datePublished\":\"2023-05-30T17:30:00+00:00\",\"dateModified\":\"2023-08-29T12:13:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-xwiki-on-almalinux-9\\\/\"},\"wordCount\":826,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-xwiki-on-almalinux-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/how-to-install-xwiki-on-almalinux-9.webp\",\"keywords\":[\"almalinux\",\"xwiki\"],\"articleSection\":[\"Linux\",\"open-source\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-xwiki-on-almalinux-9\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-xwiki-on-almalinux-9\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-xwiki-on-almalinux-9\\\/\",\"name\":\"How to Install XWiki on AlmaLinux 9 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-xwiki-on-almalinux-9\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-xwiki-on-almalinux-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/how-to-install-xwiki-on-almalinux-9.webp\",\"datePublished\":\"2023-05-30T17:30:00+00:00\",\"dateModified\":\"2023-08-29T12:13:47+00:00\",\"description\":\"XWiki is a free and open-source wiki platform software written in Java. It was initially released in 2003 under an LGPL license. XWiki runs on a servlet\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-xwiki-on-almalinux-9\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-xwiki-on-almalinux-9\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-xwiki-on-almalinux-9\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/how-to-install-xwiki-on-almalinux-9.webp\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/how-to-install-xwiki-on-almalinux-9.webp\",\"width\":742,\"height\":372,\"caption\":\"how to install xwiki on almalinux 9\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-xwiki-on-almalinux-9\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install XWiki on AlmaLinux 9\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/LinuxCloudVPS\",\"https:\\\/\\\/x.com\\\/LinuxCloudVPS\",\"http:\\\/\\\/www.linkedin.com\\\/company\\\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/www.linuxcloudvps.com\\\/\"],\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install XWiki on AlmaLinux 9 | LinuxCloudVPS Blog","description":"XWiki is a free and open-source wiki platform software written in Java. It was initially released in 2003 under an LGPL license. XWiki runs on a servlet","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.linuxcloudvps.com\/blog\/how-to-install-xwiki-on-almalinux-9\/","og_locale":"en_US","og_type":"article","og_title":"How to Install XWiki on AlmaLinux 9 | LinuxCloudVPS Blog","og_description":"XWiki is a free and open-source wiki platform software written in Java. It was initially released in 2003 under an LGPL license. XWiki runs on a servlet","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-xwiki-on-almalinux-9\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2023-05-30T17:30:00+00:00","article_modified_time":"2023-08-29T12:13:47+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/05\/how-to-install-xwiki-on-almalinux-9.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-xwiki-on-almalinux-9\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Install XWiki on AlmaLinux 9","datePublished":"2023-05-30T17:30:00+00:00","dateModified":"2023-08-29T12:13:47+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-xwiki-on-almalinux-9\/"},"wordCount":826,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/05\/how-to-install-xwiki-on-almalinux-9.webp","keywords":["almalinux","xwiki"],"articleSection":["Linux","open-source","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-xwiki-on-almalinux-9\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-xwiki-on-almalinux-9\/","name":"How to Install XWiki on AlmaLinux 9 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/05\/how-to-install-xwiki-on-almalinux-9.webp","datePublished":"2023-05-30T17:30:00+00:00","dateModified":"2023-08-29T12:13:47+00:00","description":"XWiki is a free and open-source wiki platform software written in Java. It was initially released in 2003 under an LGPL license. XWiki runs on a servlet","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-xwiki-on-almalinux-9\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/05\/how-to-install-xwiki-on-almalinux-9.webp","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/05\/how-to-install-xwiki-on-almalinux-9.webp","width":742,"height":372,"caption":"how to install xwiki on almalinux 9"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install XWiki on AlmaLinux 9"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1817","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=1817"}],"version-history":[{"count":3,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1817\/revisions"}],"predecessor-version":[{"id":1931,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1817\/revisions\/1931"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/1820"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=1817"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=1817"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=1817"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}