যুদ্ধ নয়, ‘শেষ’ হচ্ছে ইরাক! Rumi, July 9, 2014July 9, 2014 'যুদ্ধ' শব্দটা মনে হয় ইরাকের জন্যই প্রযোজ্য! ২০০৩ সালে ইরাকে ইঙ্গ-মার্কিন হামলার পর সামরিক-বেসামরিক মিলে জীবন গেছে প্রায় ৫ লাখ লোকের। আহত হয়েছে আরো অনেক যার সঠিক হিসাব নেই। প্রায় সাড়ে ৪ হাজার মার্কিন সৈন্য প্রাণ দিয়েছে এই যুদ্ধে। নিহতের তালিকায় আছে ব্রিটিশসহ আরো অনেক সৈন্য। যুক্তরাষ্ট্রের ব্যয় হয়েছে এক… Continue Reading
Book Review: Learning Nagios 4 by Wojciech Kocjan Rumi, July 7, 2014July 7, 2014 Learning Nagios 4: Learn how to setup Nagios 4 in order to monitor your systems efficiently, Author- Wojciech Kocjan. Nagios- it is the most effective monitoring tool that actually helps to identify and resolve critical IT infra before they affect critical service operations. Above all, it is an open… Continue Reading
ইমান মালিকি Rumi, July 5, 2014July 5, 2014 ইমান মালেকি ইরানের তেহরান শহরে জন্মগ্রহণ করেন ১৯৭৬ সালে। ছোট থেকেই ছিলো ছবি আঁকার নেশা। ১৫ বছর বয়স থেকে দীক্ষা নেন ইরানের মহান রিয়ালিস্ট পেইন্টার মর্তেজা কাতৌজিয়ানের কাছে। ১৯৯৮ সালে তেহরান বিশ্ববিদ্যালয় থেকে গ্রাফিক ডিজাইনে সম্মান ডিগ্রি লাভ করেন। তারপর বিভিন্ন প্রদর্শনীতে তাঁর আঁকা চিত্র প্রদর্শিত হয়। বিভিন্ন জাতীয় ও… Continue Reading
Reinstall OpenSSH Server Rumi, June 21, 2014 First if you have any pre-installed SSH server that has gone bad, remove it- on Redhat Architechture Type the following commands as the root user: # chkconfig sshd off # service sshd stop # yum erase openssh-server You need to edit and update firewall rules that allows inbound connections to… Continue Reading
Increase file upload size limit in PHP-Nginx Rumi, June 9, 2014 To change max file upload size to 100MB Edit… vim /etc/php5/fpm/php.ini Set… upload_max_filesize = 100M post_max_size = 100M Continue Reading
SSH Public key based authentication Rumi, June 9, 2014September 3, 2017 Method-1: Create the cryptographic Key on FreeBSD / Linux / UNIX workstation, enter: ssh-keygen -t rsa Assign the pass phrase (press [enter] key twice if you don’t want a passphrase). It will create 2 files in ~/.ssh directory as follows: ~/.ssh/id_rsa : identification (private) key ~/.ssh/id_rsa.pub : public key Use… Continue Reading
Install Sun Java 7.x on Debian Squeeze Rumi, June 8, 2014 It might look weird to install Sun Java from a Ubuntu Repo- however it works at least it worked for my installation- $ su root # echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu precise main" > /etc/apt/sources.list.d/webupd8team-java.list # echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu precise main" >> /etc/apt/sources.list.d/webupd8team-java.list # apt-key adv –keyserver keyserver.ubuntu.com –recv-keys EEA14886 # apt-get… Continue Reading
Linux service restart shell script Rumi, June 6, 2014 I badly needed a script that would check if my running services (in this script it'll check varnish and apache2 services) are alive- if not, it'll restart the dead service and write a log. Pretty handy! #!/bin/sh STARTAPACHE="/etc/init.d/apache2 start" STARTVARNISH="/etc/init.d/varnish start" Continue Reading