{"id":1993,"date":"2023-12-30T12:30:00","date_gmt":"2023-12-30T18:30:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=1993"},"modified":"2023-11-20T10:28:50","modified_gmt":"2023-11-20T16:28:50","slug":"how-to-install-xwiki-on-almalinux-9","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/","title":{"rendered":"How to Install XWiki on AlmaLinux 9"},"content":{"rendered":"\n<div id=\"linux-478295367\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>XWiki is a free and open-source platform written in Java used for storing structured data and running the server-side code that creates the wiki interface. In this tutorial, we are going to explain how to install XWiki on AlmaLinux 9.<\/p>\n\n\n\n<!--more-->\n\n\n\n<p>XWiki offers a variety of features such as structured content, PDF export, Version control, plugins, API programming, and many more. XWiki stores the data into the MySQL database server, and alongside Tomcat we will install the MariaDB database server.<\/p>\n\n\n\n<p>Installing XWiki with all of its requirements will take up to 20 minutes. Let&#8217;s get started!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A server running AlmaLinux 9<\/li>\n\n\n\n<li>User privileges: root or non-root user with sudo privileges<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1. Update the System<\/h2>\n\n\n\n<p>Before we start with the installation of XWiki, we need to update the system packages to their latest versions available:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo dnf update -y &amp;&amp; sudo dnf upgrade -y<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2. Install Java<\/h2>\n\n\n\n<p>To install Java, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">dnf install java<\/pre>\n\n\n\n<p>Once Java is installed, you can check the version with the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">java --version<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host ~]# java --version\nopenjdk 11.0.21 2023-10-17 LTS\nOpenJDK Runtime Environment (Red_Hat-11.0.21.0.9-1) (build 11.0.21+9-LTS)\nOpenJDK 64-Bit Server VM (Red_Hat-11.0.21.0.9-1) (build 11.0.21+9-LTS, mixed mode, sharing)<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3. Install Tomcat<\/h2>\n\n\n\n<p>To install Tomcat, execute the following commands one by one:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">groupadd tomcat\n\nuseradd -g tomcat -d \/opt\/tomcat tomcat\n\nsu - tomcat\n\nwget https:\/\/dlcdn.apache.org\/tomcat\/tomcat-8\/v8.5.96\/bin\/apache-tomcat-8.5.96.tar.gz -O tomcat8.tar.gz\n\ntar -xzvf tomcat8.tar.gz --strip-components=1\n\nexit<\/pre>\n\n\n\n<p>Next, we need to create a service file for Tomcat:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">touch \/etc\/systemd\/system\/tomcat8.service<\/pre>\n\n\n\n<p>Once the file is created, open it with your preferred text editor and paste the following lines of code:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[Unit]\nDescription=Tomcat 8\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 and close it. Once done, reload the SystemD daemon. start the service, and configure it to start on boot:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl daemon-reload\n\nsystemctl start tomcat8\n\nsystemctl enable tomcat8<\/pre>\n\n\n\n<p>To check the status of the Tomcat service, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl status tomcat8<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host ~]# systemctl status tomcat8\n\u25cf tomcat8.service\n     Loaded: loaded (\/etc\/systemd\/system\/tomcat8.service; disabled; preset: disabled)\n     Active: active (running) since Sun 2023-11-19 14:25:10 CST; 2min 21s ago\n    Process: 7503 ExecStart=\/opt\/tomcat\/bin\/startup.sh (code=exited, status=0\/SUCCESS)\n   Main PID: 7510 (java)\n      Tasks: 28 (limit: 23116)\n     Memory: 155.7M\n        CPU: 8.996s\n     CGroup: \/system.slice\/tomcat8.service\n             \u2514\u25007510 \/usr\/lib\/jvm\/jre\/bin\/java -Djava.util.logging.config.file=\/opt\/tomcat\/conf\/logging.properties -Djava.util.logging.manager&gt;\n\nNov 19 14:25:10 host.test.vps systemd[1]: Starting tomcat8.service...\nNov 19 14:25:10 host.test.vps startup.sh[7503]: Tomcat started.\nNov 19 14:25:10 host.test.vps systemd[1]: Started tomcat8.service.\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4. Install MariaDB database server<\/h2>\n\n\n\n<p>To install the MariaDB database server, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">dnf install mariadb-server -y<\/pre>\n\n\n\n<p>After installation, start and enable the service:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl start mariadb &amp;&amp; sudo systemctl enable mariadb<\/pre>\n\n\n\n<p>To check the status of the service execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl status mariadb<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host ~]# sudo systemctl status mariadb\n\u25cf mariadb.service - MariaDB 10.5 database server\n     Loaded: loaded (\/usr\/lib\/systemd\/system\/mariadb.service; enabled; preset: disabled)\n     Active: active (running) since Sun 2023-11-19 14:33:59 CST; 49s ago\n       Docs: man:mariadbd(8)\n             https:\/\/mariadb.com\/kb\/en\/library\/systemd\/\n   Main PID: 8446 (mariadbd)\n     Status: \"Taking your SQL requests now...\"\n      Tasks: 16 (limit: 23116)\n     Memory: 75.5M\n        CPU: 670ms\n     CGroup: \/system.slice\/mariadb.service\n             \u2514\u25008446 \/usr\/libexec\/mariadbd --basedir=\/usr\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5. Create a MariaDB database and User<\/h2>\n\n\n\n<p>Now, we need to create a database and user for our XWiki installation. To do that, login to the MariaDB console with the <b><code>mysql<\/code><\/b> command and execute the following queries:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">MariaDB [(none)]&gt; CREATE DATABASE xwiki default character set utf8mb4 collate utf8mb4_bin;\nMariaDB [(none)]&gt; CREATE USER 'xwiki'@'localhost' IDENTIFIED BY 'YourStrongPasswordHere';\nMariaDB [(none)]&gt; GRANT all privileges on *.* to xwiki@localhost;\nMariaDB [(none)]&gt; EXIT;<\/pre>\n\n\n\n<p>Make sure to replace YourStrongPasswordHere with a unique, strong password. Remember it, because we&#8217;ll need it later.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6. Download XWiki<\/h2>\n\n\n\n<p>Finally, we are at the most important step of the installation. We need to download the XWiki installation, place it into the Tomcat webapps folder, and configure the MariaDB database Java connector.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cd \/opt\/tomcat\/webapps\n\nwget https:\/\/nexus.xwiki.org\/nexus\/content\/groups\/public\/org\/xwiki\/platform\/xwiki-platform-distribution-war\/15.8\/xwiki-platform-distribution-war-15.8.war -O xwiki.war<\/pre>\n\n\n\n<p>Next we need to download the MariaDB Java connector and move it into the <b><code>lib<\/code><\/b> folder of our XWiki application:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">wget https:\/\/dlm.mariadb.com\/3478935\/Connectors\/java\/connector-java-3.3.0\/mariadb-java-client-3.3.0.jar\n\nmv mariadb-java-client-3.3.0.jar \/opt\/tomcat\/webapps\/xwiki\/WEB-INF\/lib\/<\/pre>\n\n\n\n<p>To configure MariaDB, to be the main database server for XWiki, open the following file:<\/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 the HSQLDB configuration and uncomment the section for MariaDB configuration:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"361\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/7-1024x361.jpg\" alt=\"\" class=\"wp-image-2001\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/7-1024x361.jpg 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/7-300x106.jpg 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/7-150x53.jpg 150w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/7-768x271.jpg 768w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/7.jpg 1047w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Save the file and close it.<\/p>\n\n\n\n<p>Now, you can access your XWiki installation at <b>http:\/\/YourServerIPAddress:8080\/xwiki<\/b><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 7. Finish XWiki Installation<\/h2>\n\n\n\n<p>On the first screen, click on the <b>Continue<\/b> button<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"807\" height=\"604\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/1.png\" alt=\"\" class=\"wp-image-1994\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/1.png 807w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/1-300x225.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/1-150x112.png 150w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/1-768x575.png 768w\" sizes=\"(max-width: 807px) 100vw, 807px\" \/><\/figure>\n\n\n\n<p>In this step, set the administrator username, a strong password and email.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"720\" height=\"626\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/2.png\" alt=\"\" class=\"wp-image-1995\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/2.png 720w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/2-300x261.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/2-150x130.png 150w\" sizes=\"(max-width: 720px) 100vw, 720px\" \/><\/figure>\n\n\n\n<p>On the third screen, click on the <b>Continue<\/b> button:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"719\" height=\"282\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/3.png\" alt=\"\" class=\"wp-image-1996\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/3.png 719w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/3-300x118.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/3-150x59.png 150w\" sizes=\"(max-width: 719px) 100vw, 719px\" \/><\/figure>\n\n\n\n<p>Next choose the wiki to be empty and hit on the Continue button:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"719\" height=\"278\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/4.png\" alt=\"\" class=\"wp-image-1997\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/4.png 719w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/4-300x116.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/4-150x58.png 150w\" sizes=\"(max-width: 719px) 100vw, 719px\" \/><\/figure>\n\n\n\n<p>On the last window click on the Continue button as well:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"721\" height=\"367\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/5.png\" alt=\"\" class=\"wp-image-1998\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/5.png 721w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/5-300x153.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/5-150x76.png 150w\" sizes=\"(max-width: 721px) 100vw, 721px\" \/><\/figure>\n\n\n\n<p>Congratulations! You successfully installed XWiki on AlmaLinux 9 with the MariaDB java connector:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"160\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/6-1024x160.png\" alt=\"\" class=\"wp-image-1999\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/6-1024x160.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/6-300x47.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/6-150x23.png 150w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/6-768x120.png 768w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/6.png 1271w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Of course, you don\u2019t have to spend your time installing XWiki on AlmaLinux 9 if you have a <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\" target=\"_blank\" rel=\"noopener\" title=\"\">managed Linux server support<\/a> plan with us. If you do, you can simply ask our support team to install XWiki on AlmaLinux 9 for you. They are available 24\/7 and will be able to help you with the installation of XWiki as well as any additional requirements that you may have.<\/p>\n\n\n\n<p>PS. If you liked this post, please share it with your friends on social networks, or simply leave a reply below if this guide worked for you. Thanks.<\/p><div id=\"linux-3992326368\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>XWiki is a free and open-source platform written in Java used for storing structured data and running the server-side code that creates the wiki interface. In this tutorial, we are going to explain how to install XWiki on AlmaLinux 9.<\/p>\n","protected":false},"author":1,"featured_media":2010,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[242,2],"tags":[220,120],"class_list":["post-1993","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-open-source","category-tutorials","tag-almalinux","tag-xwiki"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install XWiki on AlmaLinux 9 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Want to run your own wiki website? You can use XWiki! We&#039;ll show you how to install XWiki on AlmaLinux 9, so you can start creating articles right away.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.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 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Want to run your own wiki website? You can use XWiki! We&#039;ll show you how to install XWiki on AlmaLinux 9, so you can start creating articles right away.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2023-12-30T18:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/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=\"410\" \/>\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=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install XWiki on AlmaLinux 9\",\"datePublished\":\"2023-12-30T18:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/\"},\"wordCount\":604,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/how-to-install-xwiki-on-almalinux-9.webp\",\"keywords\":[\"almalinux\",\"xwiki\"],\"articleSection\":[\"Open-source\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/\",\"name\":\"How to Install XWiki on AlmaLinux 9 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/how-to-install-xwiki-on-almalinux-9.webp\",\"datePublished\":\"2023-12-30T18:30:00+00:00\",\"author\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Want to run your own wiki website? You can use XWiki! We'll show you how to install XWiki on AlmaLinux 9, so you can start creating articles right away.\",\"breadcrumb\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#primaryimage\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/how-to-install-xwiki-on-almalinux-9.webp\",\"contentUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/how-to-install-xwiki-on-almalinux-9.webp\",\"width\":742,\"height\":410,\"caption\":\"how to install xwiki on almalinux 9\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/linuxhostsupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install XWiki on AlmaLinux 9\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install XWiki on AlmaLinux 9 | LinuxHostSupport","description":"Want to run your own wiki website? You can use XWiki! We'll show you how to install XWiki on AlmaLinux 9, so you can start creating articles right away.","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:\/\/linuxhostsupport.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 | LinuxHostSupport","og_description":"Want to run your own wiki website? You can use XWiki! We'll show you how to install XWiki on AlmaLinux 9, so you can start creating articles right away.","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2023-12-30T18:30:00+00:00","og_image":[{"width":742,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/how-to-install-xwiki-on-almalinux-9.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install XWiki on AlmaLinux 9","datePublished":"2023-12-30T18:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/"},"wordCount":604,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/how-to-install-xwiki-on-almalinux-9.webp","keywords":["almalinux","xwiki"],"articleSection":["Open-source","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/","name":"How to Install XWiki on AlmaLinux 9 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/how-to-install-xwiki-on-almalinux-9.webp","datePublished":"2023-12-30T18:30:00+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Want to run your own wiki website? You can use XWiki! We'll show you how to install XWiki on AlmaLinux 9, so you can start creating articles right away.","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/how-to-install-xwiki-on-almalinux-9.webp","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/11\/how-to-install-xwiki-on-almalinux-9.webp","width":742,"height":410,"caption":"how to install xwiki on almalinux 9"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-xwiki-on-almalinux-9\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install XWiki on AlmaLinux 9"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1993","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=1993"}],"version-history":[{"count":7,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1993\/revisions"}],"predecessor-version":[{"id":2013,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1993\/revisions\/2013"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/2010"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=1993"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=1993"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=1993"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}