Written by

Senior Cloud Architect at InterSystems
MOD
Question Eduard Lebedyuk · Nov 8, 2017

Start only external apache

Is there an option to configure Caché to start external apache instead of internal one on startup?

Comments

John Murray · Nov 8, 2017

To prevent the "internal" Apache instance from starting up when Caché starts, go to System Administration, Cponfiguration, Additional Settings, Startup and change the WebServer setting to false.

I'm not aware of any built-in ability for a Caché startup to start a different Apache instance.

0
Eduard Lebedyuk  Nov 8, 2017 to Vitaliy Serdtsev

Thank you!

Would it work on linux, provided correct paths?

0
Vitaliy Serdtsev · Nov 8, 2017

Yes, е.g. for Windows:

    for private Apache:
  1. <cache-install-dir>\httpd\bin\httpd -k stop -n <instname>httpd
  2. <cache-install-dir>\httpd\bin\httpd.exe -k uninstall -n <instname>httpd
  3. for external Apache:
  4. C:\Program Files\Apache\bin\httpd.exe -k install -n <instname>httpd
  5. restart Caché
0
Vitaliy Serdtsev  Nov 8, 2017 to Eduard Lebedyuk

No, on specified link provides examples for Unix.

0