Loren,

You have to null out the mysql root password before doing the upgrade. I learned this the hard way when i first tried to install Zenoss and now it is part of my standard upgrade procedure.

If you follow the below procedures, it should work for you.  Good luck!

-Daniel


 Change the root MySql
 <http://192.168.204.99/noctikiwiki/tiki-index.php?page=MySql> user to null

/'Note: Start MySql <http://192.168.204.99/noctikiwiki/tiki-index.php?page=MySql> (If it is not already started)/'
mysql -u root -p

mysql> select User,Host,Password from mysql.user;

mysql> set password for 'root'@'localhost'=password('');

mysql> flush privileges;


 Install


cd /tmp

tar xvzf zenoss-1.1.1.tar.gz

chown -R zenoss:zenoss /tmp/zenoss-1.1.1

cd zenoss-1.1.1

su - zenoss

cd /tmp/zenoss-1.1.1

./install.sh


This installer actually builds Zenoss.

For a simpler installation try the VMPlayer Appliance image,

or use RPMs for Redhat based systems.

Building...

Password for the Zenoss "admin" user zenoss <http://192.168.204.99/noctikiwiki/zenoss>:

Enter the password again:

/usr/local/zenoss already exists!

Stopping zenoss

Do you want me to keep your existing database? (Y/n) Y


 Set the root MySql
 <http://192.168.204.99/noctikiwiki/tiki-index.php?page=MySql> user's
 password back and set the zenoss mysql user's password!

mysql -u root -p

mysql> select User,Host,Password from mysql.user

mysql> set password for 'root'@'localhost'=password('password');

mysql> set password for 'zenoss'@'localhost'=password('password');

mysql> flush privileges;




Loren Erwin wrote:

I have tried several different times to upgrade to 1.1.1 and I can't get it to create the initial database object.

Here is the output of the install.sh

[EMAIL PROTECTED]:~/zenoss-1.1.1$ ./install.sh

This installer actually builds Zenoss.
For a simpler installation try the VMPlayer Appliance image,
or use RPMs for Redhat based systems.

Building...

Password for the Zenoss "admin" user [zenoss]:
Enter the password again:
/usr/local/zenoss already exists!
Stopping zenoss
Do you want me to keep your existing database? (Y/n) Y

Creating a backup of your existing data
installing into //usr/local/zenoss
build log is in zenbuild.log
installing libzenos/Products.tar.gz
installing libzenos/bin.tar.gz
installing zope
installing pysnmp
installing pycrypto
installing twisted
installing twistedsnmp
installing mysql-python
installing libart
installing freetype
installing libpng
configuring build/rrdtool-1.2.15/Makefile
installing rrdtool
installing epydoc
installing snpp
installing yapps
installing nagios
installing libsmi
cp externallibs/setuptools*.egg build/simplejson-1.4
installing simplejson
configuring winexe-install
MySQL root passwd: [EMAIL PROTECTED]
/usr/local/zenoss/etc/zope.conf converted
Starting Zope Object Database
. daemon process started, pid=12480
Loading initial Zenoss objects into the Zeo database
(this can take a few minutes)
unable to create the initial Zenoss object database


Loren Erwin
The Victoria Advocate
_www.vicad.com_ <file://www.vicad.com>
361-574-1277

------------------------------------------------------------------------

_______________________________________________
zenoss-users mailing list
[email protected]
http://lists.zenoss.org/mailman/listinfo/zenoss-users
_______________________________________________
zenoss-users mailing list
[email protected]
http://lists.zenoss.org/mailman/listinfo/zenoss-users

Reply via email to