ssh admin1@tut1.globusdemo.org
. Your 'adminN' user has passwordless sudo privileges.Commands for creating the endpoint and adding a data transfer node:$ ssh adminN@<YOUR_EC2_MACHINE_ADDRESS>
curl -LOs https://downloads.globus.org/globus-connect-server/stable/installers/repo/deb/globus-repo_latest_all.deb
sudo dpkg -i globus-repo_latest_all.deb
sudo apt-key add /usr/share/globus-repo/RPM-GPG-KEY-Globus
sudo apt-get update
sudo apt-get --assume-yes install globus-connect-server54
At this point you should have a functioning endpoint and can run the following commands to create a POSIX storage gateway and a mapped collection:globus-connect-server endpoint setup 'Your Endpoint Name' --organization 'Your Organization Name' \
--client-id <your_GCS_client_ID> --owner <your_Globus_identity>
sudo globus-connect-server node setup --client-id <your_GCS_client_ID>
sudo systemctl restart apache2
globus-connect-server login localhost
globus-connect-server endpoint show
globus-connect-server storage-gateway create posix 'Your Storage Gateway Name' \
--domain <your_domain.org> --authentication-timeout-mins 1440
globus-connect-server collection create <your_storage_gateway_ID> / 'Your Mapped Collection Name'
ssh dev1@tut1.globusdemo.org
. The 'devN' user has passwordless sudo privileges.