{"id":3818,"date":"2014-06-21T15:58:27","date_gmt":"2014-06-21T20:58:27","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=3818"},"modified":"2022-06-03T03:46:54","modified_gmt":"2022-06-03T08:46:54","slug":"installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/","title":{"rendered":"Installing and setting-up JAVA &#038; JBoss 7 Final on CentOS 6"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><a href=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/07\/jboss_logo.png\"><img decoding=\"async\" class=\"alignleft wp-image-1124 size-medium\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/07\/jboss_logo-300x170.png\" alt=\"jboss_logo\" width=\"300\" height=\"170\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/07\/jboss_logo-300x170.png 300w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/07\/jboss_logo.png 451w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a>In the following tutorial we will walk you through the steps of <strong>installing and setting up JAVA and JBoss 7 Final<\/strong> using one of our <strong>CentOS 6 <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">linux virtual servers<\/a><\/strong>.<\/p>\n<p><strong>What is JBoss?<\/strong><\/p>\n<p>It is an open-source application server developed by <a title=\"RedHat\" href=\"http:\/\/www.redhat.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">RedHat<\/a> based on the J2EE platform for developing and deploying enterprise <strong>Java applications<\/strong>, <strong>Web applications<\/strong>, <strong>Services<\/strong>, <strong>Portals<\/strong> and more. The J2EE allows applications to be standardized and modular allowing JAVA to handle many programming aspects when developing an application.<\/p>\n<p><!--more--><\/p>\n<h3><b>UPDATE THE SYSTEM<\/b><\/h3>\n<p>Make sure you are in a <code>screen<\/code> session and your <a title=\"CentOS VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/centos-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">CentOS 6 VPS<\/a> is up-to-date by running:<\/p>\n<pre>## screen -U -S jboss-screen\r\n## yum update<\/pre>\n<h3><b>INSTALL JAVA<\/b><\/h3>\n<p>First thing to do is to <strong>install and set-up JAVA<\/strong> on your <strong>CentOS 6<\/strong> system. <strong>JBoss<\/strong> supports <strong>Java 6<\/strong> or <strong>Java 7<\/strong> and in this case we will be using the open-source implementation of Java 7.<\/p>\n<p>Install it by running the command below in your terminal:<\/p>\n<pre>## yum install java-1.7.0-openjdk<\/pre>\n<p>Verify JAVA is successfully installed by running:<\/p>\n<pre>## java -version\r\n\r\njava version \"1.7.0_55\"\r\nOpenJDK Runtime Environment (rhel-2.4.7.1.el6_5-i386 u55-b13)\r\nOpenJDK Client VM (build 24.51-b03, mixed mode, sharing)<\/pre>\n<h3><b>INSTALL JBOSS<\/b><\/h3>\n<p>Next, download the latest stable version of <strong>JBoss 7.1.x<\/strong> and install it in <code>\/opt<\/code> directory using:<\/p>\n<pre>## wget http:\/\/download.jboss.org\/jbossas\/7.1\/jboss-as-7.1.1.Final\/jboss-as-7.1.1.Final.tar.gz -P \/var\/tmp\r\n## tar -zxf \/var\/tmp\/jboss-as-7.1.1.Final.tar.gz -C \/opt\r\n## cd \/opt\/jboss-as-7.1.1.Final<\/pre>\n<p>Remove the downloaded archive if you don&#8217;t need it:<\/p>\n<pre>## rm -f \/var\/tmp\/jboss-as-7.1.1.Final.tar.gz<\/pre>\n<h3><b>CONFIGURE JBOSS<\/b><\/h3>\n<p>We need to configure the JBoss AS so it will run without <code>root<\/code> privileges because running it as <code>root<\/code> is a big security risk. The best way to run JBoss is by using a dedicated system user which will run the JBoss server using the <code>sudo<\/code> powers.<\/p>\n<p>So let&#8217;s set this up, shall we?<\/p>\n<pre>## useradd -r jboss -d \/opt\/jboss-as-7.1.1.Final\r\n## chown jboss: -R \/opt\/jboss-as-7.1.1.Final<\/pre>\n<p>Ok, with all that in place we are somewhat ready to start the JBoss server. Before doing so, let&#8217;s fine-tune some stuff, like enable access to the JBoss web interface and set it up to run as a system service, so that it can automatically start on system start-up and you can use <code>service jboss [start|stop]<\/code> etc to manage the Jboss service.<\/p>\n<p><b>&#8211; enable access to JBoss interface:<\/b><\/p>\n<pre>## vim \/opt\/jboss-as-7.1.1.Final\/standalone\/configuration\/standalone.xml\r\n\r\n&lt;interface name=\"management\"&gt;\r\n    &lt;!--&lt;inet-address value=\"${jboss.bind.address.management:127.0.0.1}\"\/&gt;--&gt;\r\n    &lt;any-ipv4-address\/&gt;\r\n&lt;\/interface&gt;\r\n&lt;interface name=\"public\"&gt;\r\n    &lt;!--&lt;inet-address value=\"${jboss.bind.address:127.0.0.1}\"\/&gt;--&gt;\r\n    &lt;any-ipv4-address\/&gt;\r\n&lt;\/interface&gt;<\/pre>\n<p>This will make JBoss&#8217; public and management frontend available from anywhere (<i>using authentication of course<\/i>) so you can manage it via a browser.<\/p>\n<p><b>&#8211; set-up Jboss to run as a service<\/b><\/p>\n<pre>## cp \/opt\/jboss-as-7.1.1.Final\/bin\/init.d\/jboss-as-standalone.sh \/etc\/init.d\/jboss\r\n## chmod +x \/etc\/init.d\/jboss\r\n## mkdir \/etc\/jboss-as<\/pre>\n<p>add the following configuration parameters<\/p>\n<pre>## vim \/etc\/jboss-as\/jboss-as.conf\r\n\r\nJBOSS_HOME=\/opt\/jboss-as-7.1.1.Final\r\nJBOSS_CONSOLE_LOG=\/var\/log\/jboss-console.log\r\nJBOSS_USER=jboss<\/pre>\n<p>start and add the <strong>JBoss server<\/strong> to your <a title=\"CentOS VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/centos-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">CentOS VPS<\/a> system start-up services using the following commands:<\/p>\n<pre>## service jboss start\r\n## chkconfig jboss on<\/pre>\n<p>Now, the console log file for your JBoss server will be located in <code>\/var\/log\/jboss-console.log<\/code>.<\/p>\n<p><b>&#8211; create new JBoss user accounts<\/b><\/p>\n<p>In order to use the administration console you need to create new JBoss users using the <code>add-user.sh<\/code> script in the <code>bin\/<\/code> directory within your JBoss installation <i>(which in this case is <code>\/opt\/jboss-as-7.1.1.Final\/bin<\/code>)<\/i>.<\/p>\n<p>example:<\/p>\n<pre>## cd \/opt\/jboss-as-7.1.1.Final\/bin\r\n## .\/add-user.sh\r\n\r\nWhat type of user do you wish to add?\r\n a) Management User (mgmt-users.properties)\r\n b) Application User (application-users.properties)\r\n(a): a\r\n\r\nEnter the details of the new user to add.\r\nRealm (ManagementRealm) :\r\nUsername : testuser\r\nPassword :\r\nRe-enter Password :\r\nAbout to add user 'testuser' for realm 'ManagementRealm'\r\nIs this correct yes\/no? y\r\nAdded user 'testuser' to file '\/opt\/jboss-as-7.1.1.Final\/standalone\/configuration\/mgmt-users.properties'\r\nAdded user 'testuser' to file '\/opt\/jboss-as-7.1.1.Final\/domain\/configuration\/mgmt-users.properties'<\/pre>\n<p>You can now access your JBoss administration console at <span style=\"text-decoration: underline;\">http:\/\/YOUR_IP:8080\/console<\/span> using the newly created <code>testuser<\/code> account.<\/p>\n<hr \/>\n<p>Of course you don\u2019t have to do any of this if you use one of our <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to install\u00a0JAVA and JBoss 7 for you. They are available 24&#215;7 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span>.<\/strong> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the following tutorial we will walk you through the steps of installing and setting up JAVA and JBoss 7 &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Installing and setting-up JAVA &#038; JBoss 7 Final on CentOS 6\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/#more-3818\" aria-label=\"Read more about Installing and setting-up JAVA &#038; JBoss 7 Final on CentOS 6\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":4615,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1699,13,1712,1707],"tags":[34,77,76],"class_list":["post-3818","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-centos","category-tutorials","category-web-frameworks","category-web-servers","tag-centos","tag-java","tag-jboss","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.1 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Installing and setting-up JAVA &amp; JBoss 7 Final on CentOS 6 | RoseHosting<\/title>\n<meta name=\"description\" content=\"Installing and setting-up JAVA &amp; JBoss 7 Final on CentOS 6 | RoseHosting\" \/>\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.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installing and setting-up JAVA &amp; JBoss 7 Final on CentOS 6\" \/>\n<meta property=\"og:description\" content=\"Installing and setting-up JAVA &amp; JBoss 7 Final on CentOS 6 | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2014-06-21T20:58:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:46:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/06\/jboss-logo.png\" \/>\n\t<meta property=\"og:image:width\" content=\"200\" \/>\n\t<meta property=\"og:image:height\" content=\"117\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Installing and setting-up JAVA &#038; JBoss 7 Final on CentOS 6\",\"datePublished\":\"2014-06-21T20:58:27+00:00\",\"dateModified\":\"2022-06-03T08:46:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/\"},\"wordCount\":504,\"commentCount\":12,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/06\/jboss-logo.png\",\"keywords\":[\"centos\",\"java\",\"jboss\"],\"articleSection\":[\"CentOS\",\"Tutorials\",\"Web Frameworks\",\"Web Servers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/\",\"name\":\"Installing and setting-up JAVA & JBoss 7 Final on CentOS 6 | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/06\/jboss-logo.png\",\"datePublished\":\"2014-06-21T20:58:27+00:00\",\"dateModified\":\"2022-06-03T08:46:54+00:00\",\"description\":\"Installing and setting-up JAVA & JBoss 7 Final on CentOS 6 | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/06\/jboss-logo.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/06\/jboss-logo.png\",\"width\":200,\"height\":117},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installing and setting-up JAVA &#038; JBoss 7 Final on CentOS 6\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/RoseHosting\",\"https:\/\/x.com\/rosehosting\",\"https:\/\/www.linkedin.com\/in\/rosehosting\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\/\/www.rosehosting.com\",\"https:\/\/www.facebook.com\/rosehosting.helpdesk\"],\"url\":\"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Installing and setting-up JAVA & JBoss 7 Final on CentOS 6 | RoseHosting","description":"Installing and setting-up JAVA & JBoss 7 Final on CentOS 6 | RoseHosting","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.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/","og_locale":"en_US","og_type":"article","og_title":"Installing and setting-up JAVA & JBoss 7 Final on CentOS 6","og_description":"Installing and setting-up JAVA & JBoss 7 Final on CentOS 6 | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2014-06-21T20:58:27+00:00","article_modified_time":"2022-06-03T08:46:54+00:00","og_image":[{"width":200,"height":117,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/06\/jboss-logo.png","type":"image\/png"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Installing and setting-up JAVA &#038; JBoss 7 Final on CentOS 6","datePublished":"2014-06-21T20:58:27+00:00","dateModified":"2022-06-03T08:46:54+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/"},"wordCount":504,"commentCount":12,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/06\/jboss-logo.png","keywords":["centos","java","jboss"],"articleSection":["CentOS","Tutorials","Web Frameworks","Web Servers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/","name":"Installing and setting-up JAVA & JBoss 7 Final on CentOS 6 | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/06\/jboss-logo.png","datePublished":"2014-06-21T20:58:27+00:00","dateModified":"2022-06-03T08:46:54+00:00","description":"Installing and setting-up JAVA & JBoss 7 Final on CentOS 6 | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/06\/jboss-logo.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/06\/jboss-logo.png","width":200,"height":117},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/installing-and-setting-up-java-jboss-7-final-on-a-centos-6-linux-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Installing and setting-up JAVA &#038; JBoss 7 Final on CentOS 6"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/3818","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=3818"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/3818\/revisions"}],"predecessor-version":[{"id":42213,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/3818\/revisions\/42213"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/4615"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=3818"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=3818"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=3818"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}