Update Cpanel License Key
To check if your server IP has license, go to https://verify.cpanel.net/app/verify To update cpanel server license, run Example Back to Cpanel Server
To check if your server IP has license, go to https://verify.cpanel.net/app/verify To update cpanel server license, run Example Back to Cpanel Server
To install PHP 5.6 on CentOS 7, enable EPEL repo and remi repo yum install epel-release -y rpm -ivh https://rpms.remirepo.net/enterprise/remi-release-7.rpm Install yum-utils…
Install a software with yum yum install PKG_NAME Uninstall a software yum remove Example for installing php and GD yum install php…
EPEL (Extra Packages for Enterprise Linux) provide additional software for CentOS and RHEL. You can find more information about EPEL at http://fedoraproject.org/wiki/EPEL…
When running yum update on CentOS 7 server, i get following error [root@server2 yum.repos.d]# yum update curl Loaded plugins: fastestmirror Loading mirror…
To install Vagrant on CentOS, go to https://www.vagrantup.com/downloads Get link to latest version, then run “rpm -ivh URL_TO_RPM_FILE”. At time of writing…
bind is a DNS server. To install bind on CentOS 7, run yum install bind bind-utils -y Enable bind to start on…
To list all packages available on a specific repo, run yum –disablerepo=”*” –enablerepo=”REPO_NAME_HERE” list available You can get list of all available…
To install PHP 7. you need to first enable epel and remi repo. yum install -y epel-release rpm -Uvh http://rpms.remirepo.net/enterprise/remi-release-7.rpm Remove existing…
To verify a package installed on system, you can use Example Here bind package have /etc/named.conf file modified. To verify all packages…
On rebooting the CentOS 7 server, changes made to resolv.conf is lost. This is because one of the network interface is configured…
ClamAV is provided by the EPEL repo. Install epel repo yum install -y epel-release Install ClamAV with yum install clamav Back to…