Author Topic: BUG migration from CPanel  (Read 2152 times)

0 Members and 1 Guest are viewing this topic.

Offline
***
BUG migration from CPanel
« on: February 21, 2023, 01:27:35 PM »
https://i.vgy.me/NC6qnn.png

chown not set to owner, this make the quota not calculated

migration using cpanel migration tools

Offline
***
Re: BUG migration from CPanel
« Reply #1 on: February 21, 2023, 04:10:55 PM »

Offline
****
Re: BUG migration from CPanel
« Reply #2 on: March 05, 2023, 03:35:18 AM »
After a cPanel account import (and mail rsync), I had to run these 2 scripts to fix the mail import and permissions:
Code: [Select]
#!/bin/bash
# fix CWP Mail import
for user in $(ls /var/vmail/domain.com)
do
cd /var/vmail/domain.com/$user
find  .  -type d -exec chmod 755 {} \;
find  .  -type f -exec chmod 644 {} \;
rename 'vps1.domain.com' 'new.hostname.com' .*/cur/*
rename 'vps1.domain.com' 'new.hostname.com' cur/*
echo "fixed $user"
done
Fix permissions on $HOME:
Code: [Select]
#!/bin/bash
# fix CWP User $HOME

chown $1.$1 /home/$1
chmod 755 /home/$1
find  /home/$1/public_html  -type d -exec chmod 755 {} \;
find  /home/$1/public_html  -type f -exec chmod 644 {} \;
rm -rf /home/$1/home
echo "fixed $1 account."

Offline
***
Re: BUG migration from CPanel
« Reply #3 on: March 06, 2023, 01:51:26 AM »
After a cPanel account import (and mail rsync), I had to run these 2 scripts to fix the mail import and permissions:
Code: [Select]
#!/bin/bash
# fix CWP Mail import
for user in $(ls /var/vmail/domain.com)
do
   cd /var/vmail/domain.com/$user
   find  .  -type d -exec chmod 755 {} \;
   find  .  -type f -exec chmod 644 {} \;
   rename 'vps1.domain.com' 'new.hostname.com' .*/cur/*
   rename 'vps1.domain.com' 'new.hostname.com' cur/*
echo "fixed $user"
done
Fix permissions on $HOME:
Code: [Select]
#!/bin/bash
# fix CWP User $HOME

chown $1.$1 /home/$1
chmod 755 /home/$1
find  /home/$1/public_html  -type d -exec chmod 755 {} \;
find  /home/$1/public_html  -type f -exec chmod 644 {} \;
rm -rf /home/$1/home
echo "fixed $1 account."




until today ? (new version of cwp) ?
and
'vps1.domain.com = old hosts? (cpanel? )

Offline
****
Re: BUG migration from CPanel
« Reply #4 on: March 06, 2023, 06:43:33 AM »
That script was done during the COVID quarantine lockdown in 2020. I took the opportunity to migrate all my cPanel servers to CWP :)
I reported the bugs I encountered and submitted the script to the dev team, so hopefully they applied some of that to the migration script.

Yes, the vps1.domain.com was an old hostname from cPanel. Funny, I had stepped from regular hosting, to VPS, to advanced dedicated, then stepped down to dedicated, then down to a high end VPS at the end of my cPanel time. So I had about 5 mixed hostnames in the cur directories, so I wanted to normalize them on the new server under CWP. So I only showed one example in the posted script. In reality I had 5 hostnames to contend with!

Offline
***
Re: BUG migration from CPanel
« Reply #5 on: March 09, 2023, 12:52:43 PM »
That script was done during the COVID quarantine lockdown in 2020. I took the opportunity to migrate all my cPanel servers to CWP :)
I reported the bugs I encountered and submitted the script to the dev team, so hopefully they applied some of that to the migration script.

Yes, the vps1.domain.com was an old hostname from cPanel. Funny, I had stepped from regular hosting, to VPS, to advanced dedicated, then stepped down to dedicated, then down to a high end VPS at the end of my cPanel time. So I had about 5 mixed hostnames in the cur directories, so I wanted to normalize them on the new server under CWP. So I only showed one example in the posted script. In reality I had 5 hostnames to contend with!



can't imagine how complicated that is. thanks for sharing, I also experienced the same thing. the difference is that I haven't been able to get up again because my trust in me has decreased with the use of CWP. in Indonesia CWP is not popular.

Your experience is the solution to my problem. Thank You (write by google translate :D  )