Como instalar silenciosamente o ApacheDS no Windows

0

Eu fiz o download do ApacheDS para Windows e gostaria de instalá-lo em silêncio a um favorito diretório. Os parâmetros /S e D= são aceitos, mas o serviço não será instalado corretamente. Como posso silencioso instalar o ApacheDS no Windows?

    
por 030 08.04.2014 / 18:18

2 respostas

0

A resposta a seguir foi transformada em um pacote Chocolatey, publicado na Galeria Chocolatey e instalável usando cinst apacheds

Eu silenciei o ApacheDS instalado pelo download e extração do zip do ApacheDS e instalei o lib/apacheds-service-<version>.jar como um serviço usando NSSM ( veja pergunta e resposta no StackOverflow sobre o jar de criação como um serviço no Windows ).

    
por 16.04.2014 / 02:27
0

Você pode usar o wrapper.exe fornecido no Apache DS para instalar o serviço

Por exemplo,

C:\Program Files (x86)\ApacheDS\bin>wrapper -i ..\conf\wrapper.conf set.INSTANCE_DIRECTORY=..\instances\default set.INSTANCE=default
wrapper  | ApacheDS - default installed.

O conjunto completo de opções está disponível executando sem parâmetros.

C:\Program Files (x86)\ApacheDS\bin\wrapper.exe
Wrapper (Version 3.2.3) http://wrapper.tanukisoftware.org

Usage:
  wrapper <command> <configuration file> [configuration properties] [...]
  wrapper <configuration file> [configuration properties] [...]
     (<command> implicitly '-c')
  wrapper <command>
     (<configuration file> implicitly 'wrapper.conf')
  wrapper
     (<command> implicitly '-c' and <configuration file> 'wrapper.conf')

where <command> can be one of:
  -c  --console  run as a Console application
  -t  --start   starT an NT service
  -a  --pause   pAuse a started NT service
  -e  --resume  rEsume a paused NT service
  -p  --stop    stoP a running NT service
  -i  --install Install as an NT service
  -r  --remove  Remove as an NT service
  -q  --query   Query the current status of the service
  -qs --querysilent Silently Query the current status of the service
  -v  --version print the wrapper's version information.
  -?  --help    print this help message

<configuration file> is the wrapper.conf to use.  Name must be absolute or relat
ive
  to the location of wrapper

[configuration properties] are configuration name-value pairs which override val
ues
  in wrapper.conf.  For example:
  wrapper.debug=true
    
por 14.11.2014 / 17:46