0% found this document useful (0 votes)
16 views2 pages

Wildfly

This document outlines the steps to set up a WildFly server on a Linux system, including updating the OS, creating a user and group for WildFly, downloading and installing WildFly, and configuring it as a service. It also includes commands for managing firewall settings and configuring the management console. The instructions are intended for a root user and involve several system commands for installation and configuration.

Uploaded by

enamul whab
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views2 pages

Wildfly

This document outlines the steps to set up a WildFly server on a Linux system, including updating the OS, creating a user and group for WildFly, downloading and installing WildFly, and configuring it as a service. It also includes commands for managing firewall settings and configuring the management console. The instructions are intended for a root user and involve several system commands for installation and configuration.

Uploaded by

enamul whab
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

-- Environment Specification

Hostname – wildfly-01.centlinux.com
IP Address - 192.168.116.243 /24

-- Update Linux Operating System from root user

dnf makecache
dnf update -y
dnf install -y wget
reboot

-- verifynLinux Kernel and operating system.


uname -r
cat /etc/redhat-release

--
systemctl daemon-reload
systemctl enable --now wildfly.service

---- Create Linux User and Group:

groupadd -r wildfly
useradd -r -g wildfly -d /opt/wildfly -s /sbin/nologin wildfly

--- download and install wildfly


-- after doenload

tar xf wildfly-26.0.0.Final.tar.gz -C /opt/


ln -s /opt/wildfly-26.0.0.Final/ /opt/wildfly
chown -RH wildfly: /opt/wildfly

mkdir -p /etc/wildfly

--- configure as a service

cp /opt/wildfly/docs/contrib/scripts/systemd/wildfly.conf /etc/wildfly/
cp /opt/wildfly/docs/contrib/scripts/systemd/wildfly.service /etc/systemd/system/
cp /opt/wildfly/docs/contrib/scripts/systemd/launch.sh /opt/wildfly/bin/

chmod +x /opt/wildfly/bin/*.sh

systemctl daemon-reload
systemctl enable --now wildfly.service

--- PORT allow

firewall-cmd --permanent --add-port={8080,9990}/tcp


firewall-cmd --reload

--- Management Console configure


/opt/wildfly/bin/add-user.sh

[Ans will be as per question]

vim /opt/wildfly/standalone/configuration/standalone.xml

You might also like