{"id":720,"date":"2018-10-17T04:18:14","date_gmt":"2018-10-17T09:18:14","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=720"},"modified":"2018-10-17T04:18:54","modified_gmt":"2018-10-17T09:18:54","slug":"how-to-install-wildfly-14-on-debian-9","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wildfly-14-on-debian-9\/","title":{"rendered":"How to Install WildFly 14 on Debian 9"},"content":{"rendered":"<div id=\"linux-3753083500\" 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><img decoding=\"async\" class=\"size-full wp-image-722 alignright\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/10\/installing-wildfly-14-on-debian-9.jpg\" alt=\"installing wildfly 14 on debian 9\" width=\"167\" height=\"100\" \/>We\u2019ll show you <strong>how to install WildFly 14 on Debian 9<\/strong> with Apache as a reverse proxy. WildFly is free and open-source Java application server formerly known as JBoss. It is written in Java and used for building deploying and hosting Java applications and other web-based applications and services.<\/p>\n<p><!--more--><\/p>\n<h2>1. WildFly Requirements<\/h2>\n<p>In order to run WildFly on your Debian 9 server, you need the following requirements:<\/p>\n<ul>\n<li>Java SE 8 or later (we recommend that you use the latest update available) installed on your\u00a0Debian 9 virtual server<\/li>\n<li>Debian 9 VPS with root access enabled.<\/li>\n<\/ul>\n<h2>2. Log in via SSH and Update your System<\/h2>\n<p>First, you will need to log in to your Debian 9 VPS via SSH as the root user:<\/p>\n<pre>ssh root@IP_ADDRESS -p PORT_NUMBER<\/pre>\n<p>and as usual, run the following commands to upgrade all installed OS packages on your VPS:<\/p>\n<pre>apt-get update\r\napt-get upgrade<\/pre>\n<h2>3.\u00a0 Install Java<\/h2>\n<p>Java is not pre-installed on Debian 9 by default.<\/p>\n<p>To install the Java Developer Kit (JDK),\u00a0 execute this command on the VPS:<\/p>\n<pre>apt-get install default-jdk<\/pre>\n<p>To find out what version of Java has been installed, run:<\/p>\n<pre>java -version<\/pre>\n<p>The output should look something like this:<\/p>\n<pre>openjdk version \"1.8.0_181\"\r\nOpenJDK Runtime Environment (build 1.8.0_181-8u181-b13-1~deb9u1-b13)\r\nOpenJDK 64-Bit Server VM (build 25.181-b13, mixed mode)<\/pre>\n<p>&nbsp;<\/p>\n<h2>4.\u00a0 Install WildFly<\/h2>\n<pre>cd \/opt\r\nwget http:\/\/download.jboss.org\/wildfly\/14.0.1.Final\/wildfly-14.0.1.Final.tar.gz\r\ntar -xvzf wildfly-14.0.1.Final.tar.gz\r\nmv wildfly-14.0.1.Final wildfly<\/pre>\n<h2>5. Create a WildFly User<\/h2>\n<p>Create a new system user named wildfly:<\/p>\n<pre>groupadd -r wildfly\r\nuseradd -r -g wildfly -d \/opt\/wildfly -s \/sbin\/nologin wildfly<\/pre>\n<h2>6. Configure WildFly<\/h2>\n<p>Create a new WildFly configuration file:<\/p>\n<pre>vi \/etc\/default\/wildfly<\/pre>\n<p>Add the following lines:<\/p>\n<pre>WILDFLY_USER=\"wildfly\"\r\nSTARTUP_WAIT=180\r\nSHUTDOWN_WAIT=30\r\nWILDFLY_CONFIG=standalone.xml\r\nWILDFLY_MODE=standalone\r\nWILDFLY_BIND=0.0.0.0<\/pre>\n<p>so it will start WildFly 14 using the default web profile configuration in \u2018standalone\u2019 mode.<\/p>\n<p>Create a WildFly startup script, named \u2018launch.sh\u2019:<\/p>\n<pre>vi \/opt\/wildfly\/bin\/launch.sh<\/pre>\n<p>Add the following lines:<\/p>\n<pre>#!\/bin\/sh\r\n\r\nif [ \"x$WILDFLY_HOME\" = \"x\" ]; then\r\n    WILDFLY_HOME=\/opt\/wildfly\r\nfi\r\n\r\nif [ \"x$1\" = \"xdomain\" ]; then\r\n    echo 'Starting Wildfly in domain mode.'\r\n    $WILDFLY_HOME\/bin\/domain.sh -c $2 -b $3\r\nelse\r\n    echo 'Starting Wildfly in standalone mode.'\r\n    $WILDFLY_HOME\/bin\/standalone.sh -c $2 -b $3\r\nfi<\/pre>\n<p>Make the startup script executable:<\/p>\n<pre>chmod 755 \/opt\/wildfly\/bin\/launch.sh<\/pre>\n<p>Create a systemd init file for WildFly, named wildfly.service:<\/p>\n<pre>vi \/etc\/systemd\/system\/wildfly.service<\/pre>\n<p>Add the following lines:<\/p>\n<pre>[Unit]\r\nDescription=The WildFly Application Server\r\nAfter=syslog.target network.target\r\nBefore=apache2.service\r\n\r\n[Service]\r\nEnvironment=LAUNCH_JBOSS_IN_BACKGROUND=1\r\nEnvironmentFile=\/etc\/default\/wildfly\r\nUser=wildfly\r\nLimitNOFILE=102642\r\nPIDFile=\/var\/run\/wildfly\/wildfly.pid\r\nExecStart=\/opt\/wildfly\/bin\/launch.sh $WILDFLY_MODE $WILDFLY_CONFIG $WILDFLY_BIND\r\nStandardOutput=null\r\n\r\n[Install]\r\nWantedBy=multi-user.target<\/pre>\n<p>Run the following command to reload units from disk:<\/p>\n<pre>systemctl daemon-reload<\/pre>\n<p>Set the proper ownership of files and directories located in the \/opt\/wildfly directory:<\/p>\n<pre>chown wildfly:wildfly -R \/opt\/wildfly\/<\/pre>\n<p>Start the WildFly service:<\/p>\n<pre>systemctl start wildfly<\/pre>\n<p>Enable WildFly to start automatically on boot:<\/p>\n<pre>systemctl enable wildfly<\/pre>\n<h2>6. Set up a Reverse Proxy in Apache<\/h2>\n<p>In order to access your WildFly application only by using your domain name, without the port number in the URL, we need to set up\u00a0Apache\u00a0as a reverse proxy.<\/p>\n<p>To do so, we will need to enable some additional proxy modules in Apache. We can do this using the following commands:<\/p>\n<pre>a2enmod proxy\r\na2enmod proxy_http<\/pre>\n<p>Once this is done, create a new Apache configuration file for your domain with the following command:<\/p>\n<pre>vi \/etc\/apache2\/sites-available\/your-domain.conf<\/pre>\n<p>And enter the following:<\/p>\n<pre>&lt;VirtualHost *:80&gt;\r\nServerName your-domain.com\r\nServerAlias www.your-domain.com\r\n\r\nProxyRequests Off\r\n&lt;Proxy *&gt;\r\nOrder deny,allow\r\nAllow from all\r\n&lt;\/Proxy&gt;\r\nProxyPreserveHost On\r\n\r\nProxyPass \/ http:\/\/127.0.0.1:8080\/\r\nProxyPassReverse \/ http:\/\/127.0.0.1:8080\/\r\n\r\n&lt;Location \/&gt;\r\nOrder allow,deny\r\nAllow from all\r\n&lt;\/Location&gt;\r\n&lt;\/VirtualHost&gt;\r\n\r\n<\/pre>\n<p>Save the file and close it.<\/p>\n<p>There are two ways to enable\u00a0the &#8216;your-domain.conf&#8217; configuration in Apache. We can use:<\/p>\n<pre>a2ensite\u00a0your-domain.com.conf<\/pre>\n<p>Alternatively, we can accomplish the same using:<\/p>\n<pre>ln -s \/etc\/apache2\/sites-available\/your-domain.conf \/etc\/apache2\/sites-enabled\/your-domain.conf<\/pre>\n<p>Do not forget to replace your \u2018your-domain.com\u2019 with your actual domain name.<\/p>\n<p>Disable the default Apache configuration file:<\/p>\n<pre>rm \/etc\/apache2\/sites-enabled\/000-default.conf<\/pre>\n<p>Restart Apache for the changes to take effect:<\/p>\n<pre>service apache2 restart<\/pre>\n<p>WildFly has a powerful web-based administration console. In order to access the WildFly management console, we have to add a new user. Run the add-user.sh script within the bin directory of the WildFly installation:<\/p>\n<pre>\/opt\/wildfly\/bin\/add-user.sh<\/pre>\n<p>Select: a) Management User , enter a username and password for the WildFly management user.<\/p>\n<p>Edit the\u00a0\/opt\/wildfly\/standalone\/configuration\/standalone.xml WildFly configuration file and replace:<\/p>\n<p>&lt;interface name=&#8221;management&#8221;&gt;<br \/>\n&lt;inet-address value=&#8221;${jboss.bind.address.management:127.0.0.1}&#8221;\/&gt;<br \/>\n&lt;\/interface&gt;<br \/>\n&lt;interface name=&#8221;public&#8221;&gt;<br \/>\n&lt;inet-address value=&#8221;${jboss.bind.address:0.0.0.0}&#8221;\/&gt;<br \/>\n&lt;\/interface&gt;<br \/>\nwith:<br \/>\n&lt;interface name=&#8221;management&#8221;&gt;<br \/>\n&lt;any-address\/&amp;gt;<br \/>\n&lt;\/interface&gt;<br \/>\n&lt;interface name=&#8221;public&#8221;&gt;<br \/>\n&lt;any-address\/&gt;<br \/>\n&lt;\/interface&gt;<br \/>\nRestart WildFly for the changes to take effect:<\/p>\n<pre>systemctl restart wildfly<\/pre>\n<p>Open http:\/\/your-domain.com and access the WildFly management console using the newly created user login credentials.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-721\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/10\/Install-WildFly-14-on-Debian-9.jpg\" alt=\" Install WildFly 14 on Debian 9\" width=\"700\" height=\"286\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/10\/Install-WildFly-14-on-Debian-9.jpg 700w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/10\/Install-WildFly-14-on-Debian-9-300x123.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" \/><\/p>\n<p>That\u2019s it. If you followed all of the instructions properly you can now access your WildFly application using your domain name.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-724\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/10\/install-wildfly-on-debian.jpg\" alt=\"install wildfly on debian \" width=\"600\" height=\"320\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/10\/install-wildfly-on-debian.jpg 600w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/10\/install-wildfly-on-debian-300x160.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" \/><\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-723\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/10\/install-wildfly-on-debian-9.jpg\" alt=\"install wildfly on debian 9\" width=\"167\" height=\"100\" \/>Of course, you do not need to install WildFly 14 on your Debian 9 VPS yourself if you use our <a href=\"https:\/\/linuxhostsupport.com\">Premium Linux Server Management Services<\/a>, in which case you can simply ask our expert admins to install it for you. They are available 24\/7 and will cater to any requests or questions that you may have.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS<\/strong><span style=\"color: #000000;\">.<\/span><\/span> If you liked this post, feel free to share it with your friends on social networks by using the share shortcuts, or simply leave a comment below. Thanks.<\/p><div id=\"linux-755650096\" 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>We\u2019ll show you how to install WildFly 14 on Debian 9 with Apache as a reverse proxy. WildFly is free and open-source Java application server formerly known as JBoss. It is written in Java and used for building deploying and hosting Java applications and other web-based applications and services.<\/p>\n","protected":false},"author":1,"featured_media":725,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[81,123],"class_list":["post-720","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-debian-9","tag-wildfly"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install WildFly 14 on Debian 9 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"We\u2019ll show you how to install WildFly 14 on Debian 9 with Apache as a reverse proxy. WildFly is free and open-source Java application server formerly\" \/>\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-wildfly-14-on-debian-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 WildFly 14 on Debian 9 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"We\u2019ll show you how to install WildFly 14 on Debian 9 with Apache as a reverse proxy. WildFly is free and open-source Java application server formerly\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wildfly-14-on-debian-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=\"2018-10-17T09:18:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-10-17T09:18:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Install-WildFly-on-Debian-9.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\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-wildfly-14-on-debian-9\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wildfly-14-on-debian-9\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install WildFly 14 on Debian 9\",\"datePublished\":\"2018-10-17T09:18:14+00:00\",\"dateModified\":\"2018-10-17T09:18:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wildfly-14-on-debian-9\\\/\"},\"wordCount\":663,\"commentCount\":2,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wildfly-14-on-debian-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/How-to-Install-WildFly-on-Debian-9.jpg\",\"keywords\":[\"debian 9\",\"wildfly\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wildfly-14-on-debian-9\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wildfly-14-on-debian-9\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wildfly-14-on-debian-9\\\/\",\"name\":\"How to Install WildFly 14 on Debian 9 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wildfly-14-on-debian-9\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wildfly-14-on-debian-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/How-to-Install-WildFly-on-Debian-9.jpg\",\"datePublished\":\"2018-10-17T09:18:14+00:00\",\"dateModified\":\"2018-10-17T09:18:54+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"We\u2019ll show you how to install WildFly 14 on Debian 9 with Apache as a reverse proxy. WildFly is free and open-source Java application server formerly\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wildfly-14-on-debian-9\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wildfly-14-on-debian-9\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wildfly-14-on-debian-9\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/How-to-Install-WildFly-on-Debian-9.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/How-to-Install-WildFly-on-Debian-9.jpg\",\"width\":750,\"height\":410,\"caption\":\"How to Install WildFly on Debian 9\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wildfly-14-on-debian-9\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install WildFly 14 on Debian 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 WildFly 14 on Debian 9 | LinuxHostSupport","description":"We\u2019ll show you how to install WildFly 14 on Debian 9 with Apache as a reverse proxy. WildFly is free and open-source Java application server formerly","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-wildfly-14-on-debian-9\/","og_locale":"en_US","og_type":"article","og_title":"How to Install WildFly 14 on Debian 9 | LinuxHostSupport","og_description":"We\u2019ll show you how to install WildFly 14 on Debian 9 with Apache as a reverse proxy. WildFly is free and open-source Java application server formerly","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wildfly-14-on-debian-9\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2018-10-17T09:18:14+00:00","article_modified_time":"2018-10-17T09:18:54+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Install-WildFly-on-Debian-9.jpg","type":"image\/jpeg"}],"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-wildfly-14-on-debian-9\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wildfly-14-on-debian-9\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install WildFly 14 on Debian 9","datePublished":"2018-10-17T09:18:14+00:00","dateModified":"2018-10-17T09:18:54+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wildfly-14-on-debian-9\/"},"wordCount":663,"commentCount":2,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wildfly-14-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Install-WildFly-on-Debian-9.jpg","keywords":["debian 9","wildfly"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-wildfly-14-on-debian-9\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wildfly-14-on-debian-9\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wildfly-14-on-debian-9\/","name":"How to Install WildFly 14 on Debian 9 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wildfly-14-on-debian-9\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wildfly-14-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Install-WildFly-on-Debian-9.jpg","datePublished":"2018-10-17T09:18:14+00:00","dateModified":"2018-10-17T09:18:54+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"We\u2019ll show you how to install WildFly 14 on Debian 9 with Apache as a reverse proxy. WildFly is free and open-source Java application server formerly","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wildfly-14-on-debian-9\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-wildfly-14-on-debian-9\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wildfly-14-on-debian-9\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Install-WildFly-on-Debian-9.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Install-WildFly-on-Debian-9.jpg","width":750,"height":410,"caption":"How to Install WildFly on Debian 9"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wildfly-14-on-debian-9\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install WildFly 14 on Debian 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\/720","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=720"}],"version-history":[{"count":2,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/720\/revisions"}],"predecessor-version":[{"id":727,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/720\/revisions\/727"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/725"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=720"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=720"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=720"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}