Introduction
cPanel publishes a change log for all EasyApache updates that you can use to track changes:
cPanel's Additional Change Logs (Including EasyApache)
Whatever changes you find published there can be obtained on a standard cPanel server by running the update script /scripts/upcp
, or simply the yum update
command via SSH as the root user.
However, when cPanel is installed on CloudLinux, all updates are provided by the CloudLinux repositories which lag behind cPanel's official publish date by about 2 weeks in most cases.
If you're on a CloudLinux server and cPanel has published a change to EasyApache that you're waiting on, you can use the following procedure to determine if that change has been applied to your server.
Procedure
- Open the Easy Apache change log page that contains the change that you are interested in:
cPanel's Additional Change Logs (Including EasyApache) - Note the date that the change is listed under. You should expect the change to hit CloudLinux about two weeks after the published date on the cPanel ChangeLogs.
- Note the package name that the change is listed under. For example:
ea-nginx
,ea-apache2-config
, etc. - Note the case ID associated with the change. For example:
EA-9924
,ZC-9058
, etc - Login to your CloudLinux cPanel server via SSH or Terminal as the root user
- Run an update to ensure any available changes have been installed:
/scripts/upcp
- or -
yum update - Use the
--changelog
option for the rpm command to print the change log of the associated package that you noted from step 3:rpm -q --changelog ea-nginx
NOTE: The dates printed in the RPM change log represent the date when the developer finished writing that code, not when cPanel officially published the change. - Search the output of the rpm command for the case ID that you noted in step 4 above. If you cannot find that case ID, it means that CloudLinux has not yet published the change for your server.
- Optionally, you can filter the output of the change log with grep:
rpm -q --changelog ea-nginx | grep EA-9924