elasticsearch on docker

# docker pull elasticsearch:6.8.5 SCRIPT=`realpath $0` BASE=`dirname $SCRIPT`         mkdir -p $BASE/esdata1         docker run -p 9200:9200 –name elasticsearch -v $BASE/esdata1:/usr/share/elasticsearch/data \         -e “http.host=0.0.0.0” \         -e “cluster.name=elasticlogging” \         -e “node.name=esnode1” \         -e “node.master=true” […]

mod_fcgid: HTTP request length xxxxx (so far) exceeds MaxRequestLen (131072)

This error message appears today, and it seems related to fcgi. As defined here, http://httpd.apache.org/mod_fcgid/mod/mod_fcgid.html#fcgidmaxrequestlen, the default value for MaxRequestLen is 131072, which is quite low for most implementation. I would prefer to use a higher value for this. For cpanel users, the configurations lies in this file. /usr/local/apache/conf/php.conf You need to add an additional […]

Fine tuning apache and mysql for performance and security

I’ve gone through a process of migration of a server, with help with provided migration scripts, and some hard-coded scripts to help synchronizing latest data, and permission fixing. All done well, and working fine now. However, all installation of services were default, and did not optimized for our needs. There are few aspect of tuning […]

Beware of phishing site.

What is phishing anyway? From Wikipedia, the word phishing means a criminally fraudulent process of attempting to acquire sensitive information from users such as username, password and credit card details by masquerading as a trustworthy entity in electronic communication. Wikipedia:Phishing Nowadays, you must receive at least one phishing email, containing phishing URL, every time you […]