Using the Expansion Operator with WildFly CLI

WildFly CLI (Command Line Interface) allows you to manage and configure WildFly application server instances. One of its powerful features is expansion expressions, which enable you to work with multiple resources efficiently. In this tutorial we will learn how to perform multiple operation commands using the expansion operator (*) when possible and by iterating over WildFly resources.

Read more

Categories CLI

How to get WildFly Server list using the CLI

In this short article, we will learn how to fetch the list of Servers in JBoss EAP or WildFly Domain using the Command Line Interface. This will let you automate your tasks by looping over your Server List. Getting the Server List from the CLI Firstly, connect to JBoss EAP or WildFly CLI: Then, execute … Read more

Categories CLI

How to check JVM arguments from the CLI in WildFly

There are several options to collect JVM arguments of WildFly application server from the Command Line. Firstly, if you want to check JVM arguments of a Java process, a simple way to do that is using the ‘jps‘ tool which is available in the ‘bin‘ folder of the JDK. Example: Also, you can use the … Read more

Categories CLI

How to Add an User in WildFly

If you are an administrator of a Wildfly server, you may need to add new users to the server for authentication and authorization purposes. This short tutorial will teach you how to Add a management user with WildFly Application Server.

Read more

Categories CLI

How to run a WildFly CLI commands from the shell

WildFly ships with a powerful Command Line Interface which can be run interactively or not. In this tutorial we will learn how to run CLI commands in non-interactive mode. Running CLI commands in a File The simplest option to run CLI commands in non-interactive mode is to include the commands in a text file and … Read more

Categories CLI