การติดตั้ง NRPE บน Windows 2012 R2

เพื่อไม่ให้เสียเวลามาเริ่มกันเลยครับ วิธีการติดตั้ง Nrpe บน Windows 2012 R2 1) Download โปรแกรม Winnrpe ดังนี้ (Version นี้มีช่องโหว่ Heartbleed แนะนำว่าลง Firewall ด้วยอีกชั้น) https://www.itefix.net/sites/default/files/winrpe_4.2.0_Installer.zip 2) ทำการติดตั้งโปรแกรม โดย Next ไปเรื่อย ๆ ระหว่างติดตั้งจะมีการสร้าง User ขึ้นมา พยายามอย่าไปตั้ง Password เอง เดี๋ยว Service จะมีปัญหา Start ไม่ขึ้น 3) ให้เข้าไป ตั้งค่า Services ให้ Start ทุกครั้งหลังจากเปิดเครื่องดังรูป 4) ลองทดสอบให้ nagios เข้ามาดึงค่าได้เลย * สามารถดูคำสั่งหรือแก้ไข nrpe config ได้ที่ C:\Program Files (x86)\ICW\nrpe.cfg 5) … Read more

การติดตั้ง NRPE บน Ubuntu 14.04

เพื่อไม่ให้เสียเวลามาเริ่มกันเลยครับ วิธีการติดตั้ง Nrpe บน Ubuntu 14.04 1) ทำการติดตั้งโปรแกรม nrpe (มองว่าเป็น server ให้ nagios มาเรียกเพื่อดึงค่า) ดังนี้ sudo apt-get install -y nagios-nrpe-server 2) ทำการแก้ config /etc/nagios/nrpe.cfg เพื่อใส่ชื่อเครื่องที่อนุญาตให้มาดึงค่าได้ ดังนี้ sudo nano /etc/nagios/nrpe.cfg … # # NOTE: This option is ignored if NRPE is running under either inetd or xinetd allowed_hosts=127.0.0.1,monitor 3) จากนั้นทำการ Restart nrpe ดังนี้ sudo /etc/init.d/nagios-nrpe-server restart … Read more

วิธีการตั้งค่า NRPE เพื่อใช้งานกับ NagiosQL บน Ubuntu 14.04 LTS

สำหรับการใช้งาน NRPE ต้องทำการติดตั้ง Nagios และ NagiosQL มาก่อนดังนี้ Nagios : http://sysadmin.psu.ac.th/2014/07/23/nagios-ubuntu1404/ NagiosQL : http://sysadmin.psu.ac.th/2014/07/23/nagiosql-ubuntu/ Setup NagiosQL : http://sysadmin.psu.ac.th/2014/07/23/setup-nagiosql-ubuntu/ วิธีการติดตั้ง Nrpe และการตั้งค่าบน NagiosQL 1) ทำการติดตั้งโปรแกรม nrpe ดังนี้ sudo apt-get install -y nagios-nrpe-plugin 2) ทำการ Login เข้า Web NagiosQL โดยจะยกตัวอย่างการเพิ่ม nrpe เกี่ยวกับการ Check Load Linux 3) ทำการเพิ่ม command ใหม่ดังนี้ Commands -> Definitions Command : check_linux_load Command line : $USER1$/check_nrpe -H $HOSTADDRESS$ -c … Read more

การติดตั้งและการตั้งค่าเบื้องต้น NagiosGraph บน Ubuntu 14.04 LTS

สำหรับการติดตั้ง NagiosGraph ต้องทำการติดตั้ง Nagios และ NagiosQL มาก่อนดังนี้ Nagios : http://sysadmin.psu.ac.th/2014/07/23/nagios-ubuntu1404/ NagiosQL : http://sysadmin.psu.ac.th/2014/07/23/nagiosql-ubuntu/ Setup NagiosQL : http://sysadmin.psu.ac.th/2014/07/23/setup-nagiosql-ubuntu/ วิธีการติดตั้ง Nagios Graph 1) ทำการติดตั้งโปรแกรม Perl-GD Perl-RRDs และ Perl-Nagios รวมถึงโปรแกรม rrdtool ดังนี้ sudo apt-get install -y rrdtool libgd-perl librrds-perl libnagios-object-perl 2) ทำการ Download  โปรแกรม NagiosGraph ดังนี้ cd /usr/src sudo wget http://downloads.sourceforge.net/project/nagiosgraph/nagiosgraph/1.5.1/nagiosgraph-1.5.1.tar.gz 3) จากนั้นทำการแตกไฟล์ออกมาด้วยคำสั่ง sudo tar -xvzf nagiosgraph-1.5.1.tar.gz 4) จากนั้นทำการตรวจสอบความพร้อมก่อนติดตั้งด้วยคำสั่ง cd nagiosgraph-1.5.1 sudo … Read more

วิธีการตั้งค่าและการใช้งาน NagiosQL บน Ubuntu 14.04 LTS

สามารถอ่านวิธีติดตั้ง NagiosQL บน Ubuntu 14.04 LTS ได้ที่ http://sysadmin.psu.ac.th/2014/07/23/nagiosql-ubuntu/ หลังจากการติดตั้งจะต้องมีการตั้งค่าให้สามารถควบคุม Nagios ได้ดังนี้ วิธีการตั้งค่า Nagiosql configuration 1) หลังจาก Login ให้ทำการเข้าไปแก้ไข config path ดังนี้ Administrator -> Config targets -> Configuration directories Nagios base directory -> /etc/nagios3 Import Directory -> /etc/nagios3/conf.d Nagios command file -> /var/lib/nagios3/rw/nagios.cmd Nagios binary file -> /usr/sbin/nagios3 Nagios process file -> /var/run/nagios3/nagios3.pid Nagios config file -> … Read more