Re: [qmailtoaster] qtp-newmodel for fresh install

2008-11-25 Thread DG

Jim Bassett wrote:
Hi. I have a new CentOS 5.2 installation. I have attempted to use 
qtp-newmodel to do a fresh install of qmail toaster. There was a 
recent thread on the list asking about this although it was never 
resolved whether it was possible or not. I have done it. The builds 
failed at numerous places due to missing dependencies, but once 
everything needed was installed qtp-newmodel appears to have built and 
installed qmail toaster successfully. Very cool. My one problem is 
that mysql was not configured for vpopmail (no vpopmail user; no 
vpopmail database) so I can't add any domains. If I try to do 
/home/vpopmail/bin/vadddomain I get: Error - no authentication 
database connection. Initial open. (obviously, since MySQL doesn't 
have the user/database!)


Any suggestions on the best way to make the vpopmail user and database 
in mysql? I have another installation I could just copy by hand, but 
is there something I could just run that would make everything?


MySQL was not running when I installed via qtp-newmodel. Would 
qtp-newmodel have made the database and mysql user if MySQL had been 
running? If so, can I just uninstall qmailtoaster and install it again 
with qtp-newmodel (and MySQL running this time?) If so, what is the 
best way to do this? I can't find anything on the wiki about 
uninstalling.


Thanks.

-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


one of the manual setup scripts (bash) adds the vpopmail user and 
database and chkconfig's it on...prolly the mysql-setup.sh from the cos5 
directory...available from the main site.  edit the script first, 
because it also sets the password.


--
Regards,
fuzzy


-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] qtp-newmodel for fresh install

2008-11-25 Thread Lucian Cristian

You only need to run the script that make the database

I always used the newmodel for fresh installs, but be attentive at 
clamav it tends not to install correctly, maybe this version is working 
ok using newmodel


Regards,
Lucian

Jim Bassett wrote:
Hi. I have a new CentOS 5.2 installation. I have attempted to use 
qtp-newmodel to do a fresh install of qmail toaster. There was a 
recent thread on the list asking about this although it was never 
resolved whether it was possible or not. I have done it. The builds 
failed at numerous places due to missing dependencies, but once 
everything needed was installed qtp-newmodel appears to have built and 
installed qmail toaster successfully. Very cool. My one problem is 
that mysql was not configured for vpopmail (no vpopmail user; no 
vpopmail database) so I can't add any domains. If I try to do 
/home/vpopmail/bin/vadddomain I get: Error - no authentication 
database connection. Initial open. (obviously, since MySQL doesn't 
have the user/database!)


Any suggestions on the best way to make the vpopmail user and database 
in mysql? I have another installation I could just copy by hand, but 
is there something I could just run that would make everything?


MySQL was not running when I installed via qtp-newmodel. Would 
qtp-newmodel have made the database and mysql user if MySQL had been 
running? If so, can I just uninstall qmailtoaster and install it again 
with qtp-newmodel (and MySQL running this time?) If so, what is the 
best way to do this? I can't find anything on the wiki about 
uninstalling.


Thanks.

-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [qmailtoaster] qtp-newmodel for fresh install

2008-11-25 Thread Chris Hillman
I ran in to the same issue - I think this will fix it...

Run the following as root on your mysql server:

create database vpopmail;
grant all on vpopmail.*
to 'vpopmail'@'localhost'
identified by 'yourpasswordhere';
flush privileges;

Then, from the FAQ:

Change the /home/vpopmail/etc/vpopmail.mysql file with your new
password, from your favorite editor.

Cheers,
Chris

-Original Message-
From: Jim Bassett [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 25, 2008 8:37 AM
To: qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] qtp-newmodel for fresh install

Hi. I have a new CentOS 5.2 installation. I have attempted to use qtp- 
newmodel to do a fresh install of qmail toaster. There was a recent  
thread on the list asking about this although it was never resolved  
whether it was possible or not. I have done it. The builds failed at  
numerous places due to missing dependencies, but once everything  
needed was installed qtp-newmodel appears to have built and installed  
qmail toaster successfully. Very cool. My one problem is that mysql  
was not configured for vpopmail (no vpopmail user; no vpopmail  
database) so I can't add any domains. If I try to do /home/vpopmail/ 
bin/vadddomain I get: Error - no authentication database connection.  
Initial open. (obviously, since MySQL doesn't have the user/database!)

Any suggestions on the best way to make the vpopmail user and database  
in mysql? I have another installation I could just copy by hand, but  
is there something I could just run that would make everything?

MySQL was not running when I installed via qtp-newmodel. Would qtp- 
newmodel have made the database and mysql user if MySQL had been  
running? If so, can I just uninstall qmailtoaster and install it again  
with qtp-newmodel (and MySQL running this time?) If so, what is the  
best way to do this? I can't find anything on the wiki about  
uninstalling.

Thanks.

-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] qtp-newmodel for fresh install

2008-11-25 Thread Jim Bassett
Hey thanks, that worked. I thought I had to recreate the specific  
tables too, but it looks like that gets taken care of for you as long  
as you have the user and database in MySQL. Super easy.




On Nov 25, 2008, at 11:30 AM, Chris Hillman wrote:


I ran in to the same issue - I think this will fix it...

Run the following as root on your mysql server:

create database vpopmail;
grant all on vpopmail.*
to 'vpopmail'@'localhost'
identified by 'yourpasswordhere';
flush privileges;

Then, from the FAQ:

Change the /home/vpopmail/etc/vpopmail.mysql file with your new
password, from your favorite editor.

Cheers,
Chris

-Original Message-
From: Jim Bassett [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 25, 2008 8:37 AM
To: qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] qtp-newmodel for fresh install

Hi. I have a new CentOS 5.2 installation. I have attempted to use qtp-
newmodel to do a fresh install of qmail toaster. There was a recent
thread on the list asking about this although it was never resolved
whether it was possible or not. I have done it. The builds failed at
numerous places due to missing dependencies, but once everything
needed was installed qtp-newmodel appears to have built and installed
qmail toaster successfully. Very cool. My one problem is that mysql
was not configured for vpopmail (no vpopmail user; no vpopmail
database) so I can't add any domains. If I try to do /home/vpopmail/
bin/vadddomain I get: Error - no authentication database connection.
Initial open. (obviously, since MySQL doesn't have the user/ 
database!)


Any suggestions on the best way to make the vpopmail user and database
in mysql? I have another installation I could just copy by hand, but
is there something I could just run that would make everything?

MySQL was not running when I installed via qtp-newmodel. Would qtp-
newmodel have made the database and mysql user if MySQL had been
running? If so, can I just uninstall qmailtoaster and install it again
with qtp-newmodel (and MySQL running this time?) If so, what is the
best way to do this? I can't find anything on the wiki about
uninstalling.

Thanks.

-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] qtp-newmodel for fresh install

2008-11-25 Thread Eric Shubert

Lucian,

Let me know the next time you have a problem with newmodel and clamav, 
and I'll see about fixing it. You can always create a ticket at 
qtp.qmailtoaster.com too. ;)


Lucian Cristian wrote:

You only need to run the script that make the database

I always used the newmodel for fresh installs, but be attentive at 
clamav it tends not to install correctly, maybe this version is working 
ok using newmodel


Regards,
Lucian

Jim Bassett wrote:
Hi. I have a new CentOS 5.2 installation. I have attempted to use 
qtp-newmodel to do a fresh install of qmail toaster. There was a 
recent thread on the list asking about this although it was never 
resolved whether it was possible or not. I have done it. The builds 
failed at numerous places due to missing dependencies, but once 
everything needed was installed qtp-newmodel appears to have built and 
installed qmail toaster successfully. Very cool. My one problem is 
that mysql was not configured for vpopmail (no vpopmail user; no 
vpopmail database) so I can't add any domains. If I try to do 
/home/vpopmail/bin/vadddomain I get: Error - no authentication 
database connection. Initial open. (obviously, since MySQL doesn't 
have the user/database!)


Any suggestions on the best way to make the vpopmail user and database 
in mysql? I have another installation I could just copy by hand, but 
is there something I could just run that would make everything?


MySQL was not running when I installed via qtp-newmodel. Would 
qtp-newmodel have made the database and mysql user if MySQL had been 
running? If so, can I just uninstall qmailtoaster and install it again 
with qtp-newmodel (and MySQL running this time?) If so, what is the 
best way to do this? I can't find anything on the wiki about 
uninstalling.


Thanks.

-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
QmailToaster hosted by: VR Hosted http://www.vr.org



--
-Eric 'shubes'


-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]