Skip to content

Commit

Permalink
added rsa key gen
Browse files Browse the repository at this point in the history
  • Loading branch information
Rahul Kumar committed Jan 23, 2019
1 parent 163810f commit cc70d01
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,21 @@ https://stackoverflow.com/questions/41378461/how-to-use-models-from-keras-applic

## Supervisor commands
http://www.onurguzel.com/supervisord-restarting-and-reloading/

## Generate ssh keys
check if you have already ssh key generated.
```cmd
cat ~/.ssh/id_ras.pub
```
Generate if not present already.

```cmd
cd ~
ssh-keygen -t rsa
```
access public key at ~/.ssh/id_rsa.pub

```cmd
cat ~/.ssh/id_rsa.pub
```

0 comments on commit cc70d01

Please sign in to comment.