Ubuntu 16.04.2
Please, be informed that I'm a newbie, and the question may be clumsy. I've read some theoretical materials, but don't have enough practice.
Let's suppose, we have a VPS bought from a hoster.
I'm afraid of accessing via ssh a bit. There may be situations when one may spoil everything and can't access (for example organize iptables to deny everything, or just loose one's private key etc.).
Let's suppose that we want to update OpenSSL.
Well, as far as I can understand, we have to download it, extract, configure and make. Then reboot the server to be on the safe side.
What if ssh will not work? So, we rebooted, and can't access. I'm afraid that my hoster will not help me to restore access to the server.
Maybe I should open telnet access in UFW while I'm reinstalling OpenSSL? It's not safe.
Maybe I should pay a bit more money to my ISP for a static IP, organize UFW to allow access via Telnet only from my static IP? It's a bit better.
Can the control panel (like ISP manager) be useful here?
Well, could you tell me what is the right way of updating OpenSSL.
sudo apt upgrade ssl
doesn't upgrade ssl, it upgrades all packages on the system. The correct way to check issudo apt-get install openssl
and it will tell you if it is the newest version or not – John Allard Nov 28 '18 at 20:06