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
3 answers

What are the package dependencies for httpd? (rhel 5)

Our company uses home brewed repositories and a system to configure them, which is conveniently not working at the moment. This is causing a problem for me since I can't add repositories, and therefore can't install software on this RHEL 5 box. I…
Matthew
  • 2,737
  • 8
  • 35
  • 51
4
votes
1 answer

Apache httpd process using too much memory

I am running a dedicated apache web server on CentOS6 it has: 12GB memory 4 cpus My httpd config is as follows, from /etc/httpd/conf/httpd.conf Timeout 60 KeepAlive Off MaxKeepAliveRequests 100 KeepAliveTimeout 15 The server is using the Prefork…
Rick Scolaro
  • 161
  • 2
  • 6
4
votes
2 answers

How to prevent cpanel from doing graceful restart every time an add on domain is added

I want to add 300-400 add on domains and wild card subdomains. Every time I add an add on domain, cpanel does a graceful restart. The result is the whole server is down for 5-10minutes. If I did: tail -f /usr/local/apache/logs/error_log [Sun…
Septiadi Agus
  • 291
  • 1
  • 4
  • 10
4
votes
1 answer

centos 6 debuginfo repository does not have httpd debug version available

I am trying to get the debug version of httpd so I can use it in conjunction with gdb. I am having a hard time getting them, and they don't seem to be in the standard epel-debuginfo repository. What should I do? > [root@buildbox-rhel6 ~]#…
Zippy Zeppoli
  • 200
  • 1
  • 8
4
votes
1 answer

Apache HTTPd : How is possible to display "Too many connections"

I want to limit the number of client allowed on my apache httpd server (mpm_prefork). When the number of client is reached, I want to display a custom error message such as "Error 503 : Too many connections". The customisation is possible using :…
Cyrus31
  • 51
  • 4
4
votes
1 answer

Apache httpd processes and PHP out of memory

I have a VPS running apache-php-mysql on centos and a single drupal website installed. The VPS has 256MB of RAM (could be the root cause of all my problems... maybe I just need more). Whenever I try to open my website from multiple browser tabs…
Ofri
  • 141
  • 1
  • 3
4
votes
1 answer

AD GIT SELinux RHEL 6 : Can not get SELinux to allow connetion to git

I have a problem with SELinux! I have installed git on Red Hat Enterprise 6 with AD group control and SSL Cert . Everything works fine if I do setenforce 0 ( set SELinux in detection only mode ) or if I do semanage permissive -a httpd_t (Set…
4
votes
3 answers

Apache httpd Java Application?

I have an Apache httpd server (not Tomcat) installation with various applications running on it. One application that I just "installed" is a Java application. The application was installed into the 'htdocs' folder, and contains a file ->…
hacket
  • 141
  • 1
  • 3
4
votes
1 answer

Apache LDAP auth: denied all time

There is my config (httpd 2.4): LDAPReferrals Off AuthLDAPURL "ldaps://ldap.zzz.com:636/o=zzz.com?uid?sub?(objectClass=*)" AuthLDAPBindDN "uid=zzz,ou=Applications,o=zzz.com" AuthLDAPBindPassword…
Dee
  • 81
  • 6
4
votes
4 answers

Who is 1014? I have no user on my system named 1014, so why is this httpd process run as 1014?

[root@home ~]# ps au | grep httpd 1014 9701 0.0 0.2 281620 3124 pts/24 Sl+ 18:41 0:00 ./bin/httpd -X root 9742 0.0 0.0 3084 720 pts/22 R+ 18:45 0:00 grep httpd By the way, what do Sl+ and R+ mean? Is 1014 a hacker? Why…
giantforest
  • 239
  • 1
  • 4
  • 15
4
votes
2 answers

Apache: how to set custom 401 error page and save original behaviour

I have Kerberos-based authentication with Apache/2.2.3 (Linux/SUSE). When user is trying to open some url, browser ask him about domain login and password like in HTTP Basic Auth. If user cancel such request 3 times Apache returns 401 Authorization…
petRUShka
  • 293
  • 2
  • 5
  • 16
4
votes
3 answers

PHP-FPM and APC for shared hosting?

We are looking into finding a way to get APC to only create one cache per account / site. This can be done with Fastcgi (last update 2006…) but with Fastcgid APC will have to create multiple caches for multiple processes run by the same account. To…
Tiffany Walker
  • 6,681
  • 14
  • 56
  • 82
4
votes
1 answer

how to rewrite '%25' in url

My website software replaces space characters with '+' characters in the URL, A proper link would look like 'http://www.schirmacher.de/display/INFO/How+to+reattach+a+disk+to+XenServer' for example. Some websites link to that article but somehow…
nn4l
  • 1,336
  • 5
  • 23
  • 40
4
votes
2 answers

apache consuming a lot of memory

I use Amazon EC2 large instance (Memory 7.5 GB) for my http server. Recently I noticed my ssh commands running slow so I checked the memory usage. free -t -m total used free shared buffers cached Mem: …
Maca
  • 1,043
  • 2
  • 19
  • 30
4
votes
1 answer

Apache: require basic auth, except for specific POST requests

(RHEL 6.2, Apache 2.2.1) I'm trying to get a LAMP site running behind basic auth to prevent general access (it's a testing environment for a site still in production) and I've hit a problem where the multiple file upload feature fails because it is…
DrStalker
  • 6,946
  • 24
  • 79
  • 107