> > > > thanks for your fast reply! That's really a great help. Tried to go > > through the steps you described. Everything worked, I was able to > > import aegir, but when I tried to import the components and the sample > > site I got the following error: > > > > repligard-CRITICAL **: Error logging into Database > > > > So when I try to access the aegir front-end I just get an error page. > > Any suggestions? > >
That means you cannot log into a virtual database in terms of midgard. 1) Aegir import must've change admin person crdentials mysql> update person set password='**password' where username='admin' and sitegroup=0; where 'password' is the one you habe in your repligard.conf 2) Aegir also added own host entries mysql> select * from host; +-----+------------------+------+-------+------+-------+------+--------+---- ------------------------+-----------+ | id | name | root | style | info | owner | port | online | prefix | sitegroup | +-----+------------------+------+-------+------+-------+------+--------+---- ------------------------+-----------+ | 148 | localhost | 55 | 7 | | 2 | 8001 | 1 | /aegir | 0 | | 167 | localhost | 86 | 40 | | 0 | 8001 | 1 | /attachment/0 | 0 | mysql> update host set name='www.yourname.com' where name='localhost'; Also note that default port Aegir uses is 8001 so you must adjust apache configuration Solt --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
