codecamp

安装及配置

安装

#git clone https://github.com/BillWang139967/zabbix_manager.git
#cd zabbix_manager
#sh start.sh

常见问题

git clone 失败
[root@localhost ~]# git clone https://github.com/BillWang139967/zabbix_manager.git
Initialized empty Git repository in /root/zabbix_manager/.git/
error:  while accessing https://github.com/BillWang139967/Vim.git/info/refs

fatal: HTTP request failed
解决方法
#git config --global http.sslVerify false

配置

配置文件位置
/etc/zabbix_tool/zabbix_config.ini

注意,配置时将配置配置在[zabbixserver]字段下
```
[zabbixserver]----------------------默认连接(可通过--profile选择连接的zabbix)
server = 127.0.0.1------------------zabbix server IP
port = 80---------------------------zabbix web端口
user = admin------------------------zabbix web管理员账号
password = zabbix-------------------zabbix web管理员密码

################################# 

# zabbix_api 可以进行管理多台zabbix server 只需要在配置文件中增加如下配置即可,加入要对 [bendi] 的机器进行管理,在命令行后跟--profile bendi 即可

#[bendi]
#server = 192.168.199.128
#port = 80
#user = admin
#password = zabbix

################################# 
```

说明
名词解释
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }