Running Webserver

how we can check whether apache webserver is running or not in linux?
how we can check whether apache webserver is running or not in linux

This can be done by either using a browser on the server and typing http://localhost or from another computer and use the server's name or IP. If the apache default pages are installed, they should appear.

check if webserver is running?
i know its a bit noobish but is there anyway to determine weather a webserver is running or not using a batch file. perhaps using the resaults of a ping. please help :)

try: @echo off ping google.com -n 1 > nul if %errorlevel% == 1 goto error echo Everything looks fine. goto end :error echo Got no response. :end

how to check php, apache webserver, mysql are running properly?
different ways how to check php, apache webserver, mysql are running properly

enter the below url in your browser and hit enter http://127.0.0.1/ enter http://localhost/ enter In the system tray you will see MySQL/Apache icon which shows your apache is running properly or if running at all

How to connect my static DSL IP address to my webserver pc running IIS? any help is highly appreciated?


If you have a router, you'll have to portmap port 80 to your internal IP address. Otherwise, just type http:// into your browser.

How do I execute exe files on my windows webserver?
I have placed 3 exe files which i need to run in the cgi-bin folder of my windows webserver. The permissions of the folder have been set to allow full execution. I've searched the internet for help and apparently it can be done by calling upon a cgi script. If so what code do I put in the script and how do I compile it?

If the exes are intended to write to stdout, you might as well run them directly. Just rename from exe to cgi. If you want to call them at your will, it doesn't matter where you put the exe. It just needs to be reachable on the computer. CGI is not a programming language itself. It just specifies the behavior of languages. So any language will do. The exact code you write depends on exactly how you want to call them (the logic) and the language at hand. Given the lack of information, this is the most I can give you.

I cannot ping to my webserver on the local area network?
hello I cannot ping to my webserver, listening on port 80. the webserver is the part of the LAN (intranet) I ping the webserver's inner IP (192.168.0.1) but I cannot ping its outer IP (64.4.X.X) what can be the problem? the server is running without problems beause my friends can connect the webserver from outside.

Is your ROUTER set to respond to pings? Since most routers have that set to NOT respond as a default you probably wont get a PING response even though port 80 will work! Check the router, when you ping the public IP you are actually pinging the router not the server!

How can I foward a port that is on a different subnet in my home network.?
Hello Im running a webserver on my network with the ip of 192.168.1.x. My workstations reside on 192.168.16.x. How can I port foward from a machine on 192.168.16.x? When I attempted to do this on my router it said I could only enter a lan address. My current net layout is router -> server with two nics one of them with the address of 192.168.1.x and the other with the address of 192.168.16.x -> workstations 192.168.16. Thank you the router im using is a netgear its a home model and not an enterprise one. Im port fowarding from a workstation because an application im using requires it. Thanks for the advice. I was able to achieve succes by configure routing on my webserver. I added the port on the webserver and then port fowarded to my netgear. Thanks lowlevel. You will get best answer as soons as i can do it.

I'm confused, why would you want to forward a port from a workstation? I could understand forwarding a port to your webserver...