Setting up multiple GitHub accounts on one computer
Configuring multiple GitHub accounts with SSH connections
A Bit everyday A Byte every week
Configuring multiple GitHub accounts with SSH connections
Enable Jenkins to perform remote operations on a remote host through SSH, replacing manual deployment.
In a non-automated deployment scenario, manually connecting to the server host’s internals is required every time.
Executing deployment commands or running deployment command executables not only involves inconvenience but also carries the risk of human error.
With Jenkins’ pipeline, we can replace manual execution, making deployments easier and more pleasant.
Using SSH keys for logging into remote hosts instead of passwords
Normally, logging into a server involves using a username and password,
but passwords can be compromised through interception or sharing.
The security level is not as robust as using SSH keys, which also eliminate the need for manual password entry each time.