Showing posts with label Server. Show all posts
Showing posts with label Server. Show all posts

Friday, November 6, 2020

Transfer and restore cPanel using command in WHM root account


This vidieo is cPanel transfer and restore technique. You can easily transter. and restore your cPanel without any website visiting or email service interruption.
A sample restore command:
/scripts/restorepkg/home/<<YourWHMUsername>>/backup-11.6.2020_23-26-09_<<YourcPanelUsername>>.tar.gz





Sunday, December 8, 2019

How to Install cPanel and WHM in CentOS 7

# hostnamectl set-hostname cpanel.tecmint.lan

#yum groupinstall base -y

# curl -o latest -L https://securedownloads.cpanel.net/latest

# sh latest

Reset WordPress Admin Password via MySQL Command Line

mysql -umyUserName -paVeryStrongPassword show databases;   use myWordpressDB; SELECT ID, user_login, user_pass FROM wp_users; UPDATE wp_user...