Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Si bien esto no es necesario ya que este paso es ejecutado por el instalador, se han detectado casos en los que es necesaria su ejecución manual, por ejemplo en algunas instalaciones sobre W2003

Primera solución

Ir a la carpeta :
<o3>\UninstallerData\resource

ejecuta el comando invoker de la siguiente forma:

invoker install service_name service_label executable [start_type [interactive priority]]

parámetros que le vamos a pasar

  1. service_name the name used internally by the SCM
  2. service_label the display name that appears in the Services Control Panel. For multiple words, put them in double quotes.
  3. executable the full path to the EXE
  4. start_type (manual, automatic, or disabled) the service startup type (defaults to manual)
  5. interactive (true or false) can the service interact with the desktop? (defaults to false)
  6. priority (low, normal or high) set the priority of the service process (defaults to normal)

Para una instalación típica est quedaría de la siguiente forma

Code Block

C:\Ideasoft\O3\UninstallerData\resource>invoker.exe install O3JBoss "O3JBoss Application Server" "C:\IdeaSoft\O3\bin\JBoss.exe -zglaxservice O3JBoss" auto false normal

Segunda solución

Para ello se debe bajar el zip JBossService.zip incluido en esta página que contiene el ejecutable que permite instalar y ejecutar el servicio.
Luego seguir los siguientes pasos:

...