Checking for Apache and serving a page


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Checking for Apache and serving a page
# 1  
Old 07-22-2011
Checking for Apache and serving a page

hi
i was trying to run the HTML script and was unable to run it as the apache server was not loaded on my linux server.....how do i check whether A[pache has been installed in my server or not.....????

Last edited by pludi; 07-22-2011 at 05:55 AM..
# 2  
Old 07-22-2011
Code:
 
ps -ef | grep apache
ps -ef | grep http
ps -ef | grep webapp

better to check with your system admin
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Linux

Apache wildcard ssl on subdomain serves same page for non ssl virtualhosts

Issue observed: I have configured ng.my-site.com using widlcard ssl cert. When I hit https://www.my-site.com it loads ng.my-site.com website! please advise if I missed any concept / configs... Thank you! httpd.conf <VirtualHost *:80> ServerName www.my-site.com ServerAdmin... (0 Replies)
Discussion started by: ashokvpp
0 Replies

2. Red Hat

How can i do defult page apache change it?

Hi In the cent os Into the frist page Get link or redirect (2 Replies)
Discussion started by: mnnn
2 Replies

3. Hardware

Use of SSD for serving webpages

I have seen research articles and forum postings that demonstrate that SSDs are poor at reading large files: the larger the file, the slower the SSD compared to traditional hard disk drives. The difference with hard disk drives becomes apparent at medium size files, say 20KB. Does this mean that... (2 Replies)
Discussion started by: figaro
2 Replies

4. UNIX for Advanced & Expert Users

Checking response from a web page

wget --spider --user=xxxx --password=xxxx "http://xxx.xxxx.com" > /dev/null 2>&1; I am using the above command in if loop to check the response of the page without downloading the page. I just want to check whether the page is up and running. But when i execute the command i am getting HTTP... (2 Replies)
Discussion started by: ahamed
2 Replies

5. Shell Programming and Scripting

Checking response of the web page?

Hi, I need to check the response of the web page without downloading any content. I used the below command. _website=http://xxx.xxx.com wget --spider --user=username --password=password $_website > /home/username/temp.txt 2>&1; I getting the below error. The web page require... (3 Replies)
Discussion started by: ahamed
3 Replies

6. Cybersecurity

APACHE: Tie in Web Page login with server login

Hello, I have created a web page on a server using apache and added .htaccess and .htpasswd in the folder for authentification. I was wondering if there was anyway to tie-in the login for this page with the login used to logon to the server. i.e. the same login info. is used for both, when... (1 Reply)
Discussion started by: WhotheWhat
1 Replies

7. Web Development

APACHE: Tie in Web Page login with server login

Hello, I have created a web page on a server using apache and added .htaccess and .htpasswd in the folder for authentification. I was wondering if there was anyway to tie-in the login for this page with the login used to logon to the server. i.e. the same login info. is used for both,... (2 Replies)
Discussion started by: WhotheWhat
2 Replies

8. UNIX for Dummies Questions & Answers

Fedora9 5-NIC's Serving I-net to WinXp

Im trying to use a CISCO WiFi-BRIDGE and Fedora9 to connect to an I-net connection down the road. Then use the Fedora box to route the connection to 4-Xp workstations using the remaining 4 NIC's in the box. My paln is to eventually connect my home network/I-net to my work network 1.5miles down... (0 Replies)
Discussion started by: Solomen
0 Replies

9. UNIX for Dummies Questions & Answers

Application Serving

Hi, I'm fairly new to UNIX and am looking at the potential of using UNIX servers as Application Servers (similar to what is done by Citrix Metaframe and Terminal Services in windows) does anyone know whether this is possible or am I firing in the dark? Thanks. (1 Reply)
Discussion started by: tombobs
1 Replies
Login or Register to Ask a Question