Questions tagged [httpd]

httpd is a typical process name of a web server.

httpd (for Hyper Text Transport Protocol Daemon) is a typical name of the web server process.

Apache is the most popular web server that runs using this process name. It is also the name given to the new default server for OpenBSD 5.7 and on.

1448 questions
4
votes
2 answers

How to change http to https when tomcat redirects happen

I'm using elastic beanstalk single instance. So there is apache configured and tomcat is behind listening on http port 8080. Apache is configured on using ssl https 443. The problem is that tomcat redirects using http. But I can't set up apache to…
maximus
  • 145
  • 6
4
votes
5 answers

Apache won't start on CentOS 7

I've installed http24u onto a CentOS 7 VM and the httpd service won't startup properly, it'll start for about 30 seconds or so and then crash out with the below message which doesn't mean anything to me, can anyone shed any light on it please or any…
llanato
  • 211
  • 2
  • 4
  • 12
4
votes
1 answer

How to build Apache httpd 2.4.20 on CentOS 7 with http2 support?

I've spent nearly a day trying to make Apache httpd builds with ALPN and http2 support for EL6 and EL7 for my company and society, as I previously did for NGINX (Built statically against OpenSSL 1.0.2h). First, I tried to rebuild src rpms with…
4
votes
0 answers

Optimize Apache for delivering video

I have my local Apache Server dedicated to delivery video (not streaming) so users connected to it locally (LAN) can play video files as if they were local: in a linux client with mplayer: mplayer http://192.168.0.1:1234/movies/mymovie.mkv in a…
Azevedo
  • 141
  • 3
4
votes
0 answers

Apache 2.4 Redundant LDAP Authentication

I'm trying to provide a redundant LDAP authentication to my webserver. ScriptAlias /nagios/cgi-bin "/usr/local/nagios/sbin" AuthLDAPBindDN "search@domain" AuthLDAPBindPassword "pass" AuthLDAPURL…
4
votes
5 answers

Apache mod_rewrite remove question mark (?) and query-string substitution

I registered a RewriteRule with mod_rewrite, but the substituted URL are wrong. The rule are: RewriteRule ^/img/z(0|1)u(.+)\.(gif|jpg|jpeg|png)$ /image-servlet/img/?z=$1&url=$2 [NE,QSA,PT,T=image/$3] When I access the following…
Andre Pastore
  • 163
  • 1
  • 12
4
votes
3 answers

Apache Failure on Centos 7 not starting

hellau everyone, i have a problem, that i cant resolve alone, so i need your help. i have installed on a centos 7 apache when im asking for the status of the service (systemctl status httpd) so i got an error like this one: Starting The Apache…
Mira Mira
  • 141
  • 1
  • 1
  • 3
4
votes
3 answers

Can I detect when a client has disconnected from a CGI?

I have a rather resource intensive CGI that takes quite a long time to start sending data. We've seen quite a few cases where impatient people reload a couple of times, which then triggers additional runs of the CGI to be loaded, or cases where the…
Joe H.
  • 1,917
  • 12
  • 13
4
votes
2 answers

Do I have 2 different Apache installations on my VPS

I'm new to server maintenance, and am running Apache 2.4 on Ubuntu 14.10 on a VPS I just set up yesterday. It seems as if I have two different Apaches installed at different places in the machine due to the following reasons. When I run sudo…
conradg
  • 83
  • 1
  • 5
4
votes
3 answers

Simple User's Guide / Tutorial for Apache httpd?

Is there a simple user guide or tutorial for Apache httpd? I find that the official documentation (http://httpd.apache.org/docs/2.2/) is a little hard to navigate and learn from if you're not up to speed with a lot of the basics.
digiarnie
  • 253
  • 1
  • 2
  • 6
4
votes
2 answers

apache error and access logs are missing, what could be the cause and how can I recreate them?

I've been given a task to understand why 2 CentOS web servers running apache 2.2.3 are experiencing very high loads on specific occasions. The first thing I checked was /var/log/messages but then I realized that rsyslog is turned off for some…
Itai Ganot
  • 10,644
  • 29
  • 93
  • 146
4
votes
2 answers

Difference between httpd and httpd-devel package on CentOS 5

I'm trying to update PHP 5.1 to 5.3 on CentOS 5.10. On the server, httpd-devel is installed but trying to install php53 on CentOS 5, it wants to install httpd. This is a production server so I need to know if it's safe to install httpd when…
superbarney
  • 73
  • 1
  • 7
4
votes
1 answer

Apache fails to start with new ssl certificate

I'm running RHEL 6.4 and my trusted certificate has expired recently, so I decided to renew it. I've obtained a new certificate from StartSSL. After downloading and putting the certificate file on the server, I specified the new certificate in…
heximal
  • 175
  • 1
  • 8
4
votes
1 answer

Apache doesn't start: syntax error....DocumentRoot must be a directory

I read all the previous answer but I couldn't fix my problem.. I'm changing the server where my website is hosted and I'm setting again apache.. Now, after installing php, fail2ban, etc i have that issue: service httpd start Avvio di httpd: Syntax…
Akylle
  • 41
  • 1
  • 1
  • 5
4
votes
2 answers

How to set different mod_mime rules for reverse proxy?

By default, httpd contains the following configuration: # # TypesConfig points to the file containing the list of mappings from # filename extension to MIME-type. # TypesConfig conf/mime.types …
Gili
  • 295
  • 1
  • 4
  • 20