Solutionist's Blog

Tech | Health | Life | Travel

dhcp server configuration in centos

Install DHCP Server Normally it install as part of your OS, if not you can install via YUM #  yum -y install dhcp Copy the sample conf file to /etc folder # cp -f /usr/share/doc/dhcp*/dhcpd.conf.sample /etc/dhcpd.conf Open Conf file # vim  /etc/dhcpd.conf My conf file looks like this root@ajay:~# cat /etc/dhcpd.conf authoritative; # default-lease-time 21600; max-lease-time 43200; […]

11 top Search Engines other than google

very interesting Article from BBC Even so, others are still trying, offering different features or even trying to rethink the principles of the underlying technology. These are some of the alternative search tools. Bing Microsoft’s Bing service is the leading search rival to Google when looking at the world as a whole – although it […]

Install CACTI Centos

Cacti is a complete frontend to RRDTool, it stores all of the necessary information to create graphs and populate them with data in a MySQL database. The frontend is completely PHP driven. Along with being able to maintain Graphs, Data Sources, and Round Robin Archives in a database, cacti handles the data gathering. There is […]

benefits of cloud computing

  I have been managing in house Linux, mac and Windows servers for various clients for years . different clients need different features with low cost .   After introducing myself into the world of Cloud Storage , I am doing SaaS and cloud storage effectively. I prefer doing cloud storage in local geographic locations […]

graph exim mail count on cacti

this was a tough thing as i failed to configure exim to publish via SNMP i have setup a cronjob to run below command */1 * * * * echo “exim_queue:$(/usr/sbin/exim -bpc)” > /tmp/exim_stat Then i got cacti to graph the exim stat  as data input method – script ssh -q -x user@host.com  “cat /tmp/exim_stat” […]

Install yum-skip-broken

Install yum-skip-broken Type the following command as root user: # yum -y install yum-skip-broken     How to handle skiping packages with dependency problems Now type the command as follows: # yum -y upgrade –skip-broken OR # yum -y update –skip-broken

php53-common conflicts with php-common

php53-common-5.3.3-13.el5_8.x86_64 from installed has depsolving problems –> php53-common conflicts with php-common Error: php53-common conflicts with php-common   This issue normally happens when you have upgraded your PHP to new version 5.3 and try to install a old extension Solution:  find the extension which in the same version or install extension from source file  

MySQL – Master slave replication setup

to setup master – slave ON MASTER SERVER STEP #1 – set server ID edit my.cnf and add server-id=1 STEP #2 – Create slave user mysql grant replication slave on *.* to ‘slave_username’@192.168.16.5 \  identified by ‘slave-password’;   STEP #3 – restart Mysql service mysqld restart   ON SLAVE SERVER STEP #4- Edit my.cnf file and […]

Secured By miniOrange