Zabbix4.0をCentOS7にインストールする
Zabbix
Zabbixのインストールって何気に公式ドキュメントで完結してない感あるので、現時点でのインストール方法を記載する。
はじめに
Zabbixまったく使ってなかったけど、2018/10にversion4.0が出てたので使ってみる。
SELinux無効化
vi /etc/selinux/config
SELINUX=disabled
reboot
再起動
reboot
zabbixのインストール
基本的に公式ドキュメント通りにやっていく
あと、こっちの公式サイトとかも見る
Zabbixサーバのインストール
rpm -ivh https://repo.zabbix.com/zabbix/4.0/rhel/7/x86_64/zabbix-release-4.0-1.el7.noarch.rpm
yum -y install yum-utils
↓使えないから↑をインストールする必要がある。(公式ドキュメントには記載されてない)
yum-config-manager --enable rhel-7-server-optional-rpms
yum -y install zabbix-server-mysql zabbix-proxy-mysql zabbix-web-mysql zabbix-agent
DBをインストール
yum install mariadb mariadb-server
Installed:
mariadb.x86_64 1:5.5.60-1.el7_5 mariadb-server.x86_64 1:5.5.60-1.el7_5
systemctl enable mariadb.service
systemctl start mariadb.service
#設定
mysql_secure_installation
Enter current password for root (enter for none):
Set root password? [Y/n] Y
New password:なんか適当に
Re-enter new password:なんか適当に
Remove anonymous users? [Y/n] Y
Disallow root login remotely? [Y/n] n
Remove test database and access to it? [Y/n] Y
Reload privilege tables now? [Y/n] Y
mysql -uroot -p
Enter password:
MariaDB [(none)]> create database zabbix character set utf8 collate utf8_bin;
Query OK, 1 row affected (0.01 sec)
grant all privileges on zabbix.* to zabbix@localhost identified by 'password'; -- なんか適当にパスワード
MariaDB [(none)]> quit;
Bye
初期データとスキーマをインポート
zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix
Enter password: # 上記のパスワード
Zabbixサーバのデータベース設定をする
vi /etc/zabbix/zabbix_server.conf
DBPassword= #上記のパスワードを入力
Zabbixフロントエンドのタイムゾーンを設定
/etc/httpd/conf.d/zabbix.conf
↓をよしなに変更
php_value date.timezone Asia/Tokyo
Zabbixサーバ再起動
systemctl restart zabbix-server httpd zabbix-agent
systemctl enable zabbix-server httpd zabbix-agent
Zabbixにアクセス
Author And Source
この問題について(Zabbix4.0をCentOS7にインストールする), 我々は、より多くの情報をここで見つけました https://qiita.com/HirokiSakonju/items/3a225cfb3bdd5815796c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .