Hi,
SuSE 10.1, Apache 2.2.0, PHP 5.1.2, MySQL 5.0.18, Zabbix 1.1.4
Executed so far:
I modified /srv/www/htdocs/zabbix/include/db.inc.php with the following:
I also modified the configuration/start-stop scripts to follow my installation paths.
Problem:
I am unable to login the frontend using Admin as username.
Yes I have kept the password blank.
I also have changed the password using phpMyAdmin to add MD5(password), but this doesn't help either.
No logging from any of my services involved to show any errors...
Is there an incompatibility I'm unaware of?
[B]Update:[B]
I ran dos2unix on most of the files that are in the source...
Thanks for any help,
Rory Slegtenhorst
SuSE 10.1, Apache 2.2.0, PHP 5.1.2, MySQL 5.0.18, Zabbix 1.1.4
Executed so far:
cd /usr/src
tar -xzf zabbix-1.1.4.tar.gz
cd zabbix-1.1.4
./configure --prefix=/opt/zabbix --enable-server --enable-agent --with-mysql --with-net-snmp
make
make install
mkdir /srv/www/htdocs/zabbix
cp -r frontend/php/* /srv/www/htdocs/zabbix/
mkdir /etc/zabbix
cp misc/conf/zabbix_agentd.conf /etc/zabbix
cp misc/conf/zabbix_server.conf /etc/zabbix
cp misc/init.d/suse/9.3/zabbix_agentd /etc/init.d
cp misc/init.d/suse/9.3/zabbix_server /etc/init.d
cat create/mysql/schema.sql|mysql -u root -p zabbix
cat create/data/data.sql|mysql -u root -p zabbix
cat create/data/images.sql|mysql -u root -p zabbix
groupadd -g 555 zabbix
useradd -d /opt/zabbix -G zabbix -g zabbix -u 555 -s /bin/bash zabbix
tar -xzf zabbix-1.1.4.tar.gz
cd zabbix-1.1.4
./configure --prefix=/opt/zabbix --enable-server --enable-agent --with-mysql --with-net-snmp
make
make install
mkdir /srv/www/htdocs/zabbix
cp -r frontend/php/* /srv/www/htdocs/zabbix/
mkdir /etc/zabbix
cp misc/conf/zabbix_agentd.conf /etc/zabbix
cp misc/conf/zabbix_server.conf /etc/zabbix
cp misc/init.d/suse/9.3/zabbix_agentd /etc/init.d
cp misc/init.d/suse/9.3/zabbix_server /etc/init.d
cat create/mysql/schema.sql|mysql -u root -p zabbix
cat create/data/data.sql|mysql -u root -p zabbix
cat create/data/images.sql|mysql -u root -p zabbix
groupadd -g 555 zabbix
useradd -d /opt/zabbix -G zabbix -g zabbix -u 555 -s /bin/bash zabbix
I modified /srv/www/htdocs/zabbix/include/db.inc.php with the following:
$DB_TYPE = "MYSQL";
$DB_SERVER = "localhost";
$DB_DATABASE = "zabbix";
$DB_USER = "zabbix";
$DB_PASSWORD = "zabbix";
$DB_SERVER = "localhost";
$DB_DATABASE = "zabbix";
$DB_USER = "zabbix";
$DB_PASSWORD = "zabbix";
I also modified the configuration/start-stop scripts to follow my installation paths.
Problem:
I am unable to login the frontend using Admin as username.
Yes I have kept the password blank.
I also have changed the password using phpMyAdmin to add MD5(password), but this doesn't help either.
No logging from any of my services involved to show any errors...
Is there an incompatibility I'm unaware of?
[B]Update:[B]
I ran dos2unix on most of the files that are in the source...
Thanks for any help,
Rory Slegtenhorst
Comment