This article contains the workaround for the error “Install/Update certificate failed on Software caused connection abort: recv failed.”
As a workaround, you might have to use a third party tool such as WinSCP, or Filezilla for file transfers, because the Graphical User interface does not recognize the port change.
Or, you have to change back to the default port 22 for the sshd process.
The following steps are used to change the SSH Daemon to listen to a non-default port:
Open the command line interface of the appliance.
Run the following command to switch to shell prompt:
shell
Run the following command using a text editor:
cmd ee /etc/sshd_config
Change the number 22 after Port to the required non-default port.
Press the Esc key on the keyboard to save changes.
Run the following command to view the PID of the sshd process:
cat /var/run/sshd.pid
Run the following command to terminate the sshd process:
kill -9 <PID>
Run the following command to restart the process:
/usr/sbin/sshd -f /etc/sshd_config
Run the following command to verify if the process is active:
netstat -an |grep <PID> | grep LISTEN