Build Your Infrastructure With EZSCALE
From homelabers to professional business to enterprise, we’ve got you covered!
To allow our staff access to your server through SSH, simply run the following command. This will install our support SSH key and, for non-root users, configure temporary sudo access for troubleshooting.
Adding access (default):
curl -fsSL https://support.ezscale.cloud/access.sh | bash
Removing access:
curl -fsSL https://support.ezscale.cloud/access.sh | bash -s -- remove
Checking access:
curl -fsSL https://support.ezscale.cloud/access.sh | bash -s -- check
For a specific user:
curl -fsSL https://support.ezscale.cloud/access.sh | bash -s -- --user <username> add
Alternative (wget): If curl is not available, you can use wget instead:
wget -qO- https://support.ezscale.cloud/access.sh | bash
Note: When removing access, the script will also revoke any temporary sudo permissions that were granted during the add step.
Add Comment