博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nagios实现监控主机
阅读量:5326 次
发布时间:2019-06-14

本文共 1163 字,大约阅读时间需要 3 分钟。

2 unzip Nagios.zip -d /usr/src/

3 cd /usr/src/
4 ls
5 cd Nagios/
6 ls
7 cd nagios_software/
8 ls
9 tar fx nagios-4.0.8.tar
10 ls
11 cd nagios-4.0.8
12 ls
13 ./configure --prefix=/usr/local/nagios
14 make all
15 /etc/rc.d/init.d/httpd restart
16 make install
17 useradd nagios
18 make install
19 make install-init
20 make install-commandmode
21 make install-config
22 make install-webconf
23 /etc/init.d/httpd restart
24 /etc/init.d/nagios restart
25 htpasswd -cm /usr/local/nagios/etc/htpasswd.users nagios
26 ls
27 cd ..
28 ls
29 tar nagios-plugins-2.0.3.tar
30 tar fx nagios-plugins-2.0.3.tar
31 ls
32 cd nagios-plugins-2.0.3
33 ls
34 ./configure --prefix=/usr/local/nagios/
35 cd /etc/httpd/conf.d/
36 ls
37 vim nagios.conf
38 cd /usr/local/nagios/etc/
39 ls
40 vim cgi.cfg
41 /etc/init.d/httpd restart
42 /etc/init.d/nagios restart
43 cd /usr/local/
44 ls
45 cd libexec/
46 ls
47 /etc/init.d/nagios restart
48 cd /usr/src/
49 ls
50 cd Nagios/
51 ls
52 cd nagios_software/
53 ls
54 cd nagios-plugins-2.0.3
55 ls
56 ./configure --prefix=/usr/local/nagios/
57 make && make install
58 /etc/init.d/nagios restart

 

转载于:https://www.cnblogs.com/nwpLinux/p/9261398.html

你可能感兴趣的文章
练习10-1 使用递归函数计算1到n之和(10 分
查看>>
Oracle MySQL yaSSL 不明细节缓冲区溢出漏洞2
查看>>
windows编程ASCII问题
查看>>
.net webService代理类
查看>>
Code Snippet
查看>>
Node.js Express项目搭建
查看>>
zoj 1232 Adventure of Super Mario
查看>>
Oracle 序列的应用
查看>>
1201 网页基础--JavaScript(DOM)
查看>>
组合数学 UVa 11538 Chess Queen
查看>>
oracle job
查看>>
Redis常用命令
查看>>
XML学习笔记(二)-- DTD格式规范
查看>>
IOS开发学习笔记026-UITableView的使用
查看>>
[转载]电脑小绝技
查看>>
windos系统定时执行批处理文件(bat文件)
查看>>
thinkphp如何实现伪静态
查看>>
BZOJ 2243: [SDOI2011]染色( 树链剖分 )
查看>>
BZOJ 1925: [Sdoi2010]地精部落( dp )
查看>>
c++中的string常用函数用法总结!
查看>>