Apache :: Identity Modules Compiled For RHEL

Apr 26, 2014

I have 2.4.x version installed on RHEL and I need to install same version on Solaris 10. How can I find out what packages/modules were compiled for RHEL so that I can download same for Solaris and compile them.

View 2 Replies


ADVERTISEMENT

Apache :: Can't Verify Server Identity

Jun 17, 2015

We are facing an issue i.e "Can't verify server identity",When we hit the platform 'teampark.sogeti.com' from android mobile application.Whenever we hit teampark.sogeti.com from Mobile Application ( IBM connections android App), our initial request will hit our Reverse Proxy and Validates the user certificate and forward it to the next level.We are using Apache 2.2.9 as our Reverse Proxy.

View 10 Replies View Related

I Have Just Compiled Apache Using Phpsuexec

Feb 23, 2007

is there anything I should do now?

everthing generally seems fines but I have a strange thing going on with an images folder that a php script puts users images in (so my users can upload files). this folder was previously 777 and now phpexec has been installed the images are not showing up. I get a "You don't have permission to access" message on the image files. I tried chmod'ing the images folder to 766 and 755 and the same thing happens. This has nothing to do with the php script as I can't even access the image files by typing in the URL in a browser.

View 7 Replies View Related

Apache Compiled As MPM Prefork Is That Recommended

Jul 31, 2009

I am really not familiar with MPM prefork. Should apache use MPM prefork or is there a better alternative? If yes, what would that be and how to use that alternative?

View 2 Replies View Related

Apache Modules

Oct 10, 2007

On a Linux box, is there a way to list all of the modules that are running in Apache but NOT compiled into Apache?

I now that "httpd -l" = lists all of the Apache compiled modules.

View 5 Replies View Related

Removing Apache Modules

Apr 17, 2009

I have a RHEL 5 server, that host one site with a common PHP 5.x -MySQL 5.x app, it also uses .htaccess to rewrite rules. I'm trying to optimize apache to the max, and though about removing some unneccesary modules. The actual modules loaded are:

Code:
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule auth_digest_module modules/mod_auth_digest.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authn_alias_module modules/mod_authn_alias.so
LoadModule authn_anon_module modules/mod_authn_anon.so
LoadModule authn_dbm_module modules/mod_authn_dbm.so
LoadModule authn_default_module modules/mod_authn_default.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule authz_owner_module modules/mod_authz_owner.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_dbm_module modules/mod_authz_dbm.so
LoadModule authz_default_module modules/mod_authz_default.so
LoadModule ldap_module modules/mod_ldap.so
LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
LoadModule include_module modules/mod_include.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule logio_module modules/mod_logio.so
LoadModule env_module modules/mod_env.so
LoadModule ext_filter_module modules/mod_ext_filter.so
LoadModule mime_magic_module modules/mod_mime_magic.so
LoadModule expires_module modules/mod_expires.so
LoadModule deflate_module modules/mod_deflate.so
LoadModule headers_module modules/mod_headers.so
LoadModule usertrack_module modules/mod_usertrack.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule mime_module modules/mod_mime.so
LoadModule dav_module modules/mod_dav.so
LoadModule status_module modules/mod_status.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule info_module modules/mod_info.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule dir_module modules/mod_dir.so
LoadModule actions_module modules/mod_actions.so
LoadModule speling_module modules/mod_speling.so
LoadModule userdir_module modules/mod_userdir.so
LoadModule alias_module modules/mod_alias.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule cache_module modules/mod_cache.so
LoadModule suexec_module modules/mod_suexec.so
LoadModule disk_cache_module modules/mod_disk_cache.so
LoadModule file_cache_module modules/mod_file_cache.so
LoadModule mem_cache_module modules/mod_mem_cache.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule version_module modules/mod_version.so
LoadModule unique_id_module modules/mod_unique_id.so
LoadModule evasive20_module /usr/lib/httpd/modules/mod_evasive20.so
LoadModule security_module /usr/lib/httpd/modules/mod_security.so
Besides of mod_evasive, mod_security that are security modules, what modules can I disable without causing any problems to a common PHP-MySQL website?

This is a plain RH box, virtual host is configured at httpd.conf in this way:

Code:
<VirtualHost SERVERIP>
ServerName mysite.com
ServerAlias www.mysite.com
DocumentRoot /var/www/sites/mysite.com
<Directory "/var/www/sites/mysite.com">
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
RewriteEngine on
RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule .* - [F]
</VirtualHost>

View 4 Replies View Related

Apache :: Several Modules Missing Or Different Name

Jun 2, 2014

I'm trying to install the Win32 dist from apachelounge 2.4.9 and I'm having difficulties getting the modules loaded. Several modules have different names or aren't there at all. mod_imap.so

View 1 Replies View Related

How To Add Apache Load Modules

Feb 11, 2013

I have complied Apache from the source with so enabled and compiled PHP with Apache apxs. What if I do, if I want to add/Load another modules as a dynamic modules without recompiling apache. Suppose if I want to enable rewrite or any other module.I am pasting the command which I used to compile apahce.

Apache
==
./configure --prefix=/usr/local/apache --enable-module=so
make
make install

PHP
==
./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs
make
make install

Both are running fine on my server,how to enable mod rewrite module as shared module fro example ?? 

View 1 Replies View Related

Performance » Deciding On Apache Modules To Use

Jul 30, 2008

what modules I should use in my httpd.conf file. Here's the modules that I currently have enabled / disabled. The site is running specifically off PHP. There is no need for CGI, ASP, or any other languages (to my knowledge). The negotiation module is enabled,. It does not need to be to my knowledge.

However, when I disabled it Apache would not restart. Could someone give some details as to which directives need to be disabled for negotiation to be disabled. Also, does anyone know if negotiation is essential. It is not to my knowledge. Suggestions and comments are much appreciated. Thank you in advance for your hard work and experience being as it's not costing me anything. I will do my best to return the favor.

LoadModule access_module modules/mod_access.so
LoadModule auth_module modules/mod_auth.so
LoadModule auth_anon_module modules/mod_auth_anon.so
LoadModule auth_dbm_module modules/mod_auth_dbm.so
LoadModule auth_digest_module modules/mod_auth_digest.so
LoadModule ldap_module modules/mod_ldap.so
LoadModule auth_ldap_module modules/mod_auth_ldap.so
# LoadModule include_module modules/mod_include.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule env_module modules/mod_env.so
LoadModule mime_magic_module modules/mod_mime_magic.so
LoadModule cern_meta_module modules/mod_cern_meta.so
LoadModule expires_module modules/mod_expires.so
LoadModule deflate_module modules/mod_deflate.so
LoadModule headers_module modules/mod_headers.so
LoadModule usertrack_module modules/mod_usertrack.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule mime_module modules/mod_mime.so
LoadModule dav_module modules/mod_dav.so
LoadModule status_module modules/mod_status.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule asis_module modules/mod_asis.so
LoadModule info_module modules/mod_info.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule dir_module modules/mod_dir.so
LoadModule imap_module modules/mod_imap.so
LoadModule actions_module modules/mod_actions.so
LoadModule speling_module modules/mod_speling.so
# LoadModule userdir_module modules/mod_userdir.so
LoadModule alias_module modules/mod_alias.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule cache_module modules/mod_cache.so
LoadModule suexec_module modules/mod_suexec.so
LoadModule disk_cache_module modules/mod_disk_cache.so
LoadModule file_cache_module modules/mod_file_cache.so
LoadModule mem_cache_module modules/mod_mem_cache.so
# LoadModule cgi_module modules/mod_cgi.so
LoadModule logio_module /usr/lib/httpd/modules/mod_logio.so

View 0 Replies View Related

SELinux Is Preventing Apache/PHP From Loading Modules

Jul 28, 2008

I can't get SELinux to let httpd load the IonCube module for PHP. I've given the CentOS 5 forum a try (here: http://www.centos.org/modules/newbb/...15403&forum=42), talked with WHMCS's support (the app I'm using that needs it), and even opened a ticket with IonCube. Unfortunately nobody seems to know how to tell SELinux to let httpd "exec" modules.

I'm running CentOS 5, and the error I'm getting in /var/log/messages is:

Jul 23 10:15:30 host kernel: audit(1216833330.905:1249): avc: denied { execheap } for pid=22055 comm="httpd" scontext=root:system_r:httpd_t:s0 tcontext=root:system_r:httpd_t:s0 tclass=process

I can disable SELinux and it works fine (setenforce 0), but that's not the solution I'm looking for. Can someone please tell me how to do this the *right* way?

View 11 Replies View Related

Apache :: Reverse Proxy Modules - Error Reading Status Line From Remote Server

Oct 17, 2013

We have been using Apache 2.2.x with reverse proxy modules for our clients to access their OWA servers for over a year. I want to get us to Apache 2.4.x so I setup a test box with latest 2.4 on it. I fixed the config file issues since 2.4 has changes in it. OWA proxy is working on my test server with Apache 2.4. But with 2.4 I do have an issue I cannot figure out. Note that this does NOT occur with Apache 2.2. I get the following errors when using ActiveSync through reverse proxy:

[Thu Oct 17 12:19:11.670665 2013] [proxy_http:error] [pid 748:tid 8440] (OS 10060)A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. : [client x.x.x.x:20311] AH01102: error reading status line from remote server mail.nameredacted.net:443
[Thu Oct 17 12:19:11.670665 2013] [proxy:error] [pid 748:tid 8440] [client x.x.x.x:20311] AH00898: Error reading from remote server returned by /Microsoft-Server-ActiveSync

So somehow with Apache 2.4 there is some sort of timeout that was not there with 2.2.

View 2 Replies View Related

Apache :: Compiled Version Does Not Match Loaded Version

Mar 26, 2014

I am running Apache on a Windows server and it is up and running.I downloaded and installed:

Apache 2.4.9 Win32 [Apache VC11 Binary] httpd-2.4.9-win32-VC11.zip

And included ModSecurity from download: modules-2.4-win32-VC11.zip..

The version of ModSecurity is mod_security-2.7.7 . It is up and running, but I get a warning:

ModSecurity: Loaded PCRE do not match with compiled!

Here's the difference in the PCRE from the logs:

PCRE compiled version="8.33 "; loaded version="8.34 2013-12-15".

The compiled version does not match the loaded version. Is this something I should be concerned about and try to find compiled versions that match?

View 2 Replies View Related

SSL Revealing My Personal Identity

Jun 7, 2007

I purchased two SSL certificates from HostGator a few months ago for each of my sites. I realized that when I go to my website and click the "lock icon" at the bottom right of the screen, my personal identity is revealed. In Internet Explorer, I click the "Details" Tab then go down to Subject field. It has my Street, City, State, and Zip Code. Of course, I don't want my personal mailing address listed there and I never authorize Hostgator to put this information on my SSL Certificate.

I've speaken to a few HostGator customer service reps and they all say different things. I spent 40 minutes on the phone with an incompetent employee who ended up opening a support ticket with improper grammar and incorrect things I told him on the phone. I've gotten really frustrated. One said they cannot remove that information on my SSL certificate. Then another said they can reissue the SSL certificates without revealing my mailing address for $25. I never even wanted them to put this information on there in the first place and now they want to charge me. Now another one says that what is displayed on your WHOIS information on your domain will be displayed on the SSL certificate. And since my registration is private through godaddy, that I would have to make it public whois then change it back to private so Comodo can verify my identity. I'm lost in translation here with everything they are saying at HostGator. My question is, what do I tell Hostgator? What are my rights? Why are they charging me for a simple task? It's to the point where I want to somehow get some kind of information about my SSL certificate so I can call Comodo directly to resolve this issue rather than going through their reseller, HostGator.

It's gotten to a point where I want to just call up Comodo and buy SSL through them directly so that it would not reveal my personal mailing address on my SSL certificate. To hell with Hostgator, unless you guys can provide some good things to tell them on the phone.

View 9 Replies View Related

Godshost.com Supporting Identity Theft Networks

Mar 17, 2008

i have seen many posts here regarding godshost.com hosting company, as i have noticed that the owner of that company is hosting 80% of the identity theft networks for illegal credit cards trading.. i have reported this issue to admin@godshost.com and support@godshost.com / abuse@godshost.com a weeks ago without receving 1 reply from them about it,

all of the ircds server that keeping the illegal network up is from godshost.com 86.106.137.* - 89.40.71.*, Even this company used to supply alot of other illegal networks of ircds as i believe the reason behinde that is to force the network owners to pay more or even the double of the server cost so this how it make more profit!

View 9 Replies View Related

Sharktech.net - Rackvibe.com And Illegal Identity Theft Hosting

Jul 1, 2008

i'v sent to sharktech.net - rackvibe.com / an emails since a week about an illegal hosting on thier ircd services, but can i know why the identity theft irc servers is still running?

i have sent to both abuse emails to:
abuse@rackvibe.com
abuse@sharktech.net,

from a differnt email addresses with a hope to see a responce, but they never did.

i wounder how the both companies feel when people credit cards and thier bank accounts are being sold and traded under thier service.

View 10 Replies View Related

Sharktech.net - Rackvibe.com And Illegal Identity Theft Hosting!

Jul 1, 2008

i'v sent to sharktech.net - rackvibe.com / an emails since a week about an illegal hosting on thier ircd services, but can i know why the identity theft irc servers is still running?

i have sent to both abuse emails to:
abuse@rackvibe.com
abuse@sharktech.net,

from a differnt email addresses with a hope to see a responce, but they never did.

i wounder how the both companies feel when people credit cards and thier bank accounts are being sold and traded under thier service.

View 5 Replies View Related

Compiled Linux Kernel With ICC

Jun 16, 2008

Programs compiled with the Intel C++ compiler run 20-30% (up to 450% in some rare cases) faster than their GCC counterparts.

I have successfully compiled MySQL 5, PHP 5, eAccelerator and nginx with ICC 10.1.015. I was wondering, if anyone has compiled the linux kernel with icc? There are some linux vendors who supply icc compiled kernels, and there are some docs on intels site about compiling the kernel with icc... so it's doable.

But I want to know if anyone has done it on a VPS? What was your experience? Did the system run faster than before? Or did you face some weird situations?

View 4 Replies View Related

Web Hosting And Compiled Code

Nov 5, 2007

It is possible to make code execution on the server with applications such as FastCGI or Zend Optimizer, but the code isn't compiled for good, it's more of a bytecode that is created on the fly, correct?

I'd like to know if it's possible to compile code (PHP, Python, Ruby, etc...) so that when you request a page, the compiled code is executed the same way as compiled C++ code with cgi-bin.

I'm asking because it would be quite efficient in case of high-traffic web sites instead of running intermediary code (bytecode).

Is it possible? What do you think is the more efficient, less resource-intensive and fastest way to execute dynamic-content pages?

View 3 Replies View Related

500 Error For Compiled Lisp Program And No Trouble For The Equivalent C App

May 9, 2009

I'm trying to setup the Clozure Common Lisp implementation for CGI web programming. I've made a hello application and compiled it.

I can type ./index.cgi at the terminal and the properly formatted header and some text are displayed.

When I try to view the index page though the web browser I get an internal server error.

Quote:

Couldn't load lisp heap image from
[Sun May 10 09:31:25 2009] [error] [client 127.0.0.1] Premature end of script headers: index.cgi

I'm wondering if this is a Lisp problem or a problem with the web server/permissions.

I wrote a hello world CGI app in C and ran that through the browser without any problems.

I applied the same permissions from the C app to the Lisp app and still had the same problem.

I *think* this is a Lisp problem, but just felt that I should check with some people who are more familiar with server setups than myself.

View 1 Replies View Related

Plesk 12.x / Linux :: Upgrade To Original Compiled Version PHP / HTTPD

Feb 22, 2015

I have experimented a strange behaviour on plesk linux 12.0.18 Update #33

Basically:
1. I have recompiled Apache with more file descriptors
2. Several days later watchdog did not work properly. Support requested me to remove and install wd
3. I ran the autoinstaller. All my compiled version where replaced.

Watchdog is ok now, but I have to recompile Apache.

I have been searching on forum and kb but could not find any reoccurance.

Question : Is there a way to avoid this ?

Compilation performed based on article [URL]

after having executed /usr/local/psa/admin/bin/autoinstaller --debug

[root@ns7 scripts]# rpm -qa --last | grep "Sat 21 Feb 2015"
psa-watchdog-12.0.18-cos6.build1200140707.14.x86_64 Sat 21 Feb 2015 01:12:58 PM CET
php-tidy-5.3.3-40.el6_6.x86_64 Sat 21 Feb 2015 01:10:07 PM CET

[Code]....

View 1 Replies View Related

RHEL 4 Or 5

Apr 27, 2008

Will you use RHEL 4 or 5? Is there any great differences between them?

I want to use the newer version, but helix server [url] requires RHEL 4 to run, so I am just thinking whether I should use RHEL 4 or 5.

View 2 Replies View Related

ETA For RHEL 5

Jan 27, 2007

When will RHEL 5 final be released? (And Centos 5 as well)

Wasn't it supposed to be released in December?

View 2 Replies View Related

64 Bit RHEL

Jan 4, 2007

Going to order a new server fairly soon, and I'm facing the tough question if I should go with 64-bit or stay with the "classic" 32 bits. My operating system of choice is Red Hat Enterprise 4.

From the research I've done, RHEL 4 (64 bits) should come with dual libraries that would allow running 32 bit and 64 bit applications under the same 64 bit operating system. Sounds great, and if it comes with an overall performance boost I am all for it.

But I've also heard that that's only the theory - in reality, I could end up banging my head against the screen for uncounted hours because compatibility still isn't as good as it's supposed to be. I don't plan to run Plesk or Cpanel, but I still don't want to get into hot water with other applications I've been using on my current 32-bit server.

All in all it's intimidated me quite a bit, so I'd probably go with 32 bits this time around, just to be on the safe side. Then again, I'm still having an eye on the possible performance boost, so dunno. Does anyone have an idea what's the latest on this? 64 bit already safe for the non-experimental-minded, or bleeding edge and stay away from?

View 4 Replies View Related

SuSE Vs. RHEL

Apr 13, 2009

Anyone out there have experience with SuSE over RedHat? RHEL is obviously the generalized Enterprise version used across most commercial hosting companies, but I'm interested in hearing about some SuSE experiences people have had.

It looks like SoftLayer offers SuSE and a couple VPS hosting companies do the same. I'm wondering how many large-scale sites are run on this operating system.

View 7 Replies View Related

How Can I Install A VNC On RHEL 5.0

Jul 14, 2009

how can I install a VNC *(graphical remote control) on RHEL 5.0?

would someone give me a detail instruction and links?

View 3 Replies View Related

Installing Php-gd On RHEL

Jan 24, 2007

I olled online and tried to use yum and up2date and they said the package could not be found

I did rpm-q gd and gd is installed but i need it for php-gd.

I looked on the web and i do not see a version for RHEL.

View 6 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved