Resetting email account password from Command line in cPanel 1) Login to the server as root via SSH 2) Run the command “openssl” and you will see this: [email protected] [~]# openssl OpenSSL> 3) Now in the OpenSSL prompt give the command : passwd -1 “your_new_email_password” [email protected] [~]# openssl OpenSSL> passwd -1 “[email protected]” $1$m4pq941w/j$1KYI5VwHl8C6h9H6ScTFNWy/ OpenSSL> quit Please note …
Month: March 2018
cPanel EasyApache 4 Installing Redis and Redis PHP extension
cPanel EasyApache 4 Installing Redis and Redis PHP extension Installing the Redis daemon: for CentOS 6/RHEL 6 rpm -ivh https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm yum -y install redis –enablerepo=remi –disableplugin=priorities chkconfig redis on service redis start for CentOS 7/RHEL 7 rpm -ivh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm yum -y install redis –enablerepo=remi –disableplugin=priorities systemctl enable redis systemctl …