mirror of
https://github.com/onceupon/Bash-Oneliner
synced 2024-11-22 12:43:39 +00:00
System
- Set the default user and key for a host when using SSH
This commit is contained in:
parent
27da2e897b
commit
d6a31731d7
1 changed files with 10 additions and 1 deletions
11
README.md
11
README.md
|
@ -1378,6 +1378,15 @@ ssh -A <username>@<IP_of_serverA>
|
||||||
ssh <username>@<IP_of_serverB>
|
ssh <username>@<IP_of_serverB>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
##### Set the default user and key for a host when using SSH
|
||||||
|
```bash
|
||||||
|
# add the following to ~/.ssh/config
|
||||||
|
Host myserver
|
||||||
|
User myuser
|
||||||
|
IdentityFile ~/path/to/mykey.pem
|
||||||
|
|
||||||
|
# Next, you could run "ssh myserver" instead of "ssh -i ~/path/to/mykey.pem myuser@myserver"
|
||||||
|
```
|
||||||
|
|
||||||
##### Follow the most recent logs from service
|
##### Follow the most recent logs from service
|
||||||
```bash
|
```bash
|
||||||
|
@ -1565,7 +1574,7 @@ passwd username
|
||||||
|
|
||||||
##### Edit environment setting (e.g. alias)
|
##### Edit environment setting (e.g. alias)
|
||||||
```bash
|
```bash
|
||||||
1. joe ~/.bash_profile
|
1. vi ~/.bash_profile
|
||||||
2. alias pd="pwd" //no more need to type that 'w'!
|
2. alias pd="pwd" //no more need to type that 'w'!
|
||||||
3. source ~/.bash_profile
|
3. source ~/.bash_profile
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue