2018年8月11日土曜日

VagrantでZabbixとPostgreSQLをインストールした仮想マシン(CentOS7.5)を構築する

Zabbixはサーバー監視ソフトウェアです。

〇Zabbixの画面

ユーザ名、パスワードはAdmin/zabbixです。

〇構築方法
1. 以下のVagrantfileを使用して、ZabbixとPostgreSQLをインストールした仮想マシン(CentOS7.5)を構築します。

Vagrantfile
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "bento/centos-7.5"
  config.vm.hostname = "co75zabbixpg"
config.vm.network :public_network, ip:"192.168.1.107"
config.vm.network "private_network", ip: "192.168.55.107", :netmask => "255.255.255.0"
  config.vm.provider :virtualbox do |vbox|
    vbox.name = "co75zabbixpg"
    vbox.cpus = 4
    vbox.memory = 4096
    vbox.customize ["modifyvm", :id, "--nicpromisc2","allow-all"]
  end
  config.vm.provision "shell", inline: <<-SHELL
localectl set-locale LANG=ja_JP.UTF-8

# download and install postgresql.
wget https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7-x86_64/pgdg-centos10-10-2.noarch.rpm
rpm -Uvh pgdg-centos10-10-2.noarch.rpm

yum -y update
yum -y install postgresql10-server postgresql10-devel postgresql10-contrib
systemctl enable postgresql-10

# initialize postgresql server
/usr/pgsql-10/bin/postgresql-10-setup initdb

echo "listen_addresses='*'" >> /var/lib/pgsql/10/data/postgresql.conf

sed -i 's/host.*all.*all.*127.0.0.1/#host    all             all             127.0.0.1/g' /var/lib/pgsql/10/data/pg_hba.conf
sed -i 's#^host.*all.*all.*::1/128.*ident#host    all             all             ::1/128    password#g' /var/lib/pgsql/10/data/pg_hba.conf

echo "host    all         all         127.0.0.1/32          password" >> /var/lib/pgsql/10/data/pg_hba.conf
echo "host    all         all         192.168.1.0/24          password" >> /var/lib/pgsql/10/data/pg_hba.conf
echo "host    all         all         192.168.55.0/24          password" >> /var/lib/pgsql/10/data/pg_hba.conf
systemctl start postgresql-10.service

# create users and databases...
su - postgres << EOF
psql -c "
alter user postgres with password 'postgres';
"
createdb -T template0 --locale=ja_JP.UTF-8 --encoding=UTF8 zabbix
EOF
export PGPASSWD=postgres

systemctl restart postgresql-10.service
su - postgres << EOF
psql -c "
create user zabbix with password 'zabbix';
alter database zabbix owner to zabbix;
"
EOF

# install zabbix
rpm -i https://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-2.el7.noarch.rpm 
yum -y install zabbix-server-pgsql zabbix-web-pgsql zabbix-agent 
export PGPASSWORD=zabbix
zcat /usr/share/doc/zabbix-server-pgsql*/create.sql.gz | psql -h localhost -U zabbix zabbix 
sed -i -e 's/# DBPassword=/DBPassword=zabbix/' /etc/zabbix/zabbix_server.conf
sed -i -e 's|# php_value date.timezone Europe/Riga|php_value date.timezone Asia/Tokyo|' /etc/httpd/conf.d/zabbix.conf

systemctl enable zabbix-server.service
systemctl start zabbix-server.service
systemctl enable zabbix-agent.service
systemctl start zabbix-agent.service
systemctl restart httpd.service

echo 'access to http://192.168.1.107/zabbix/'
echo 'user: Admin   password: zabbix'
SHELL
end

2.ブラウザからhttp://192.168.1.108/zabbix/にアクセスします。「Next Step」をクリックします。


3.「Next Step」をクリックします。


4.Passwordフィールドにzabbixを入力して、「Next Step」をクリックします。


5.「Next Step」をクリックします。


6.「Next Step」をクリックします。


7.「Finish」をクリックします。


0 件のコメント:

コメントを投稿