Java

Start, Stop e Restart Wildfly

Se sua memória é como a minha, daquelas que gostam de pregar peças em você, então este é o seu tutorial! Abaixo você verá os três comandos mais importantes para iniciar (start), parar (stop) e reiniciar (restart) o Wildfly e demais releases do JBoss. Além disso, veremos um comando extra para iniciá-lo em modo domain.

Todos os comandos a seguir devem ser executados no diretório <$JBOSS_HOME>/bin:

Start

Linux: ./standalone.sh &

Windows: standalone.bat

Stop

Linux: ./jboss-cli.sh --connect command=:shutdown

Windows: jboss-cli.bat --connect command=:shutdown

Restart

Linux: ./jboss-cli.sh --connect command=:reload

Windows: jboss-cli.bat --connect command=:reload

Start in domain mode

Linux: ./domain.sh &

Windows: domain.bat

Espero que ajude. Até mais!

bgasparotto

Recent Posts

Python function decorator

This guide will show you how to create a Python function decorator with a few…

2 years ago

Got permission denied while trying to connect to the Docker daemon socket

This guide will show you how to fix the error Got permission denied while trying…

2 years ago

Python virtual environment on Intellij IDEA

This guide will show you how to create a Python virtual environment on Intellij IDEA…

2 years ago

Find and kill processes on Linux and Mac by port number

This tutorial will quickly show you how to to find and kill processes on Linux,…

2 years ago

Python: Relocation R_X86_64_PC32 against symbol can not be used when making a shared object Error

This guide shows a possible solution for Python error Relocation R_X86_64_PC32 against symbol can not…

2 years ago

Kubernetes useful commands

I condensed below a cheat sheet of Kubernetes useful commands. I will keep updating this…

2 years ago