Featured resource
2025 Tech Upskilling Playbook
Tech Upskilling Playbook

Build future-ready tech teams and hit key business milestones with seven proven plays from industry leaders.

Check it out
  • Lab
    • Libraries: If you want this lab, consider one of these libraries.
    • Cloud
Google Cloud Platform icon
Labs

Configuring a JBoss EAP Standalone Server

JBoss EAP can be run in a number of modes, but the standalone server mode is just that — a single instance of JBoss that can be used to deploy and manage Java applications through the provided console or the CLI. For the most part, the JBoss EAP can run successfully out-of-the-box, but we can further configure access by altering any of the provided standalone server configuration files.

Google Cloud Platform icon
Lab platform
Lab Info
Level
Beginner
Last updated
Sep 24, 2025
Duration
45m

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.
Table of Contents
  1. Challenge

    Update Standalone Networking
    1. Attempt to access the JBoss management console at PUBLICIP:9990. This attempt should fail.

    2. From the CLI, switch to the JBoss home directory:

      cd /opt/jboss-eap/
      
    3. Open the standalone configuration file:

      sudo vim standalone/configuration/standalone.xml
      
    4. We need to update our networking interfaces to accept connections from outside the local host. Look for the <interfaces> code block and update the 127.0.0.1 address to use 0.0.0.0 instead:

      <interfaces>
          <interface name="management">
              <inet-address value="${jboss.bind.address.management:0.0.0.0}"/>
          </interface>
          <interface name="public">
              <inet-address value="${jboss.bind.address:0.0.0.0}"/>
          </interface>
      </interfaces>
      
    5. Press Esc and enter :wq to save and exit the file.

  2. Challenge

    Update Users for the Standalone Server
    1. Open the user group configuration file:

      sudo vim standalone/configuration/mgmt-groups.properties
      
    2. Add the tina user to the dev group:

      tina=dev
      
    3. Press Esc and enter :wq to save and exit the file.

  3. Challenge

    Update the Log Level
    1. Open the log file for when the JBoss server boots:

      sudo vim standalone/configuration/logging.properties
      
    2. Set the log level to DEBUG:

      logger.level=DEBUG
      
    3. Press Esc and enter :wq to save and exit the file.

  4. Challenge

    Confirm that Configuration Changes
    1. Restart JBoss:

      sudo systemctl restart jboss-eap-rhel
      
    2. Check that you can access the management console at PUBLICIP:9990 using the provided lab credentials.

    3. Check the user configuration to ensure that the group persists:

      sudo vim standalone/configuration/mgmt-groups.properties
      
    4. Finally, we want to review the log file:

      sudo vim standalone/configuration/logging.properties
      

      Note: For this configuration, the change does not persist. This is because the log level is set for when the service boots and will be overwritten once the boot process is finished. The log file is the only setting that has this behavior.

About the author

Pluralsight Skills gives leaders confidence they have the skills needed to execute technology strategy. Technology teams can benchmark expertise across roles, speed up release cycles and build reliable, secure products. By leveraging our expert content, skill assessments and one-of-a-kind analytics, keep up with the pace of change, put the right people on the right projects and boost productivity. It's the most effective path to developing tech skills at scale.

Real skill practice before real-world application

Hands-on Labs are real environments created by industry experts to help you learn. These environments help you gain knowledge and experience, practice without compromising your system, test without risk, destroy without fear, and let you learn from your mistakes. Hands-on Labs: practice your skills before delivering in the real world.

Learn by doing

Engage hands-on with the tools and technologies you’re learning. You pick the skill, we provide the credentials and environment.

Follow your guide

All labs have detailed instructions and objectives, guiding you through the learning process and ensuring you understand every step.

Turn time into mastery

On average, you retain 75% more of your learning if you take time to practice. Hands-on labs set you up for success to make those skills stick.

Get started with Pluralsight