From 791cc9f52462d5592e43c8ca6820a73364c2750b Mon Sep 17 00:00:00 2001 From: Gaetano Savo Date: Tue, 18 Mar 2025 09:13:55 +0100 Subject: [PATCH] Gestione status jboss --- .vscode/settings.json | 3 +++ build-and-deploy.ps1 | 2 +- start-jboss.ps1 | 31 ++++++++++++++++++++++--------- stop-jboss.ps1 | 6 +++--- 4 files changed, 29 insertions(+), 13 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..c5f3f6b --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "java.configuration.updateBuildConfiguration": "interactive" +} \ No newline at end of file diff --git a/build-and-deploy.ps1 b/build-and-deploy.ps1 index 1591336..8335ecd 100644 --- a/build-and-deploy.ps1 +++ b/build-and-deploy.ps1 @@ -12,7 +12,7 @@ $originalDirectory = Get-Location # Function to check if JBoss is running function Is-JBossRunning { - $jbossProcess = Get-Process -Name "java" -ErrorAction SilentlyContinue | + $jbossProcess = Get-CimInstance Win32_Process -Filter "Name = 'java.exe'" | Where-Object { $_.CommandLine -like "*jboss.home.dir=$JBOSS_HOME*" } return $null -ne $jbossProcess } diff --git a/start-jboss.ps1 b/start-jboss.ps1 index ea257d2..a121fcf 100644 --- a/start-jboss.ps1 +++ b/start-jboss.ps1 @@ -6,7 +6,7 @@ $JAVA_HOME = "C:\Dev2012\BUILDERS\java\jdk1.8.0_291" # Function to check if JBoss is already running function Is-JBossRunning { - $jbossProcess = Get-Process -Name "java" -ErrorAction SilentlyContinue | + $jbossProcess = Get-CimInstance Win32_Process -Filter "Name = 'java.exe'" | Where-Object { $_.CommandLine -like "*jboss.home.dir=$JBOSS_HOME*" } return $null -ne $jbossProcess } @@ -24,7 +24,7 @@ if (-not (Test-Path $JBOSS_HOME)) { } # Check if configuration file exists -$configFile = "$JBOSS_HOME\standalone\configuration\standalone-ADVC-full.xml" +$configFile = "$JBOSS_HOME\standalone\configuration\standalone-ADVCsvil-full.xml" if (-not (Test-Path $configFile)) { Write-Host "Error: Configuration file not found at $configFile" -ForegroundColor Red exit 1 @@ -35,7 +35,8 @@ $env:JAVA_HOME = $JAVA_HOME $env:JBOSS_HOME = $JBOSS_HOME $env:PATH = "$JAVA_HOME\bin;$env:PATH" $env:NOPAUSE = "true" -$env:LAUNCH_JBOSS_IN_BACKGROUND = "true" +# Remove this as it might affect logging +# $env:LAUNCH_JBOSS_IN_BACKGROUND = "true" # Check if JBoss is already running if (Is-JBossRunning) { @@ -46,7 +47,7 @@ if (Is-JBossRunning) { Write-Host "Starting JBoss EAP 7.4..." -ForegroundColor Green Write-Host "Using Java from: $JAVA_HOME" -ForegroundColor Yellow Write-Host "JBoss Home: $JBOSS_HOME" -ForegroundColor Yellow -Write-Host "Using configuration: standalone-ADVC-full.xml" -ForegroundColor Yellow +Write-Host "Using configuration: standalone-ADVCsvil-full.xml" -ForegroundColor Yellow # Start JBoss in standalone mode $startScript = "$JBOSS_HOME\bin\standalone.bat" @@ -70,10 +71,22 @@ Write-Host "JVM Options: $env:JAVA_OPTS" -ForegroundColor Yellow Write-Host "Remote debugging enabled on port 8787" -ForegroundColor Cyan # Create the command line arguments -$cmdArgs = "-c standalone-ADVC-full.xml --debug -b 0.0.0.0 -bmanagement 0.0.0.0" +$cmdArgs = "-c standalone-ADVCsvil-full.xml --debug -b 0.0.0.0 -bmanagement 0.0.0.0" -# Start JBoss -Start-Process -FilePath "cmd.exe" -ArgumentList "/c", "set NOPAUSE=true && `"$startScript`" $cmdArgs" -NoNewWindow +# Start JBoss - Modified to use Start-Process with RedirectStandardOutput +$logFile = "$JBOSS_HOME\standalone\log\server.log" +$processStartInfo = @{ + FilePath = $startScript + ArgumentList = $cmdArgs + RedirectStandardOutput = $logFile + RedirectStandardError = "$JBOSS_HOME\standalone\log\server_error.log" + WorkingDirectory = "$JBOSS_HOME\bin" + NoNewWindow = $true + PassThru = $true +} + +Write-Host "Starting JBoss and redirecting output to $logFile" -ForegroundColor Yellow +$jbossProcess = Start-Process @processStartInfo # Wait a few seconds to check if the process started successfully Start-Sleep -Seconds 10 @@ -82,7 +95,7 @@ if (Is-JBossRunning) { Write-Host "JBoss started successfully!" -ForegroundColor Green Write-Host "Admin console will be available at: http://localhost:9990" -ForegroundColor Yellow Write-Host "Remote debugging is enabled on port 8787" -ForegroundColor Cyan - Write-Host "Check JBoss logs at: $JBOSS_HOME\standalone\log\server.log" -ForegroundColor Yellow + Write-Host "Check JBoss logs at: $logFile" -ForegroundColor Yellow } else { - Write-Host "Error: JBoss failed to start. Check the logs at: $JBOSS_HOME\standalone\log\server.log" -ForegroundColor Red + Write-Host "Error: JBoss failed to start. Check the logs at: $logFile" -ForegroundColor Red } diff --git a/stop-jboss.ps1 b/stop-jboss.ps1 index df6647c..0b3c4eb 100644 --- a/stop-jboss.ps1 +++ b/stop-jboss.ps1 @@ -6,12 +6,12 @@ $JBOSS_HOME = "C:\Dev2012\BUILDERS\jboss-eap-7.4" Write-Host "Stopping JBoss EAP 7.4..." -ForegroundColor Yellow # Find and stop JBoss process -$jbossProcess = Get-Process -Name "java" -ErrorAction SilentlyContinue | +$jbossProcess = Get-CimInstance Win32_Process -Filter "Name = 'java.exe'" | Where-Object { $_.CommandLine -like "*jboss.home.dir=$JBOSS_HOME*" } if ($jbossProcess) { - Write-Host "Found JBoss process (PID: $($jbossProcess.Id))" -ForegroundColor Yellow - Stop-Process -Id $jbossProcess.Id -Force + Write-Host "Found JBoss process (PID: $($jbossProcess.ProcessId))" -ForegroundColor Yellow + Stop-Process -Id $jbossProcess.ProcessId -Force Write-Host "JBoss process stopped" -ForegroundColor Green } else { Write-Host "No JBoss process found running" -ForegroundColor Yellow