Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • Guided learning
      Receive custom learning paths powered by our AI assistant.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

JBoss EAP 7 Domain deployments - Part 2: Domain deployments through the EAP 7.0 Management Console

August 5, 2016
Elvadas Nono
Related topics:
Developer toolsJavaCI/CD
Related products:
Developer ToolsetRed Hat JBoss Web Server

    In this series of articles, I will present several ways to deploy an application on an EAP Domain. The series consists of four parts. Each one will be a standalone article, but the series as a whole will present a range of useful topics for working with JBoss EAP.

    • Part 1: Set up a simple EAP 7.0 Domain (this article).
    • Part 2: Domain deployments through the new EAP 7.0 Management Console
    • Part 3:  Introduction to DMR (Dynamic Model Representation) and domain deployments from the Common Language Interface CLI
    • Part 4: Domain deployment from the REST Management API

    In part 1 of this series on JBoss EAP 7 Domain deployments, we set up a simple EAP 7.0 domain with three hosts:

    Review the domain Configuration

    The domain controller host0, and two slaves hosts running several EAP 7.0 instances.

    JBoss EAP Simple Domain JBoss EAP Simple Domain

    In the following tutorial we are going to see how to deploy an application on JBoss EAP domain using the new EAP 7.0 Management Console.

    Tutorial App Source

    For the purpose of this tutorial we are using the JBoss EAP 7.0 Quickstarts, HelloWorld-html5 project. Check out the JBoss EAP Quickstart at this address: https://github.com/jboss-developer/jboss-eap-quickstarts.git


    cd $EAP_DOMAIN/labs
    git clone  https://github.com/jboss-developer/jboss-eap-quickstarts.git
    loning into 'jboss-eap-quickstarts'...
    remote: Counting objects: 104519, done.
    remote: Compressing objects: 100% (72/72), done.
    remote: Total 104519 (delta 15), reused 0 (delta 0), pack-reused 104406
    Receiving objects: 100% (104519/104519), 48.94 MiB | 484.00 KiB/s, done.
    Resolving deltas: 100% (44221/44221), done.
    Checking connectivity... done.
    
    

    From this repository we are going to install the helloworld-html5 on server primary-server-group using the managmeent console.

    Be aware on EAP Domain the deployment unit is a server group, you cannot deploy an application on a single server unless this server constitute a group. Deployments are done on either all the server groups or on a specific server group.

    Build the application


    cd jboss-eap-quickstarts/helloworld-html5/
    
    mvn clean install
    [INFO] Scanning for projects...
    Downloading: http://maven.repository.redhat.com/techpreview/all/org/jboss/bom/jboss-eap-javaee7-with-tools/7.0.0-build-12/jboss-eap-javaee7-with-tools-7.0.0-build-12.pom
    ..........
    to /Users/enonowog/.m2/repository/org/jboss/quickstarts/eap/jboss-helloworld-html5/7.0.0-SNAPSHOT/jboss-helloworld-html5-7.0.0-SNAPSHOT.pom
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD SUCCESS
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time: 01:31 min
    [INFO] Finished at: 2016-07-18T21:37:19+02:00
    [INFO] Final Memory: 19M/152M

    Deploy  helloworld-html5 on primary-server-group

    Connect to the admin console http://localhost:9990/console/  with management user credentials

    On Deployment Category, click on start link.

    Upload the .../labs/jboss-eap-quickstarts/helloworld-html5/target/jboss-helloworld-html5.war
    in the EAP Content repository by clicking on the add Button.

    Browse and select the helloworld-html5.war in the target subfolder.

    and click next, keep the default names and continue. A message indicated the war is successfully added and you can see the following view.

    The jboss-hello-html5 is now in the EAP content repository but not yet deployed on any instance.

    To  deploy this war on the primary-server-group, use the assign action button; select the expected server group and check the enable button to enable the deployment on this groups.

    if you check the primary-server-group configuration now, you should be able to see the hello war enabled.

    Now you can check the HTTP servers on which the application is reponding.

    Server11 => OK http://localhost:8180/jboss-helloworld-html5/  (port offset 100)
    Server12 => KO http://localhost:8280/jboss-helloworld-html5/  (port offset 200)
    Server21 => OK http://localhost:8380/jboss-helloworld-html5/  (port offset 300)
    Server22 => KO http://localhost:8480/jboss-helloworld-html5/  (port offset 400)
    Server23 => KO http://localhost:8580/jboss-helloworld-html5/  (port offset 500)

    The application is deployed and responding only on Server11 and Server21 who belongs to primary-server-group

     

    This deployment mechanism is very simple and can help administrator to deploy an application very quickly But what if we want to integrate the deployment in a specific Continuous integration process? In part 3 and part 4, we will explore the  EAP domainDeployments on secondary-server-group using the EAP CLI  and the associated REST API.

     

     

    Last updated: November 16, 2018

    Recent Posts

    • Protect data offloaded to GPU-accelerated environments with OpenShift sandboxed containers

    • Case study: Measuring energy efficiency on the x64 platform

    • How to prevent AI inference stack silent failures

    • Preventing GPU waste: A guide to JIT checkpointing with Kubeflow Trainer on OpenShift AI

    • How to manage TLS certificates used by OpenShift GitOps operator

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer tools
    • Interactive tutorials
    • API catalog

    Quicklinks

    • Learning resources
    • E-books
    • Cheat sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site status dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2026 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Chat Support

    Please log in with your Red Hat account to access chat support.