20 Haziran 2022 Pazartesi

jboss-cli komutu

shutdown
Aynı şey Yönetim Ekranından (Management Console) da yapılabilir.

Örnek
Şöyle yaparız
jboss-cli.sh -- connect
[standalone@localhost:9990 /] shutdown
Örnek
Şöyle yaparız
jboss-cli.sh -- connect
[standalone@localhost:9990 /] shutdown --timeout=10
Örnek - restart
Şöyle yaparız
jboss-cli.sh -- connect
[standalone@localhost:9990 /] shutdown --restart=true 
HAL Management Console'dan şöyle yaparız
When running in Standalone mode, select the Runtime upper Tab and, from your Server name, click on the Combo Menu’s arrow. You should be able to Reload, Restart or Suspend the Server from there:
Şeklen şöyle



Hiç yorum yok:

Yorum Gönder

Bean Validation @GroupSequence Anotasyonu

Örnek Elimizde şöyle bir kod olsun public class SampleRequest {   @NotNull   LocalDate startDate;   @NotNull   LocalDate endDate;   @AssertT...