## App Connector configuration ```bash #Stop the App Connector service which was auto-started at boot time systemctl stop zpa-connector #Create a file from the App Connector provisioning key created in the ZPA Admin Portal #Make sure that the provisioning key is between double quotes echo "<insert provisioning key>" > /opt/zscaler/var/provision_key #Run a yum update to apply the latest patches yum update -y #Start the App Connector service to enroll it in the ZPA cloud systemctl start zpa-connector #Wait for the App Connector to download latest build sleep 60 #Stop and then start the App Connector for the latest build systemctl stop zpa-connector systemctl start zpa-connector ```