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

1 comment:

  1. I liked your work and, as a result, the manner you presented this content about Cpanel Reseller.It is a valuable paper for us. Thank you for sharing this blog with us.

    ReplyDelete

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...