Robin
Robin

Reputation: 3850

How to install/manage Apache on Windows Server without GUI

I am trying to figure out what's the best way to install/manage an Apache Webserver on Windows. I can't access the GUI, the only thing I can access is CYGWIN over SSH.

So the Question is how to do this?

Edit: I know about the Apache Docs on Windows, but they are really poor if you ask me.

Thank you in advance for your answers.

Upvotes: 0

Views: 576

Answers (1)

Ben Hildebrand
Ben Hildebrand

Reputation: 104

You could:

  1. Use a precompiled CygWin package, install it this way:

    wget rawgit.com/transcode-open/apt-cyg/master/apt-cyg
    install apt-cyg /bin
    apt-cyg install apache
    
  2. Compile and install apache on Cygwin yourself, as shown here:

http://httpd.apache.org/docs/2.4/platform/win_compiling.html

Upvotes: 1

Related Questions