Installing Zabbix 2.2.3 from source files on a fresh copy of Ubuntu 12.04 LTS.
After all my installation steps are complete, the zabbix php front end reports that the server is not running. In terminal, if I type 'sudo service zabbix_server start', it returns "zabbix_server: unrecognized service". This also happens if I try to start service zabbix_agent.
The following are the steps I followed to install LAMP + Zabbix. Is anyone able to spot why my services aren't running, or even being recognized? Thank you for your assistance.
After all my installation steps are complete, the zabbix php front end reports that the server is not running. In terminal, if I type 'sudo service zabbix_server start', it returns "zabbix_server: unrecognized service". This also happens if I try to start service zabbix_agent.
The following are the steps I followed to install LAMP + Zabbix. Is anyone able to spot why my services aren't running, or even being recognized? Thank you for your assistance.
- sudo apt-get update
- sudo apt-get install mysql-server
- sudo apt-get install libmysqld-dev
- sudo apt-get install phpmyadmin
- PHPMyAdmin has a defined set of dependencies, which will install most of what we need
- sudo apt-get install libxml2-dev
- sudo apt-get install libsnmp-dev
- sudo apt-get install libcurl4-openssl-dev
- sudo nano /etc/php5/apache2/php.ini
- post_max_size=16M
- max_execution_time=300
- max_input_time=300
- date.timezone=America/Chicago
- Create zabbix database and import schema.sql, images.sql, and data.sql
- Create mysql user ‘zabbix’ and grant all privileges
- ./configure --enable-server --enable-agent --with-mysql --enable-ipv6 --with-net-snmp --with-libcurl --with-libxml2
- sudo make install
- cd /var/www/
- sudo mkdir zabbix
- cd
- cd Downloads/zabbix-2.2.3/frontends/php/
- sudo cp -a . /var/www/zabbix
- sudo chmod 777 /var/www/zabbix/conf
- Web Browser: localhost/zabbix Follow on screen instructions (No Errors Here)
Comment