Hello
I am trying to install Zabbix 1.4.5 on ubuntu 8.04 server. However the steps I follow get me to a point and then I have some problems.
The steps I follow are as follows:
1) adduser zabbix
enter in new password
confirm
2) adduser zabbix adm
3) su - zabbix
wget http://optusnet.dl.sourceforge.net/s...x-1.4.2.tar.gz
tar zxvpf zabbix-1.4.2.tar.gz
4) su
5) mysql -e "create database zabbix;"
mysql -e "grant all privileges on zabbix.* to zabbix@localhost identified by 'password';"
6) mysql -uzabbix -p zabbix < /home/zabbix/zabbix-1.4.2/create/schema/mysql.sql
mysql -uzabbix -p zabbix < /home/zabbix/zabbix-1.4.2/create/data/data.sql
mysql -uzabbix -p zabbix < /home/zabbix/zabbix-1.4.2/create/data/images_mysql.sql
7) su - zabbix
8) cd zabbix-1.4.2/
./configure --prefix=/usr --with-mysql --with-net-snmp \
--with-libcurl --enable-server --enable-agent &&
now for the problem part
make
this is where it says, don't know how to make. make stop. I tried cd up a dir until I was in root dir, but no go. It doesn't break while doing make. It just doesn't do anything when I do a make.
Then I want to do make install and I get the same error. From my knowledge of BSD if make doesn't work then make install will definitely not work.
So I decided to continue
9)vi /etc/services
10) zabbix_agent 10050/tcp # Zabbix ports
zabbix_trap 10051/tcp
11) mkdir /etc/zabbix
12) chown -R zabbix.zabbix /etc/zabbix/
13) cp misc/conf/zabbix_* /etc/zabbix/
This is where my next problem occurs. When I try to copy, there is no misc dir in my current working dir. And they do not show an absolute path and nor do they give a pwd in this instruction so I have no idea where to find the misc dir. Is it meant to be done with the make, make install instructions?
When I proceed to the next step (which is):
14) vi /etc/zabbix/zabbix_agentd.conf
I cannot find the file zabbix_agentd.conf???
Any help to solve these issues will be much appreciated.
Warmest Regards
wvw
I am trying to install Zabbix 1.4.5 on ubuntu 8.04 server. However the steps I follow get me to a point and then I have some problems.
The steps I follow are as follows:
1) adduser zabbix
enter in new password
confirm
2) adduser zabbix adm
3) su - zabbix
wget http://optusnet.dl.sourceforge.net/s...x-1.4.2.tar.gz
tar zxvpf zabbix-1.4.2.tar.gz
4) su
5) mysql -e "create database zabbix;"
mysql -e "grant all privileges on zabbix.* to zabbix@localhost identified by 'password';"
6) mysql -uzabbix -p zabbix < /home/zabbix/zabbix-1.4.2/create/schema/mysql.sql
mysql -uzabbix -p zabbix < /home/zabbix/zabbix-1.4.2/create/data/data.sql
mysql -uzabbix -p zabbix < /home/zabbix/zabbix-1.4.2/create/data/images_mysql.sql
7) su - zabbix
8) cd zabbix-1.4.2/
./configure --prefix=/usr --with-mysql --with-net-snmp \
--with-libcurl --enable-server --enable-agent &&
now for the problem part
make
this is where it says, don't know how to make. make stop. I tried cd up a dir until I was in root dir, but no go. It doesn't break while doing make. It just doesn't do anything when I do a make.
Then I want to do make install and I get the same error. From my knowledge of BSD if make doesn't work then make install will definitely not work.
So I decided to continue
9)vi /etc/services
10) zabbix_agent 10050/tcp # Zabbix ports
zabbix_trap 10051/tcp
11) mkdir /etc/zabbix
12) chown -R zabbix.zabbix /etc/zabbix/
13) cp misc/conf/zabbix_* /etc/zabbix/
This is where my next problem occurs. When I try to copy, there is no misc dir in my current working dir. And they do not show an absolute path and nor do they give a pwd in this instruction so I have no idea where to find the misc dir. Is it meant to be done with the make, make install instructions?
When I proceed to the next step (which is):
14) vi /etc/zabbix/zabbix_agentd.conf
I cannot find the file zabbix_agentd.conf???
Any help to solve these issues will be much appreciated.
Warmest Regards
wvw
Comment