今天在安装完nagios后,通过nagios网页界面点击主机.服务.问题页面时.均报错,报错的内容都差不多.如点击服务,报错: It appears as though you do not have permission to view information for any of the services you requested...  如下图所示:    百度了下,好多文章基本都是一样,改/usr/local/nagios/etc/cgi.cfg文件里的一个参数 use_authent…
参考文献: https://www.cnblogs.com/mchina/archive/2013/02/20/2883404.html https://www.jianshu.com/p/3476d98a4703 软件介绍与原理我是直接copy的第一篇文献的,因为里面介绍的很清楚,我就未作修改.感谢. 什么是nagios        Nagios是一款开源的电脑系统和网络监视工具,能有效监控Windows.Linux和Unix的主机状态,交换机路由器等网络设置,打印机等.在系统或服务状态异常…
Nagios常见问题1: It appears as though you do not have permission to view information for any of the hosts you requested 临时解决: sed -i 's/use_authentication=1/use_authentication=0/g' /usr/local/nagios/etc/cgi.cfg (取消了认证 可以浏览主机状态 但是无法在 nagios web端 执行外部命令 )…
本文基于<LNMP最新源码安装脚本>,Nagios依赖PHP环境和perl环境,由于Nginx不支持Perl的CGI,需先来搭建Perl环境,Nagios原理介绍略.一.下载最新稳定源码包和Perl脚本wget http://www.cpan.org/modules/by-module/FCGI/FCGI-0.74.tar.gzwget http://www.cpan.org/authors/id/B/BO/BOBTFISH/FCGI-ProcManager-0.24.tar.gzwget h…
一.重启nagios 报错: Starting nagios:This account is currently not available.     #这个账户目前不可用: 解决方法: a.编辑/etc/passwd 把 nagios:x:501:501::/home/nagios:/sbin/nologin   修改为: nagios:x:501:501::/home/nagios:/bin/bash b.重启nagios 二.nagios 监控出现It appears as though…
一.安装nrpe的时候,提示:checking for SSL headers… configure: error: Cannot find ssl headers 解决方法如下: yum -y install openssl-devel yum -y install openssl-perl二.启动nagios错误 Starting nagios:This account is currently not available. 解决办法:默认是 shell 是 /bin/bash,不要使用 -…
addSubview: Adds a view to the end of the receiver’s list of subviews. 译:增加一个视图到接收者的子视图列表中. - (void)addSubview:(UIView *)view Parameters view The view to be added. This view is retained by the receiver. After being added, this view appears on top of…
很明显,以下的文字来自微软MSDN 链接http://msdn.microsoft.com/en-us/library/windows/desktop/ms681382(v=vs.85).aspx MSDN上分成了几个部分,查起来费事,统一放在这里了. 用kernel32.dll里的FormatMessage可以得到支持多语言的返回消息 有人把这些错误代码整理成了类,供参考 http://www.cnblogs.com/Sabre/p/3929264.html Note The informat…
1 Run command “New-SPConfigurationDatabase" Feature Description: error message popup after run function “New-SPConfigurationDatabase". 1.1 Category Code error 1.2 Exception and Phenomena pipeline issue:The pipeline has been stopped New-SPConfigu…
P6 EPPM Installation and Configuration Guide 16 R1         April 2016 Contents About Installing and Configuring P6 EPPM ........................................................ 6 Prerequisites for P6 EPPM Configuration ...............................…
P6 Professional Installation and Configuration Guide (Microsoft SQL Server Database) 16 R1       May 2016 Contents About This Guide...................................................................................... 11 Shared Topics in This Guide .…
(一)SSL/TLS协议运行机制的概述 一.作用 不使用SSL/TLS的HTTP通信,就是不加密的通信.所有信息明文传播,带来了三大风险. (1) 窃听风险(eavesdropping):第三方可以获知通信内容. (2) 篡改风险(tampering):第三方可以修改通信内容. (3) 冒充风险(pretending):第三方可以冒充他人身份参与通信. SSL/TLS协议是为了解决这三大风险而设计的,希望达到: (1) 所有信息都是加密传播,第三方无法窃听. (2) 具有校验机制,一旦被篡改,通…
addSubview: Adds a view to the end of the receiver’s list of subviews. 译:增加一个视图到接收者的子视图列表中. - (void)addSubview:(UIView *)view Parameters view The view to be added. This view is retained by the receiver. After being added, this view appears on top of…
原地址:http://www.cnblogs.com/realtimepixels/p/3652086.html Unity AssetBundle Dependencies In the last few weeks I’ve spent quite a lot of time with Unity’s Asset Bundle system. Understanding how dependencies were tracked. What determines GC cleanup of…
Chapter 1. Microsoft Dynamics CRM 4.0 SDK Overview(SDK概述) You are probably reading this book because your organization recently purchased Microsoft Dynamics CRM or because your organization is evaluating it. As a developer, you want to know what this…
from:http://www.cnblogs.com/xiaoL/p/3593691.html  http://f.dataguru.cn/thread-51057-1-1.html 1001 ORACLE EBS学习的其他资源有哪四个? 1002 ORACLE OPEN WORLD大会是不是一个市场营销活动? 1003 Oracle 大学有哪五种课程? 1004 多个责任分配给一个人,是多对一关系,还是一对多关系? 1005 一个责任分配给多个人,是什么样的关系? 1006 双+号和双-号,…
请管理员移至新闻版块,谢谢! 来源:http://www.sec.gov/ 财务报表下载↓ 此文仅作参考分析. 10-K 1 goog2013123110-k.htm FORM 10-K   UNITED STATES SECURITIES AND EXCHANGE COMMISSION Washington, D.C. 20549         FORM 10-K   (Mark One)       ý ANNUAL REPORT PURSUANT TO SECTION 13 OR 15(…
一 . 前言 Django 提供了admin 组件 为项目提供基本的管理后台功能(对数据表的增删改查). 本篇文章通过 admin源码 简单分析admin 内部原理 ,扩展使用方式,为以后进行定制和自己开发组件做铺垫. 二. 简单使用 1.在app 目录下的admin.py 中通过注册表 from django.contrib import admin from blog01.models import * admin.site.register([UserInfo,User,Blog]) #…
Making Docker and Deployment Process Step: set up your docker environment build a image of activeMQ with Dockerfile build a image of swieApp with Dockerfile delploy your project with docker-compose.yml 一.Set up your docker environment Install Docker…
1 Run command “New-SPConfigurationDatabase" Feature Description: error message popup after run function “New-SPConfigurationDatabase". 1.1 Category Code error 1.2 Exception and Phenomena pipeline issue:The pipeline has been stopped New-SPConfigu…
http://www.infotechguyz.com/VMware/FiberChannelSANStorage.html Using Fibre Channel with ESX/ESXi Fibre Channel SAN LUNS: Used for VMFS datastores to hold virtual machines, ISO images, and templates Used for holding RDMs, which point to a virtual mach…
http://f.dataguru.cn/thread-51057-1-1.html ORACLE EBS学习的其他资源有哪四个? ORACLE OPEN WORLD大会是不是一个市场营销活动? Oracle 大学有哪五种课程? 多个责任分配给一个人,是多对一关系,还是一对多关系? 一个责任分配给多个人,是什么样的关系? 双+号和双-号,分别是做什么用的? ORACLE应用系统间的数据流有哪四步,注意顺序不能错? 不同的字段颜色,有不同的功能,系统中有哪5种颜色,他们分别是做什么用的? 创建记录…
Analyzing Crash Reports After you distribute your app for testing by using TestFlight or after you make it available on the store, routinely download and analyze crash reports. When an app crashes, the system creates a crash log that describes the co…
https://www.zabbix.com/documentation/3.4/manual/quickstart/login Quickstart 1login and configuring user 1.1login column Detail note Name Admin password zabbix Enter the user name Admin with password zabbix.As the superuser. 1)set language After login…
http://blog.csdn.net/garfielder007/article/details/51480525 New (draft) survey paper: Labeled Faces in the Wild: A SurveyErik Learned-Miller, Gary Huang, Aruni RoyChowdhury, Haoxiang Li, Gang Hua The camera-ready has not yet been submitted. If you se…
Bars The Status Bar…
Responding to Display-Related Notifications 响应跟显示相关的通知 When the visibility of a view controller’s view changes, the view controller calls some built-in methods to notify subclasses of the changes. You can override these methods to override how your s…
A list of the standard attributes that you can use in themes can be found at R.styleable.Theme. Constants AbsListView_cacheColorHint Indicates that this list will always be drawn on top of solid, single-color opaque background. AbsListView_choiceMode…
https://docs.kentico.com/k10tutorial 主面板按照功能分成两行排版 https://docs.kentico.com/k10tutorial/getting-started-with-kentico Tutorial sequence To get the best experience out of this short tutorial, follow the sequence of the pages in the specified order: Lea…