首页
Search
1
v2ray异常错误之二
3,310 阅读
2
linux时区设置
2,698 阅读
3
DB2常用操作
2,173 阅读
4
websphere修改jvm内存xmx和xms
1,929 阅读
5
nfs客户端文件属主为nobody的现象
1,552 阅读
技术
生活
运动
游戏
电影
登录
Search
标签搜索
docker
linux
troubleshooting
nginx
secure
truenas
mysql
windows
python
esxi
docker swarm
oracle
zabbix
tomcat
blog
dsm
群晖
rpa
freenas
db
yuc
累计撰写
291
篇文章
累计收到
0
条评论
首页
栏目
技术
生活
运动
游戏
电影
页面
搜索到
8
篇与
的结果
2023-03-31
zabbix之agent2
0x0 有一些zabbix模板需要zabbix agent2才能够监控,比如mysql的,所以记录下大概的安装方式 0x1 监控mysql使用模板 MySQL by Zabbix agent 2的话,需要agent2客户端,编译 ./configure --prefix=/usr/local/zabbix-agent --enable-agent2 这样可能是编译不成功的,因为还需要golang 在安装golang后,设置go的环境变量 export GOROOT=/usr/local/go export PATH=${PATH}:/usr/local/go make的时候需要go的其他包,修改为国内依赖 go env -w GO111MODULE=on go env -w GOPROXY=https://goproxy.cn,direct PS. 是否能找到golang这些包做离线源使用,以满足纯内网环境的安装
2023年03月31日
807 阅读
0 评论
0 点赞
2022-03-17
zabbix历史版本下载
如何下载: 找到 zabbix 源码下载的页面 https://www.zabbix.com/download_sources 可以从 download 按钮获取到下载地址,然后找到历史版本包 https://cdn.zabbix.com/zabbix/sources/stable/
2022年03月17日
1,279 阅读
0 评论
0 点赞
2022-03-15
zabbix在centos6的安装
要点 主要问题是centos6不支持高版本zbx服务端,只能使用zbx3。而且配套的环境支持有限,如mysql和php 依赖安装 yum -y install httpd zabbix zabbix-server zabbix-web zabbix-server-mysql zabbix-web-mysql mysql-server rpm -ivh http://mirror.webtatic.com/yum/el6/latest.rpm yum install php55w php55w-mysql php55w-common php55w-gd php55w-mbstring php55w-mcrypt php55w-devel php55w-xml php55w-bcmath php55w-fpm -y 前端和mysql cp -R /usr/share/zabbix/ /var/www/html/ cp /usr/share/mysql/my-medium.cnf /etc/my.cnf create database zabbix character set utf8 collate utf8_bin; grant all on zabbix.* to zabbix@'%' identified by 'Zbx_123456'; flush privileges; nginx的配置 server { listen 80; server_name localhost; root /var/www/html; index index.php index.html index.htm; access_log logs/zabbix_access.log; error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } location ~ \.(php|php5)?$ { root /var/www/html/; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /var/www/html$fastcgi_script_name; include fastcgi_params; } }
2022年03月15日
638 阅读
0 评论
0 点赞
1
2