Author Archives: admin

Install Zabbix on Centos 7

Zabbix requires Apache-Mysql-PHP stack to be installed in order to run. You can follow this previous post. Let’s download and install Zabbix rpm -ivh http://repo.zabbix.com/zabbix/2.4/rhel/7/x86_64/zabbix-release-2.4-1.el7.noarch.rpm yum install zabbix-server-mysql zabbix-web-mysql zabbix-agent We have to edit timezone in /etc/httpd/conf.d/zabbix php_value date.timezone Europe/Athens … Continue reading

Posted in Linux | Leave a comment

Install LAMP and WordPress on Centos 7

Install Mysql (MariaDB) and set password yum -y install mariadb-server mariadb systemctl start mariadb.service systemctl enable mariadb.service mysql_secure_installation Install Apache yum -y install httpd systemctl start httpd.service systemctl enable httpd.service Open ports in firewall firewall-cmd –permanent –zone=public –add-service=http firewall-cmd –permanent … Continue reading

Posted in Linux | Leave a comment