Re: [qmailtoaster] New Rocky Install

2024-02-19 Thread Eric Broch
If you've entered a domain during install the script will send an email 
to the address you enter from that postmaster account. The script will 
test smtps, submission, and imaps.


Check the dspam password in /etc/dspam.conf

Check if the mysql.sock exists where dspam.conf is looking.

dspam.conf setting should look like this.

# --- MySQL ---

#
# Storage driver settings: Specific to a particular storage driver. 
Uncomment

# the configuration specific to your installation, if applicable.
#
MySQLServer /var/lib/mysql/mysql.sock
#MySQLPort
MySQLUser   dspam
MySQLPass   p4ssw3rd
MySQLDb dspam
MySQLCompress   true
MySQLReconnect  true

Check and see if the dspam portion of the install script was accomplished

echo -e "\n"
MYSQLPW=$password
credfile=~/sql.cnf
echo -e "[client]\nuser=root\npassword='$MYSQLPW'\nhost=localhost" > 
$credfile


.

.

.

echo "Dropping Dspam database if it exists already..."
mysql --defaults-extra-file=$credfile -e "use dspam" &> /dev/null
[ "$?" = "0" ] && mysqldump --defaults-extra-file=$credfile dspam > 
dspam.sql \
   && mysql --defaults-extra-file=$credfile -e "drop 
database dspam" \

   && echo "dspam db saved to dspam.sql and dropped..."

# Get dspam db structure
wget https://raw.githubusercontent.com/qmtoaster/dspam/master/dspamdb.sql
if [ "$?" != "0" ]; then
   echo "Error downloading dspam db: ($?), exiting..."
   exit 1
fi

# Create dspam with correct permissions
echo "Creating Dspam database..."
mysqladmin --defaults-extra-file=$credfile reload
mysqladmin --defaults-extra-file=$credfile refresh
mysqladmin --defaults-extra-file=$credfile create dspam
mysqladmin --defaults-extra-file=$credfile reload
mysqladmin --defaults-extra-file=$credfile refresh
echo "Adding dspam users and privileges..."
mysql --defaults-extra-file=$credfile -e "CREATE USER dspam@localhost 
IDENTIFIED BY 'p4ssw3rd'"
mysql --defaults-extra-file=$credfile -e "GRANT ALL PRIVILEGES ON 
dspam.* TO dspam@localhost"

mysqladmin --defaults-extra-file=$credfile reload
mysqladmin --defaults-extra-file=$credfile refresh
echo "Done with dspam database..."
mysql --defaults-extra-file=$credfile dspam < dspamdb.sql
mysqladmin --defaults-extra-file=$credfile reload
mysqladmin --defaults-extra-file=$credfile refresh
# End DSpam DB install



On 2/19/2024 7:50 AM, Gary Bowling wrote:



Another question.. What is this question for when the script runs? I'm 
not sure what it's for or how to answer it.



Enter a valid remote email account to which QMT will send mail via 
Submission & SMTPS:



Thanks, gb


On 2/19/2024 9:36 AM, Eric Broch wrote:


Not sure what went wrong...did a search...

Can't connect to local MySQL server through socket 
'/var/mysql/mysql.sock' (38) - Stack Overflow 




On 2/19/2024 6:55 AM, Gary Bowling wrote:
Can't connect to local MySQL server through socket 
'/var/lib/mysql/mysql.sock
- 
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com 
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com 

Re: [qmailtoaster] New Rocky Install

2024-02-19 Thread Gary Bowling


  
  


Another question.. What is this question for when the script
  runs? I'm not sure what it's for or how to answer it. 



Enter a valid remote email account to which QMT will send mail
  via Submission & SMTPS:


Thanks, gb



On 2/19/2024 9:36 AM, Eric Broch wrote:


  
  Not sure what went wrong...did a search...
  Can't connect to local MySQL server
  through socket '/var/mysql/mysql.sock' (38) - Stack Overflow
  
  
  On 2/19/2024 6:55 AM, Gary Bowling
wrote:
  
  Can't
connect to local MySQL server through socket
'/var/lib/mysql/mysql.sock

  


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] New Rocky Install

2024-02-19 Thread Eric Broch

Not sure what went wrong...did a search...

Can't connect to local MySQL server through socket 
'/var/mysql/mysql.sock' (38) - Stack Overflow 




On 2/19/2024 6:55 AM, Gary Bowling wrote:
Can't connect to local MySQL server through socket 
'/var/lib/mysql/mysql.sock

Re: [qmailtoaster] New Rocky Install

2024-02-19 Thread Gary Bowling


  
  


Ok, now everything goes good with the script until I get down to
  this section where I get this error. 


  Feb 19 00:33:17  dspam[11283]: Can't connect to local MySQL server
  through socket '/var/lib/mysql/mysql.sock' (2)
  

Then the script stops and gives me
lines 1-39/38 (END)


If I quit out of that, it continues on and seems like it might be
  ok. Just making sure the "Can't connect to local MySQL" isn't a
  problem and/or how to resolve it?


Thanks, gb



On 2/19/2024 8:03 AM, Gary Bowling
  wrote:


  
  
  
  Answering my own note.. haha.
  
  
  I see that I was wrong, both mysql and maria are supported by
the OS. I don't think there is anything in my old maria db files
that would not be compatible with mysql, so I'll remove maria
and clean up things and let the script install mysql. 
  
  
  
  Thanks, gb
  
  
  
  On 2/19/2024 7:55 AM, Gary Bowling
wrote:
  
  



Ok, thanks. Isn't maria the supported db by the OS? I thought
  I was using maria because it got regular security updates via
  the standard OS repos and mysql no longer did.

I think my password failure was due to having maria installed
  already.
So the best approach would be to remove maria and clean up a
  few other things, then run the script again letting it do it's
  thing?
Thanks for the help Eric and Remo.
gb



On 2/19/2024 12:02 AM, Eric Broch
  wrote:


  
  When the script asks for a password enter the password you
plan to use and the script will set your entry as the admin
password for the MySQL install. I used to give option for
either Maria or MySQL install in CentOS 8; it became
burdensome to keep two sets of packages so I settled on
MySQL. All the packages are compiled with MySQL support, not
Maria, on Rocky/Alma/Springdale 9.
  
  
  On 2/18/2024 5:39 PM, Gary
Bowling wrote:
  
  



Per the previous question about Rocky.. I'm in the
  process of doing a Rocky 9 install right now! So yes, I
  believe it's the way to go, although I'm not an expert.



My problem right now is... I ran qt_install per the
  instructions. 



After a while, it pops up asking for a mysql password. I
  didn't know what to put in, tried the root password, it
  failed and now the script continues on. But there are
  errors because I wasn't able to put in the right password.
  So two questions. 

1. What should the mysql password be?
2. When it finishes, what should I do? I guess I could
  run it again, it's not operational yet, so maybe running
  again and putting in the right mysql password would get me
  back on track. 



Please advise..


Thanks, gb



-- 
  
   The Moderns on Spotify 
  

- To
unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
  

- To
unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
  
-
  To unsubscribe, e-mail:
  qmailtoaster-list-unsubscr...@qmailtoaster.com
  For additional commands, e-mail:
  qmailtoaster-list-h...@qmailtoaster.com

  


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] New Rocky Install

2024-02-19 Thread Gary Bowling


  
  


Answering my own note.. haha.


I see that I was wrong, both mysql and maria are supported by the
  OS. I don't think there is anything in my old maria db files that
  would not be compatible with mysql, so I'll remove maria and clean
  up things and let the script install mysql. 



Thanks, gb



On 2/19/2024 7:55 AM, Gary Bowling
  wrote:


  
  
  
  Ok, thanks. Isn't maria the supported db by the OS? I thought I
was using maria because it got regular security updates via the
standard OS repos and mysql no longer did.
  
  I think my password failure was due to having maria installed
already.
  So the best approach would be to remove maria and clean up a
few other things, then run the script again letting it do it's
thing?
  Thanks for the help Eric and Remo.
  gb
  
  
  
  On 2/19/2024 12:02 AM, Eric Broch
wrote:
  
  

When the script asks for a password enter the password you
  plan to use and the script will set your entry as the admin
  password for the MySQL install. I used to give option for
  either Maria or MySQL install in CentOS 8; it became
  burdensome to keep two sets of packages so I settled on MySQL.
  All the packages are compiled with MySQL support, not Maria,
  on Rocky/Alma/Springdale 9.


On 2/18/2024 5:39 PM, Gary Bowling
  wrote:


  
  
  
  Per the previous question about Rocky.. I'm in the process
of doing a Rocky 9 install right now! So yes, I believe it's
the way to go, although I'm not an expert.
  
  
  
  My problem right now is... I ran qt_install per the
instructions. 
  
  
  
  After a while, it pops up asking for a mysql password. I
didn't know what to put in, tried the root password, it
failed and now the script continues on. But there are errors
because I wasn't able to put in the right password. So two
questions. 
  
  1. What should the mysql password be?
  2. When it finishes, what should I do? I guess I could run
it again, it's not operational yet, so maybe running again
and putting in the right mysql password would get me back on
track. 
  
  
  
  Please advise..
  
  
  Thanks, gb
  
  
  
  -- 

 The Moderns on Spotify 

  
- To
  unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
  For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com

  
-
  To unsubscribe, e-mail:
  qmailtoaster-list-unsubscr...@qmailtoaster.com
  For additional commands, e-mail:
  qmailtoaster-list-h...@qmailtoaster.com

  


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] New Rocky Install

2024-02-19 Thread Gary Bowling


  
  


Ok, thanks. Isn't maria the supported db by the OS? I thought I
  was using maria because it got regular security updates via the
  standard OS repos and mysql no longer did.

I think my password failure was due to having maria installed
  already.
So the best approach would be to remove maria and clean up a few
  other things, then run the script again letting it do it's thing?
Thanks for the help Eric and Remo.
gb



On 2/19/2024 12:02 AM, Eric Broch
  wrote:


  
  When the script asks for a password enter the password you plan
to use and the script will set your entry as the admin password
for the MySQL install. I used to give option for either Maria or
MySQL install in CentOS 8; it became burdensome to keep two sets
of packages so I settled on MySQL. All the packages are compiled
with MySQL support, not Maria, on Rocky/Alma/Springdale 9.
  
  
  On 2/18/2024 5:39 PM, Gary Bowling
wrote:
  
  



Per the previous question about Rocky.. I'm in the process of
  doing a Rocky 9 install right now! So yes, I believe it's the
  way to go, although I'm not an expert.



My problem right now is... I ran qt_install per the
  instructions. 



After a while, it pops up asking for a mysql password. I
  didn't know what to put in, tried the root password, it failed
  and now the script continues on. But there are errors because
  I wasn't able to put in the right password. So two questions.
  

1. What should the mysql password be?
2. When it finishes, what should I do? I guess I could run it
  again, it's not operational yet, so maybe running again and
  putting in the right mysql password would get me back on
  track. 



Please advise..


Thanks, gb



-- 
  
   The Moderns on Spotify 
  

- To
unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
  

  


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] New Rocky Install

2024-02-18 Thread Eric Broch
When the script asks for a password enter the password you plan to use 
and the script will set your entry as the admin password for the MySQL 
install. I used to give option for either Maria or MySQL install in 
CentOS 8; it became burdensome to keep two sets of packages so I settled 
on MySQL. All the packages are compiled with MySQL support, not Maria, 
on Rocky/Alma/Springdale 9.



On 2/18/2024 5:39 PM, Gary Bowling wrote:



Per the previous question about Rocky.. I'm in the process of doing a 
Rocky 9 install right now! So yes, I believe it's the way to go, 
although I'm not an expert.



My problem right now is... I ran qt_install per the instructions.


After a while, it pops up asking for a mysql password. I didn't know 
what to put in, tried the root password, it failed and now the script 
continues on. But there are errors because I wasn't able to put in the 
right password. So two questions.


1. What should the mysql password be?

2. When it finishes, what should I do? I guess I could run it again, 
it's not operational yet, so maybe running again and putting in the 
right mysql password would get me back on track.



Please advise..


Thanks, gb


--

The Moderns on Spotify 

- 
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com 
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com 

Re: [qmailtoaster] New Rocky Install

2024-02-18 Thread Remo Mattei
You cannot run both. Remove both run the install script let it finish.

--
Sent from iPhone

> On domenica, feb 18, 2024 at 18:52, Gary Bowling  (mailto:g...@gbco.us)> wrote:
>
>
>
>
>
> How do I get around this?
>
>
>
>
>
>
>
> yum install vpopmail
>
>
>
> Last metadata expiration check: 0:07:00 ago on Mon 19 Feb 2024 02:42:24 AM 
> UTC.
> Error:
> Problem: problem with installed package 
> mariadb-server-3:10.5.22-1.el9_2.x86_64
> - package mariadb-server-3:10.5.22-1.el9_2.x86_64 from @System conflicts with 
> mysql-server provided by mysql-server-8.0.32-1.el9_2.x86_64 from appstream
> - package mysql-server-8.0.32-1.el9_2.x86_64 from appstream conflicts with 
> mariadb-server provided by mariadb-server-3:10.5.22-1.el9_2.x86_64 from 
> @System
> - package mysql-server-8.0.32-1.el9_2.x86_64 from appstream conflicts with 
> mariadb-server provided by mariadb-server-3:10.5.22-1.el9_2.x86_64 from 
> appstream
> - package mariadb-server-3:10.5.22-1.el9_2.x86_64 from appstream conflicts 
> with mysql-server provided by mysql-server-8.0.32-1.el9_2.x86_64 from 
> appstream
> - package vpopmail-5.4.33-5.qt.el9.x86_64 from qmt-testing requires 
> mysql-server, but none of the providers can be installed
> - conflicting requests
>
>
>
> Thanks, gb
>
>
>
>
>
>
> On 2/18/2024 8:59 PM, Remo Mattei wrote:
> > Gary nah!!
> >
> > Remo
> >
> > > On Sunday, Feb 18, 2024 at 17:51, Gary Bowling  > > (mailto:g...@gbco.us)> wrote:
> > >
> > > Yea, but you're a lot smarter than I am! haha.
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > gb
> > >
> > >
> > >
> > >
> > >
> > >
> > > On 2/18/2024 8:38 PM, Remo Mattei wrote:
> > > > Hi I do not think so I just build two new qmail rocky9 using the script 
> > > > no issue whatsoever to migrate I had to do a little manic here and 
> > > > there not too bad so run the fresh install then migrate your users all 
> > > > good.
> > > >
> > > > --
> > > > Sent from iPhone
> > > >
> > > > > On domenica, feb 18, 2024 at 17:26, Gary Bowling  > > > > (mailto:g...@gbco.us)> wrote:
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Thanks, yea I understand. It's just the script calls and tries to 
> > > > > install mysql. In your migration a while back, Eric had said that 
> > > > > what he would do is follow the migration steps on the web site. Which 
> > > > > runs qt_install first.
> > > > >
> > > > >
> > > > >
> > > > > qt_install seems a bit out of date to me. I guess I just need to go 
> > > > > through qt_install line by line and manually and make some changes 
> > > > > for my environment.
> > > > >
> > > > >
> > > > > Thanks, I'll work on it some more...
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > gb
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > On 2/18/2024 8:19 PM, Remo Mattei wrote:
> > > > > > You can use Maria or MySQL on the new one just dump and import  
> > > > > > should be just fine.
> > > > > >
> > > > > > --
> > > > > > Sent from iPhone
> > > > > >
> > > > > > > On domenica, feb 18, 2024 at 16:52, Gary Bowling  > > > > > > (mailto:g...@gbco.us)> wrote:
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > AH, I also see that the qt_install tries to install mysql-server. 
> > > > > > > My old toaster already has mariadb installed.
> > > > > > >
> > > > > > >
> > > > > > > I'm trying to install a new Rocky 9 and migrate my old Centos 7 
> > > > > > > server over.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > I'm running the qt_install that was specified in the RHEL9 
> > > > > > > derivative section on this page..
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > http://www.qmailtoaster.com/index.html
> > > > > > >
> > > > > > >
> > > > > > > Which was the first step in the migration section listed here.
> > > > > > >
> > > > > > >
> > > > > > > http://www.qmailtoaster.com/migrate.html
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > I have my old server running and will install this one and make 
> > > > > > > sure it's all ok prior to cutting over. So I have some time. Any 
> > > > > > > help would be appreciated.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Thanks, gb
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > On 2/18/2024 7:39 PM, Gary Bowling wrote:
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Per the previous question about Rocky.. I'm in the process of 
> > > > > > > > doing a Rocky 9 install right now! So yes, I believe it's the 
> > > > > > > > way to go, although I'm not an expert.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > My problem right now is... I ran qt_install per the 
> > > > > > > > 

Re: [qmailtoaster] New Rocky Install

2024-02-18 Thread Gary Bowling


  
  


How do I get around this? 



yum install vpopmail

Last metadata expiration check: 0:07:00 ago on Mon 19 Feb 2024
  02:42:24 AM UTC.
  Error:
   Problem: problem with installed package
  mariadb-server-3:10.5.22-1.el9_2.x86_64
    - package mariadb-server-3:10.5.22-1.el9_2.x86_64 from @System
  conflicts with mysql-server provided by
  mysql-server-8.0.32-1.el9_2.x86_64 from appstream
    - package mysql-server-8.0.32-1.el9_2.x86_64 from appstream
  conflicts with mariadb-server provided by
  mariadb-server-3:10.5.22-1.el9_2.x86_64 from @System
    - package mysql-server-8.0.32-1.el9_2.x86_64 from appstream
  conflicts with mariadb-server provided by
  mariadb-server-3:10.5.22-1.el9_2.x86_64 from appstream
    - package mariadb-server-3:10.5.22-1.el9_2.x86_64 from appstream
  conflicts with mysql-server provided by
  mysql-server-8.0.32-1.el9_2.x86_64 from appstream
    - package vpopmail-5.4.33-5.qt.el9.x86_64 from qmt-testing
  requires mysql-server, but none of the providers can be installed
    - conflicting requests

Thanks, gb



On 2/18/2024 8:59 PM, Remo Mattei
  wrote:


  
  
  
  
  
 Gary nah!! 


  
  

  Remo
  
  

  
   
  

  On Sunday, Feb 18, 2024 at 17:51, Gary Bowling  wrote:
  
  
Yea, but you're a lot smarter than I am! haha. 



gb



On 2/18/2024 8:38 PM, Remo
  Mattei wrote:


  
  
  
  
  
Hi I do not think so I just build two new qmail
  rocky9 using the script no issue whatsoever to migrate
  I had to do a little manic here and there not too bad
  so run the fresh install then migrate your users all
  good. 


  
  

  
--
  Sent from iPhone 
  
  
  

  
   
  

  On domenica, feb 18, 2024 at 17:26, Gary Bowling

wrote:
  
  


Thanks, yea I understand. It's just the script
  calls and tries to install mysql. In your
  migration a while back, Eric had said that what he
  would do is follow the migration steps on the web
  site. Which runs qt_install first. 

qt_install seems a bit out of date to me. I guess
  I just need to go through qt_install line by line
  and manually and make some changes for my
  environment.
Thanks, I'll work on it some more... 



gb



On 2/18/2024 8:19 PM,
  Remo Mattei wrote:


  
  
  
  
  
 You can use Maria or MySQL on the new one
  just dump and import  should be just
  fine. 


  
  

  
--
  Sent from iPhone 
  
  
  

  
   
  

  On domenica, feb 18, 2024 at 16:52, Gary
Bowling 
wrote:
  
  


AH, I also see that the qt_install tries
  to install mysql-server. My old toaster
  already has mariadb installed.
I'm trying to install a new Rocky 9 and
  migrate my old Centos 7 server over.



  

Re: [qmailtoaster] New Rocky Install

2024-02-18 Thread Remo Mattei
Gary nah!!

Remo

> On Sunday, Feb 18, 2024 at 17:51, Gary Bowling  (mailto:g...@gbco.us)> wrote:
>
> Yea, but you're a lot smarter than I am! haha.
>
>
>
>
>
>
>
> gb
>
>
>
>
>
>
> On 2/18/2024 8:38 PM, Remo Mattei wrote:
> > Hi I do not think so I just build two new qmail rocky9 using the script no 
> > issue whatsoever to migrate I had to do a little manic here and there not 
> > too bad so run the fresh install then migrate your users all good.
> >
> > --
> > Sent from iPhone
> >
> > > On domenica, feb 18, 2024 at 17:26, Gary Bowling  > > (mailto:g...@gbco.us)> wrote:
> > >
> > >
> > >
> > >
> > >
> > > Thanks, yea I understand. It's just the script calls and tries to install 
> > > mysql. In your migration a while back, Eric had said that what he would 
> > > do is follow the migration steps on the web site. Which runs qt_install 
> > > first.
> > >
> > >
> > >
> > > qt_install seems a bit out of date to me. I guess I just need to go 
> > > through qt_install line by line and manually and make some changes for my 
> > > environment.
> > >
> > >
> > > Thanks, I'll work on it some more...
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > gb
> > >
> > >
> > >
> > >
> > >
> > >
> > > On 2/18/2024 8:19 PM, Remo Mattei wrote:
> > > > You can use Maria or MySQL on the new one just dump and import  
> > > > should be just fine.
> > > >
> > > > --
> > > > Sent from iPhone
> > > >
> > > > > On domenica, feb 18, 2024 at 16:52, Gary Bowling  > > > > (mailto:g...@gbco.us)> wrote:
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > AH, I also see that the qt_install tries to install mysql-server. My 
> > > > > old toaster already has mariadb installed.
> > > > >
> > > > >
> > > > > I'm trying to install a new Rocky 9 and migrate my old Centos 7 
> > > > > server over.
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > I'm running the qt_install that was specified in the RHEL9 derivative 
> > > > > section on this page..
> > > > >
> > > > >
> > > > >
> > > > > http://www.qmailtoaster.com/index.html
> > > > >
> > > > >
> > > > > Which was the first step in the migration section listed here.
> > > > >
> > > > >
> > > > > http://www.qmailtoaster.com/migrate.html
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > I have my old server running and will install this one and make sure 
> > > > > it's all ok prior to cutting over. So I have some time. Any help 
> > > > > would be appreciated.
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Thanks, gb
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > On 2/18/2024 7:39 PM, Gary Bowling wrote:
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > Per the previous question about Rocky.. I'm in the process of doing 
> > > > > > a Rocky 9 install right now! So yes, I believe it's the way to go, 
> > > > > > although I'm not an expert.
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > My problem right now is... I ran qt_install per the instructions.
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > After a while, it pops up asking for a mysql password. I didn't 
> > > > > > know what to put in, tried the root password, it failed and now the 
> > > > > > script continues on. But there are errors because I wasn't able to 
> > > > > > put in the right password. So two questions.
> > > > > >
> > > > > >
> > > > > >
> > > > > > 1. What should the mysql password be?
> > > > > >
> > > > > >
> > > > > > 2. When it finishes, what should I do? I guess I could run it 
> > > > > > again, it's not operational yet, so maybe running again and putting 
> > > > > > in the right mysql password would get me back on track.
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > Please advise..
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > Thanks, gb
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > --
> > > > > > 
> > > > > > The Moderns on Spotify 
> > > > > > (https://distrokid.com/hyperfollow/themoderns/bbrs)
> > > > > > 
> > > > > > -
> > > > > >  To unsubscribe, e-mail: 
> > > > > > qmailtoaster-list-unsubscr...@qmailtoaster.com 
> > > > > > (mailto:qmailtoaster-list-unsubscr...@qmailtoaster.com) For 
> > > > > > additional commands, e-mail: 
> > > > > > qmailtoaster-list-h...@qmailtoaster.com 
> > > > > > (mailto:qmailtoaster-list-h...@qmailtoaster.com) 
> > > > > > -
> > > > > >  To unsubscribe, e-mail: 
> > > > > > qmailtoaster-list-unsubscr...@qmailtoaster.com 
> > > > > > (mailto:qmailtoaster-list-unsubscr...@qmailtoaster.com) For 
> > > > > > additional commands, e-mail: 
> > > > > > 

Re: [qmailtoaster] New Rocky Install

2024-02-18 Thread Gary Bowling


  
  
Yea, but you're a lot smarter than I am! haha. 



gb



On 2/18/2024 8:38 PM, Remo Mattei
  wrote:


  
  
  
  
  
Hi I do not think so I just build two new qmail rocky9
  using the script no issue whatsoever to migrate I had to do a
  little manic here and there not too bad so run the fresh
  install then migrate your users all good. 


  
  

  
--
  Sent from iPhone 
  
  
  

  
   
  

  On domenica, feb 18, 2024 at 17:26, Gary Bowling  wrote:
  
  


Thanks, yea I understand. It's just the script calls and
  tries to install mysql. In your migration a while back,
  Eric had said that what he would do is follow the
  migration steps on the web site. Which runs qt_install
  first. 

qt_install seems a bit out of date to me. I guess I just
  need to go through qt_install line by line and manually
  and make some changes for my environment.
Thanks, I'll work on it some more... 



gb



On 2/18/2024 8:19 PM, Remo
  Mattei wrote:


  
  
  
  
  
 You can use Maria or MySQL on the new one just
  dump and import  should be just fine. 


  
  

  
--
  Sent from iPhone 
  
  
  

  
   
  

  On domenica, feb 18, 2024 at 16:52, Gary Bowling

wrote:
  
  


AH, I also see that the qt_install tries to
  install mysql-server. My old toaster already has
  mariadb installed.
I'm trying to install a new Rocky 9 and migrate
  my old Centos 7 server over.



I'm running the qt_install that was specified in
  the RHEL9 derivative section on this page.. 

http://www.qmailtoaster.com/index.html
Which was the first step in the migration section
  listed here.
http://www.qmailtoaster.com/migrate.html


I have my old server running and will install
  this one and make sure it's all ok prior to
  cutting over. So I have some time. Any help would
  be appreciated.



Thanks, gb



On 2/18/2024 7:39 PM,
  Gary Bowling wrote:


  
  
  
  Per the previous question about Rocky.. I'm in
the process of doing a Rocky 9 install right
now! So yes, I believe it's the way to go,
although I'm not an expert.
  
  
  
  My problem right now is... I ran qt_install per
the instructions. 
  
  
  
  After a while, it pops up asking for a mysql
password. I didn't know what to put in, tried
the root password, it failed and now the script
continues on. But there are errors because I
wasn't able to put in the right password. So two
questions. 
  
  1. What should the mysql password be?
  2. When it finishes, what should I do? I guess
I could run it again, it's not operational yet,
so maybe running again and putting in the right
mysql password would get me back on track. 
  
  
  
  Please advise..
  
  
 

Re: [qmailtoaster] New Rocky Install

2024-02-18 Thread Remo Mattei
Hi I do not think so I just build two new qmail rocky9 using the script no 
issue whatsoever to migrate I had to do a little manic here and there not too 
bad so run the fresh install then migrate your users all good.

--
Sent from iPhone

> On domenica, feb 18, 2024 at 17:26, Gary Bowling  (mailto:g...@gbco.us)> wrote:
>
>
>
>
>
> Thanks, yea I understand. It's just the script calls and tries to install 
> mysql. In your migration a while back, Eric had said that what he would do is 
> follow the migration steps on the web site. Which runs qt_install first.
>
>
>
> qt_install seems a bit out of date to me. I guess I just need to go through 
> qt_install line by line and manually and make some changes for my environment.
>
>
> Thanks, I'll work on it some more...
>
>
>
>
>
>
>
> gb
>
>
>
>
>
>
> On 2/18/2024 8:19 PM, Remo Mattei wrote:
> > You can use Maria or MySQL on the new one just dump and import  should be 
> > just fine.
> >
> > --
> > Sent from iPhone
> >
> > > On domenica, feb 18, 2024 at 16:52, Gary Bowling  > > (mailto:g...@gbco.us)> wrote:
> > >
> > >
> > >
> > >
> > >
> > > AH, I also see that the qt_install tries to install mysql-server. My old 
> > > toaster already has mariadb installed.
> > >
> > >
> > > I'm trying to install a new Rocky 9 and migrate my old Centos 7 server 
> > > over.
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > I'm running the qt_install that was specified in the RHEL9 derivative 
> > > section on this page..
> > >
> > >
> > >
> > > http://www.qmailtoaster.com/index.html
> > >
> > >
> > > Which was the first step in the migration section listed here.
> > >
> > >
> > > http://www.qmailtoaster.com/migrate.html
> > >
> > >
> > >
> > >
> > >
> > >
> > > I have my old server running and will install this one and make sure it's 
> > > all ok prior to cutting over. So I have some time. Any help would be 
> > > appreciated.
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > Thanks, gb
> > >
> > >
> > >
> > >
> > >
> > >
> > > On 2/18/2024 7:39 PM, Gary Bowling wrote:
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Per the previous question about Rocky.. I'm in the process of doing a 
> > > > Rocky 9 install right now! So yes, I believe it's the way to go, 
> > > > although I'm not an expert.
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > My problem right now is... I ran qt_install per the instructions.
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > After a while, it pops up asking for a mysql password. I didn't know 
> > > > what to put in, tried the root password, it failed and now the script 
> > > > continues on. But there are errors because I wasn't able to put in the 
> > > > right password. So two questions.
> > > >
> > > >
> > > >
> > > > 1. What should the mysql password be?
> > > >
> > > >
> > > > 2. When it finishes, what should I do? I guess I could run it again, 
> > > > it's not operational yet, so maybe running again and putting in the 
> > > > right mysql password would get me back on track.
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Please advise..
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Thanks, gb
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > --
> > > > 
> > > > The Moderns on Spotify 
> > > > (https://distrokid.com/hyperfollow/themoderns/bbrs)
> > > > 
> > > > - 
> > > > To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com 
> > > > (mailto:qmailtoaster-list-unsubscr...@qmailtoaster.com) For additional 
> > > > commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com 
> > > > (mailto:qmailtoaster-list-h...@qmailtoaster.com) 
> > > > - 
> > > > To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com 
> > > > (mailto:qmailtoaster-list-unsubscr...@qmailtoaster.com) For additional 
> > > > commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com 
> > > > (mailto:qmailtoaster-list-h...@qmailtoaster.com) 
> > > > - 
> > > > To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com 
> > > > For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com

Re: [qmailtoaster] New Rocky Install

2024-02-18 Thread Gary Bowling


  
  


Thanks, yea I understand. It's just the script calls and tries to
  install mysql. In your migration a while back, Eric had said that
  what he would do is follow the migration steps on the web site.
  Which runs qt_install first. 

qt_install seems a bit out of date to me. I guess I just need to
  go through qt_install line by line and manually and make some
  changes for my environment.
Thanks, I'll work on it some more... 



gb



On 2/18/2024 8:19 PM, Remo Mattei
  wrote:


  
  
  
  
  
 You can use Maria or MySQL on the new one just dump and
  import  should be just fine. 


  
  

  
--
  Sent from iPhone 
  
  
  

  
   
  

  On domenica, feb 18, 2024 at 16:52, Gary Bowling  wrote:
  
  


AH, I also see that the qt_install tries to install
  mysql-server. My old toaster already has mariadb
  installed.
I'm trying to install a new Rocky 9 and migrate my old
  Centos 7 server over.



I'm running the qt_install that was specified in the
  RHEL9 derivative section on this page.. 

http://www.qmailtoaster.com/index.html
Which was the first step in the migration section listed
  here.
http://www.qmailtoaster.com/migrate.html


I have my old server running and will install this one
  and make sure it's all ok prior to cutting over. So I have
  some time. Any help would be appreciated.



Thanks, gb



On 2/18/2024 7:39 PM, Gary
  Bowling wrote:


  
  
  
  Per the previous question about Rocky.. I'm in the
process of doing a Rocky 9 install right now! So yes, I
believe it's the way to go, although I'm not an expert.
  
  
  
  My problem right now is... I ran qt_install per the
instructions. 
  
  
  
  After a while, it pops up asking for a mysql password.
I didn't know what to put in, tried the root password,
it failed and now the script continues on. But there are
errors because I wasn't able to put in the right
password. So two questions. 
  
  1. What should the mysql password be?
  2. When it finishes, what should I do? I guess I could
run it again, it's not operational yet, so maybe running
again and putting in the right mysql password would get
me back on track. 
  
  
  
  Please advise..
  
  
  Thanks, gb
  
  
  
  -- 

 The Moderns on Spotify 

  
- To
  unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
  For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com

- To
unsubscribe, e-mail:
qmailtoaster-list-unsubscr...@qmailtoaster.com For
additional commands, e-mail:
qmailtoaster-list-h...@qmailtoaster.com 

  

  


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] New Rocky Install

2024-02-18 Thread Remo Mattei
You can use Maria or MySQL on the new one just dump and import  should be 
just fine.

--
Sent from iPhone

> On domenica, feb 18, 2024 at 16:52, Gary Bowling  (mailto:g...@gbco.us)> wrote:
>
>
>
>
>
> AH, I also see that the qt_install tries to install mysql-server. My old 
> toaster already has mariadb installed.
>
>
> I'm trying to install a new Rocky 9 and migrate my old Centos 7 server over.
>
>
>
>
>
>
>
> I'm running the qt_install that was specified in the RHEL9 derivative section 
> on this page..
>
>
>
> http://www.qmailtoaster.com/index.html
>
>
> Which was the first step in the migration section listed here.
>
>
> http://www.qmailtoaster.com/migrate.html
>
>
>
>
>
>
> I have my old server running and will install this one and make sure it's all 
> ok prior to cutting over. So I have some time. Any help would be appreciated.
>
>
>
>
>
>
>
> Thanks, gb
>
>
>
>
>
>
> On 2/18/2024 7:39 PM, Gary Bowling wrote:
> >
> >
> >
> >
> >
> > Per the previous question about Rocky.. I'm in the process of doing a Rocky 
> > 9 install right now! So yes, I believe it's the way to go, although I'm not 
> > an expert.
> >
> >
> >
> >
> >
> >
> >
> > My problem right now is... I ran qt_install per the instructions.
> >
> >
> >
> >
> >
> >
> >
> > After a while, it pops up asking for a mysql password. I didn't know what 
> > to put in, tried the root password, it failed and now the script continues 
> > on. But there are errors because I wasn't able to put in the right 
> > password. So two questions.
> >
> >
> >
> > 1. What should the mysql password be?
> >
> >
> > 2. When it finishes, what should I do? I guess I could run it again, it's 
> > not operational yet, so maybe running again and putting in the right mysql 
> > password would get me back on track.
> >
> >
> >
> >
> >
> >
> >
> > Please advise..
> >
> >
> >
> >
> >
> >
> > Thanks, gb
> >
> >
> >
> >
> >
> >
> > --
> > 
> > The Moderns on Spotify (https://distrokid.com/hyperfollow/themoderns/bbrs)
> > 
> > - To 
> > unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com 
> > (mailto:qmailtoaster-list-unsubscr...@qmailtoaster.com) For additional 
> > commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com 
> > (mailto:qmailtoaster-list-h...@qmailtoaster.com) 
> > - To 
> > unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com For 
> > additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com

Re: [qmailtoaster] New Rocky Install

2024-02-18 Thread Gary Bowling


  
  


AH, I also see that the qt_install tries to install mysql-server.
  My old toaster already has mariadb installed.
I'm trying to install a new Rocky 9 and migrate my old Centos 7
  server over.



I'm running the qt_install that was specified in the RHEL9
  derivative section on this page.. 

http://www.qmailtoaster.com/index.html
Which was the first step in the migration section listed here.
http://www.qmailtoaster.com/migrate.html


I have my old server running and will install this one and make
  sure it's all ok prior to cutting over. So I have some time. Any
  help would be appreciated.



Thanks, gb



On 2/18/2024 7:39 PM, Gary Bowling
  wrote:


  
  
  
  Per the previous question about Rocky.. I'm in the process of
doing a Rocky 9 install right now! So yes, I believe it's the
way to go, although I'm not an expert.
  
  
  
  My problem right now is... I ran qt_install per the
instructions. 
  
  
  
  After a while, it pops up asking for a mysql password. I didn't
know what to put in, tried the root password, it failed and now
the script continues on. But there are errors because I wasn't
able to put in the right password. So two questions. 
  
  1. What should the mysql password be?
  2. When it finishes, what should I do? I guess I could run it
again, it's not operational yet, so maybe running again and
putting in the right mysql password would get me back on track.

  
  
  
  Please advise..
  
  
  Thanks, gb
  
  
  
  -- 

 The Moderns on Spotify 

  
-
  To unsubscribe, e-mail:
  qmailtoaster-list-unsubscr...@qmailtoaster.com
  For additional commands, e-mail:
  qmailtoaster-list-h...@qmailtoaster.com

  


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com