today I encountered this error after recompiling and reconfiguring apache webserver with Fcgi and having Fcgi enabled for the default apache handle
Resource temporarily unavailable: apr_thread_create: unable to create worker thread
after investigating asnd did a little search on the web I found out that the problem is due to the ulimit …
11 April 2012
No comments
toay i was asked for looking into a server which soem websites were suffering internal server error
like always firstly I would go ahead and take a look at what the apache logs are saying at
/usr/local/apache/logs/error_log
which in this server was the path of apache logs
from my experience it is mostly because …
3 April 2012
No comments
In some cases for a better security or even by just your intention you may want to prevent files from being displayed for the public on your website where there is no index.php o index.html
To do so on Apache Webserver where you have root access just copy and paste the …
1 January 2012
No comments
solution was changing the apache directive to the following
MaxRequestsPerProcess 1000
DefaultMaxClassProcessCount 120
IdleTimeout 60
MaxProcessCount 2000
IPCCommTimeout 40
IPCConnectTimeout 10
MaxRequestLen 10240000
7 November 2011
No comments
One of the Concerns on changing a domain name is at first the Search Engine ranks on the pages that all will be lost because google will not find the old urls by the old domian
So it is a good Idea to direct all of the visitors from the …
26 May 2011
2 comments
I couldn’t get apache started
it returened this error
Name or service not known: mod_unique_id: unable to find IPv4 address of
Starting httpd: httpd: apr_sockaddr_info_get() failed for server.domain.com
httpd: Could not reliably determine the server’s fully qualified domain name, using 127.0.0.1 for ServerName
I checked the error_log it had the same error showing so …
21 May 2011
No comments
Zend should be installed if you want to have ioncube and ioncube is a must for some scripts to work
to install go to directory
/usr/local/directadmin/custombuild/
cd /usr/local/directadmin/custombuild/
nano options.conf
set zend=yes
THen run
./build update
./build zend
and a process will go on and if you encountered this message
Zend Optimizer has been installed.
means that the installation is succeeded
THanks
voshka …
23 March 2011
No comments
HI, every one
today I was asked for a server to optimize its apache for a high load that its control panel was directadmin
I went ahead and did every configuration and optimization I could do.
but at last I wanted to know the apache fullstatus to see if all of the configuration …
21 March 2011
No comments
fcgid is apache fastcgi implementation module that is really a fast apache handler.It is an alternative to apache mod_cgi and mod_cgid apache handler module but so much faster and with high performance .What it really does as I know it caches the php functions and classes and remain them active …
18 March 2011
No comments
Apache MPM_WORKER is a Multi-Processing Module (MPM) implements a hybrid multi-process multi-threaded server that consumes less system resources and respond to requests and process them faster.faster proceses and less memory usage and not crashing on a pipe logging control panels for gracefully restar are the benefirst of this MPM
For compiling …
18 March 2011
No comments