报错集——zabbix搭建遇到的错误
Posted 噫噫噫呀呀呀
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了报错集——zabbix搭建遇到的错误相关的知识,希望对你有一定的参考价值。
报错1 没有可用软件包
sudo yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
报错2 安装nginx后找不到conf.d目录下的default.conf文件,
方案一
重新进行安装nginx,并修改nginx的epel镜像源地址
重新安装
yum install yum-utils
创建新的nginx.repo文件
[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true
[nginx-mainline]
name=nginx mainline repo
baseurl=http://nginx.org/packages/mainline/centos/$releasever/$basearch/
gpgcheck=1
enabled=0
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true
默认情况下,使用稳定的nginx软件包的存储库。如果要使用主线nginx软件包,请运行以下命令:
yum-config-manager --enable nginx-mainline
安装nginx
yum install nginx
方案二
因为这个default.conf 本身就是一个配置文件,所以我的思路是既然没有就直接创建一个,看看行不行。于是,就用 vi default.conf 创建了一个空文件,然后在网上找到 default.conf 文件的内容,放进去。
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location /mystatus {
stub_status;
}
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 404 /50x.html;//修改404 状态码的对应的指向的访问目录,修改后需重启服务器。
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the php scripts to Apache listening on 127.0.0.1:80
#
#location ~ \\.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \\.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\\.ht {
# deny all;
#}
}
报错3
方法:
原因是因为密码设置的过于简单会报错,mysql有密码设置的规范,如果想要查看MySQL完整的初始密码规则,登陆后执行以下命令。
SHOW VARIABLES LIKE 'validate_password%';
/密码的长度是由validate_password_length决定的,但是可以通过以下命令修改
set global validate_password_length=4;
/validate_password_policy决定密码的验证策略,默认等级为MEDIUM(中等),可通过以下命令修改为LOW(低)
set global validate_password_policy=0;
以上是关于报错集——zabbix搭建遇到的错误的主要内容,如果未能解决你的问题,请参考以下文章
docker报错集——consul-template启动后负载均衡无法实现,错误:504 Gateway Time-out