Created
May 7, 2020 23:39
-
-
Save julianobarbosa/ccb480057766473b7818b24252effda7 to your computer and use it in GitHub Desktop.
Vagrant Zabbix Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
NAME = "zabbix-5-lts" | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure("2") do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at | |
# https://docs.vagrantup.com. | |
# Every Vagrant development environment requires a box. You can search for | |
# boxes at https://atlas.hashicorp.com/search. | |
config.vm.box = "bento/ubuntu-16.04" | |
config.vm.define NAME | |
# Disable automatic box update checking. If you disable this, then | |
# boxes will only be checked for updates when the user runs | |
# `vagrant box outdated`. This is not recommended. | |
config.vm.box_check_update = false | |
config.vbguest.auto_update = false | |
# Create a forwarded port mapping which allows access to a specific port | |
# within the machine from a port on the host machine. In the example below, | |
# accessing "localhost:8080" will access port 80 on the guest machine. | |
config.vm.network "forwarded_port", guest: 80, host: 8080 | |
config.vm.network "forwarded_port", guest: 443, host: 8443 | |
# Create a private network, which allows host-only access to the machine | |
# using a specific IP. | |
# config.vm.network "private_network", ip: "192.168.33.10" | |
# Create a public network, which generally matched to bridged network. | |
# Bridged networks make the machine appear as another physical device on | |
# your network. | |
# config.vm.network "public_network" | |
# Share an additional folder to the guest VM. The first argument is | |
# the path on the host to the actual folder. The second argument is | |
# the path on the guest to mount the folder. And the optional third | |
# argument is a set of non-required options. | |
config.vm.synced_folder ".", "/vagrant", disable: false, create: true, owner: "vagrant", group: "vagrant", mount_optons: ["uid=1235", "gid=1234"] | |
# Provider-specific configuration so you can fine-tune various | |
# backing providers for Vagrant. These expose provider-specific options. | |
# Example for VirtualBox: | |
# | |
config.vm.provider "virtualbox" do |vb| | |
vb.memory = "4096" | |
vb.name = NAME | |
end | |
# | |
# View the documentation for the provider you are using for more | |
# information on available options. | |
# Define a Vagrant Push strategy for pushing to Atlas. Other push strategies | |
# such as FTP and Heroku are also available. See the documentation at | |
# https://docs.vagrantup.com/v2/push/atlas.html for more information. | |
# config.push.define "atlas" do |push| | |
# push.app = "YOUR_ATLAS_USERNAME/YOUR_APPLICATION_NAME" | |
# end | |
# Enable provisioning with a shell script. Additional provisioners such as | |
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the | |
# documentation for more information about their specific syntax and use. | |
config.vm.provision "shell", inline: <<-SHELL | |
echo " | |
###### Ubuntu Main Repos | |
deb http://us.archive.ubuntu.com/ubuntu/ bionic main universe | |
deb-src http://us.archive.ubuntu.com/ubuntu/ bionic main universe | |
###### Ubuntu Update Repos | |
deb http://us.archive.ubuntu.com/ubuntu/ bionic-security main universe | |
deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates main universe | |
deb-src http://us.archive.ubuntu.com/ubuntu/ bionic-security main universe | |
deb-src http://us.archive.ubuntu.com/ubuntu/ bionic-updates main universe" >> /etc/apt/sources.list | |
wget https://repo.zabbix.com/zabbix/4.5/ubuntu/pool/main/z/zabbix-release/zabbix-release_4.5-1+bionic_all.deb | |
dpkg -i zabbix-release_4.5-1+bionic_all.deb | |
apt-get update; | |
apt-get install zabbix-server-mysql zabbix-frontend-php zabbix-apache-conf php7.2-gd php7.2-bcmath php7.2-mbstring php7.2-xml -y; | |
apt-get install zabbix-agent -y | |
echo -e "[mysqld]\ndefault-storage-engine = innodb" | sudo tee /etc/mysql/conf.d/mysqld.conf; | |
systemctl daemon-reload | |
systemctl enable --now mysql | |
systemctl restart apache2 | |
mysql -e "CREATE USER 'zabbix'@'localhost' IDENTIFIED BY 'zabbix';"; | |
mysql -e "create database zabbix character set utf8 collate utf8_bin;" | |
mysql -e "grant all privileges on zabbix.* to zabbix@localhost identified by 'zabbix';"; | |
zcat /usr/share/doc/zabbix-server-mysql/create.sql.gz | mysql -uzabbix -p"zabbix" zabbix; | |
sed 's/# DBPassword=/DBPassword=zabbix/g' /etc/zabbix/zabbix_server.conf -i; | |
sed 's@;date.timezone [email protected]=America/Sao_Paulo@' -i /etc/php/7.2/apache2/php.ini; | |
sed 's@post_max_size =@post_max_size = 16M@' -i /etc/php/7.2/apache2/php.ini; | |
sed 's@max_execution_time = 30@max_execution_time = 300@' -i /etc/php/7.2/apache2/php.ini; | |
sed 's@max_input_time = 60@max_input_time = 300@' -i /etc/php/7.2/apache2/php.ini; | |
systemctl daemon-reload | |
systemctl enable --now zabbix-server zabbix-agent php7.2-fpm apache2 | |
cp -rfa /usr/share/zabbix /var/www/html/ | |
# copy all dependency | |
# ldd /usr/sbin/zabbix_agentd | grep "=> /" | awk '{print $3}' | xargs -I '{}' cp -v '{}' /vagrant/files | |
# tar zcvf zabbix_agentd_ubuntu_16_04.tgz . | |
SHELL | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment