centos 7 설치 zabbix + lnmp
wget http://soft.vpser.net/lnmp/lnmp1.6.tar.gz -cO lnmp1.6.tar.gz && tar zxf lnmp1.6.tar.gz && cd lnmp1.6 && ./install.sh lnmp
php 5.6 + mysql 5.7 설치
zabbix 다운로드
https://www.zabbix.com/download
소프트웨어 원본 설치 Zabbix repository 설치
rpm -Uvh https://repo.zabbix.com/zabbix/4.4/rhel/8/x86_64/zabbix-release-4.4-1.el8.noarch.rpm
yum clean all
국내 rpm 사용 이 불가능 하 므 로 아래 파일 내용 을 교체 해 야 합 니 다.
/etc/yum.repos.d/zabbix.repo
[zabbix]
name=Zabbix Official Repository - $basearch
baseurl=http://mirrors.aliyun.com/zabbix/zabbix/4.4/rhel/7/$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX-A14FE591
[zabbix-debuginfo]
name=Zabbix Official Repository debuginfo - $basearch
baseurl=http://mirrors.aliyun.com/zabbix/zabbix/4.4/rhel/7/$basearch/debuginfo/
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX-A14FE591
gpgcheck=1
[zabbix-non-supported]
name=Zabbix Official Repository non-supported - $basearch
baseurl=http://repo.zabbix.com/non-supported/rhel/7/$basearch/
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX
gpgcheck=1
그리고
yum clean all
실행 명령 계속 설치
yum install zabbix-server-mysql zabbix-agent -y
yum install epel-release -y
yum install zabbix-web-mysql zabbix-nginx-conf -y
데이터베이스 와 사용자 추가
mysql -uroot -p
mysql> create database zabbix character set utf8 collate utf8_bin;
mysql> grant all privileges on zabbix.* to zabbix@localhost identified by 'zabbix ';
mysql> quit;
이상 설치 오류 없 음 확인 후
zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix
@ zabbix
프로필 / etc / zabbix / zabbixserver.conf
DBPassword=password
DBHost=127.0.0.1
/ etc / nginx / conf. d / zabbix. conf 를 편집 하고 주 해 를 취소 하 며 nginx 충돌 이 없 도록 포트 를 수정 하 십시오.
# listen 80;
# server_name example.com;
오류 가 없 으 면 시작 할 수 있 습 니 다.
systemctl restart zabbix-server zabbix-agent nginx php-fpm
systemctl enable zabbix-server zabbix-agent nginx php-fpm
위 에 모래 조각 centos 문제 가 아니라면
systemctl restart zabbix-server
systemctl restart zabbix-agent
systemctl restart nginx
systemctl restart php-fpm
systemctl enable zabbix-server
systemctl enable zabbix-agent
systemctl enable nginx
systemctl enable php-fpm
마지막 으로 nginx 설정 에 있 는 주 소 를 입력 하 십시오. 접근 할 수 있 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
리눅스 기초Oracle VM Virtual Box 6.1 설치 VM은 다양한 시스템을 호스팅할 수 있는 환경입니다. ISO Centos 설치: 새로 만들기 클릭 유형: Linux 메모리 크기: 최소 2GB 하드디스크 파일 종류...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.