Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

1. If you are using CentOS 7, add the epel repository.

Code Block
languagetext
yum -y install epel-release

If you are using RHEL 7, use the following code to add the epel repository. Otherwise, continue to step 2.

...

...

Code Block
languagetext
# Credentials given by IFI to access updates
CD_USER=test
CD_PASSWORD=test

7. Enable the service. If necessary, adjust the code to reflect the version you are using.

Code Block
languagetext
# Amazon
chkconfig apgupd
# CentOS 7/ RHEL 7 
systemctl enable apgupd.service

8. Start the service. If necessary, adjust the code to reflect the version you are using.

Code Block
languagetext
# Amazon
service apgupd start
# CentOS 7 / RHEL 7
systemctl start apgupd.service

...