R2rho
11/20/2024, 4:06 PMsudo curl https://management.umh.app/static/automatic/install.sh ....
But then I get errors regarding the /tmp/ location as permission denied. I tried running the full set of commands as sudo:
sudo bash -c "
curl https://management.umh.app/static/automatic/install.sh -o /tmp/install.sh &&
chmod +x /tmp/install.sh &&
....
But I'm getting:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0Warning: Failed to create the file /tmp/install.sh: Permission denied
1 107k 1 1360 0 0 6238 0 0:00:17 --:--:-- 0:00:17 6210
curl: (23) Failure writing output to destination
The only solution was to switch to a different folder under root:
sudo bash -c "
curl https://management.umh.app/static/automatic/install.sh -o /root/install.sh &&
chmod +x /root/install.sh &&
...
But I'm not sure what the consequences of this are and if it will affect the stability of the installation. I can't seem to find any guidance on this. When I installed it without sudo as user rocky, I got a bunch of errors in the Management Console regarding the cluster infrastructure. What is the right solution here?R2rho
11/20/2024, 4:08 PMFerdinand
11/20/2024, 4:15 PMsudo -i
to elevate yourselfFerdinand
11/20/2024, 4:16 PMR2rho
11/20/2024, 4:27 PMR2rho
11/20/2024, 4:45 PM