0% found this document useful (0 votes)
84 views8 pages

Zabbix Appliance

The document discusses a Zabbix appliance that provides a preconfigured Zabbix server on a virtual machine image for easy deployment. It includes details on booting the appliance, supported formats, default passwords and configurations, and tips for customizing the installation.

Uploaded by

Vahid
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
84 views8 pages

Zabbix Appliance

The document discusses a Zabbix appliance that provides a preconfigured Zabbix server on a virtual machine image for easy deployment. It includes details on booting the appliance, supported formats, default passwords and configurations, and tips for customizing the installation.

Uploaded by

Vahid
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 8

2021/11/13 18:31 1/8 5.

Zabbix appliance

5. Zabbix appliance

As an alternative to setting up manually or reusing existing server for Zabbix, users may download
Zabbix appliance.

To get started, boot the appliance and point your browser at the IP it has received over DHCP.

Booting Zabbix appliance

Zabbix appliance versions are based upon the following OpenSUSE versions:

Zabbix appliance version OpenSUSE version


2.0.0
2.0.2 12.1
2.0.3
2.0.4
12.2*
2.0.5

* Initial 2.0.4 appliance builds were with OpenSUSE 12.1, final builds are with OpenSUSE 12.2.

It is available in the following formats:

vmdk (VMware/Virtualbox)
OVF (Open Virtualisation Format)
VHD (Hyper-V)**
CD iso
HDD/flash image
Preload ISO
Xen guest

Zabbix Documentation 2.0 - https://www.zabbix.com/documentation/2.0/


Last update: 2021/11/13 16:57 manual:appliance https://www.zabbix.com/documentation/2.0/manual/appliance

* Since appliance 2.0.5.

It has Zabbix server configured and running on MySQL, as well as frontend available.

The appliance has been built using SUSE Studio.

2.1 Changes to SUSE configuration

There are some changed applied to the base OpenSUSE configuration.

2.1.1 MySQL configuration changes

Binary log is disabled;


InnoDB is configured to store data for each table in a separate file.

2.1.2 Using a static IP address

By default the appliance uses DHCP to obtain IP address. To specify a static IP address:

Log in as root user;


Open file /etc/sysconfig/network/ifcfg-eth0 in your favourite editor;
Set BOOTPROTO variable to static;
Set IPADDR, NETMASK and any other parameters as required for your network;
Create file /etc/sysconfig/network/routes. For the default route, use default 192.168.1.1 - -
(replacing with your gateway address).
Run the command rcnetwork restart.

To configure DNS, add nameserver entries in /etc/resolv.conf, specifying each nameserver on its own
line: nameserver 192.168.1.2.

Alternatively, just use yast configuration utility to update network settings.

2.1.3 Changing time zone

By default the appliance uses UTC for the system clock. To change the time zone, copy appropriate
file from /usr/share/zoneinfo to /etc/localtime, for example:

cp /usr/share/zoneinfo/Europe/Riga /etc/localtime

2.1.4 Other changes

Network is configured to use DHCP to obtain IP address;


Utility fping is set to have permissions 4710 and is owned by group zabbix - suid and only
alowed to be used by zabbix group;
ntpd configured to synchronise to the public pool servers;

https://www.zabbix.com/documentation/2.0/ Printed on 2021/11/13 18:31


2021/11/13 18:31 3/8 5. Zabbix appliance

Various basic utilities have been added that could make working with Zabbix and monitoring in
general easier.

2.2 Zabbix configuration

Appliance Zabbix setup has the following passwords and other configuration changes:

2.2.1 Passwords

System:

root:zabbix
zabbix:zabbix

Database:

root:zabbix
zabbix:zabbix

Zabbix frontend:

Admin:zabbix

If you change frontend password, do not forget to update password setting web monitoring
(Configuration → Web).

To change the database user password it has to be changed in the following locations:

MySQL;
zabbix_server.conf;
zabbix.conf.php.

2.2.2 File locations

Configuration files are placed in /etc.


Zabbix logfiles are placed in /var/log/zabbix.
Zabbix frontend is placed in /usr/share/zabbix.
Home directory for user zabbix is /var/lib/zabbix.

2.2.3 Changes to Zabbix configuration

Server name for Zabbix frontend set to “Zabbix 2.0 Appliance”;


Frontend timezone is set to Europe/Riga, Zabbix home (this can be modified in
/etc/php5/apache2/php.ini);
Disabled triggers and web scenarios are shown by default to reduce confusion.

Zabbix Documentation 2.0 - https://www.zabbix.com/documentation/2.0/


Last update: 2021/11/13 16:57 manual:appliance https://www.zabbix.com/documentation/2.0/manual/appliance

2.2.4 Preserving configuration

If you are running live CD version of the appliance or for some other reason can't have persistent
storage, you can create a backup of whole database, including all configuration and gathered data.

To create the backup, run:

mysqldump zabbix | bzip2 -9 > dbdump.bz2

Now you can transfer file dbdump.bz2 to another machine.

To restore from the backup, transfer it to the appliance and execute:

bzcat dbdump.bz2 | mysql zabbix

Make sure that Zabbix server is stopped while performing the restore.

2.3 Frontend access

Access to frontend by default is allowed from:

127.0.0.1
192.168.0.0/16
10.0.0.0/8
::1

Root (/) is redirected to /zabbix on the webserver, thus frontend can be accessed both as
http://<host> and http://<host>/zabbix.

This can be customised in /etc/apache2/conf.d/zabbix.conf. You have to restart webserver after


modifying this file. To do so, log in using SSH as root user and execute:

service apache2 restart

2.4 Firewall

By default, only two ports are open - 22 (SSH) and 80 (HTTP). To open additional ports - for example,
Zabbix server and agent ports - modify iptables rules with SuSEfirewall2 utility:

SuSEfirewall2 open EXT TCP zabbix-trapper zabbix-agent

Then reload the firewall rules:

SuSEfirewall2 stop
SuSEfirewall2 start

https://www.zabbix.com/documentation/2.0/ Printed on 2021/11/13 18:31


2021/11/13 18:31 5/8 5. Zabbix appliance

2.5 Monitoring capabilities

Zabbix server is compiled with support for the following:

SNMP;
IPMI;
Web monitoring;
SSH2;
IPv6.

In the provided configuration Zabbix server itself is monitored with the help of locally installed agent
for some base parameters, additionally Zabbix frontend is monitored as well using web monitoring.

Zabbix appliance monitoring own web frontend


Note that web frontend monitoring logs in - this can add lots of entries to the audit log.

2.6 Naming, init and other scripts

Appropriate init scripts are provided. To control Zabbix server, use any of these:

service zabbix_server status


rczabbix_server status
/etc/init.d/zabbix_server status

Zabbix Documentation 2.0 - https://www.zabbix.com/documentation/2.0/


Last update: 2021/11/13 16:57 manual:appliance https://www.zabbix.com/documentation/2.0/manual/appliance

Replace server with agentd for Zabbix agent daemon.

2.6.1 Scheduled scripts

There is a scheduled script, run from the crontab every 10 minutes that restarts Zabbix server if it is
not running, /var/lib/zabbix/bin. It logs timestamped problems and starting attempts at
/var/log/zabbix/server_problems.log.

Make sure to disable this crontab entry if stopping of Zabbix server is desired.

2.6.2 Increasing available diskspace

Create a backup of all data before attempting any of the steps.

Available diskspace on the appliance might not be sufficient. In that case it is possible to expand the
disk. To do so, first expand the block device in your virtualisation environment, then follow these
steps.

Start fdisk to change the partition size. As root, execute:

fdisk /dev/sda

This will start fdisk on disk sda. Next, switch to sectors by issuing:

Don't disable DOS compatibility mode by entering c. Proceeding with it disabled will damage the
partition.

Then delete the existing partition and create new one with desired size. In majority of cases you will
accept the available maximum, which will expand the filesystem to whatever size you made available
for the virtual disk. To do so, enter the following sequence in fdisk prompt:

d
n
p
1
(accept default 63)
(accept default max)

If you wish to leave some space for additional partitions (swap etc), you can enter another value for
last sector. When done, save the changes by issuing:

Reboot the virtual machine (as the partition we modified is in use currently). After reboot, filesystem
resizing can take place.

resize2fs /dev/sda1

https://www.zabbix.com/documentation/2.0/ Printed on 2021/11/13 18:31


2021/11/13 18:31 7/8 5. Zabbix appliance

That's it, filesystem should be grown to the partition size now.

2.7 Format-specific notes

2.7.1 Xen

To use images in Xen server, run:

xm create -c file-with-suffix.xenconfig

See the following pages for more information on using Xen images:

http://en.opensuse.org/openSUSE:How_to_use_downloaded_SUSE_Studio_appliances#Using_Xen
_guests
http://old-en.opensuse.org/SUSE_Studio_Xen_Howtos

Converting image for XenServer

To use Xen images with Citrix Xenserver you have to convert the disk image. To do so:

Create a virtual disk which is at least as large as the image


Find out the UUID for this disk

xe vdi-list params=all

If there are lots of disks, they can be filtered by name parameter name-label, as assigned when
creating the virtual disk
Import the image

xe vdi-import filename="image.raw" uuid="<UUID>"

Instructions from Brian Radford blog.

2.7.2 VMware

The images in vmdk format are usable directly in VMware Player, Server and Workstation products.
For use in ESX, ESXi and vSphere they must be converted using VMware converter.

2.7.3 HDD/flash image (raw)

See http://en.opensuse.org/openSUSE:SUSE_Studio_Disc_Image_Howtos for more information on disk


images.

2.8 Known issues

Zabbix Documentation 2.0 - https://www.zabbix.com/documentation/2.0/


Last update: 2021/11/13 16:57 manual:appliance https://www.zabbix.com/documentation/2.0/manual/appliance

2.8.1 Extracting on Windows

Windows archive management software is known to mishandle the appliance archives. If extraction
fails, try different software. Open source tool 7-zip might work.

2.8.2 For the 2.0.0 appliance

Web monitoring is not preconfigured.


Locales other than English do not work. To enable other locales, run the following commands:

/usr/share/zabbix/locale/make_mo.sh
rcapache2 restart

Static IP address might not work because of a systemd problem. Updating the system with
zypper up should solve it.

2.8.3 For the 2.0.2 appliance

Web monitoring is not preconfigured.


Locales other than English do not work. See 2.0.0 notes for solution.

2.8.4 For the 2.0.4 appliance

SSH daemon could not be started in the initial appliance builds. Please download latest builds
(post-2013.01.27).
Web monitoring is not preconfigured.

From:
https://www.zabbix.com/documentation/2.0/ - Zabbix Documentation 2.0

Permanent link:
https://www.zabbix.com/documentation/2.0/manual/appliance

Last update: 2021/11/13 16:57

https://www.zabbix.com/documentation/2.0/ Printed on 2021/11/13 18:31

You might also like