为GitHub 账户访问添加 SSH keys
按照如下步骤添加:
ssh-keygen -t rsa -C "邮箱地址"
其中的邮箱地址是注册Github账户的邮箱地质
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
直接回车即可
系统会自动随即生成密钥
执行下列命令:
eval "$(ssh-agent -s)"
将密钥保存在 /.ssh/id_rsa中
ssh-add ~/.ssh/id_rsa
打开/.ssh/id_rsa文件
vim ~/.ssh/id_rsa.pub
复制/.ssh/id_rsa文件中的内容
将该内容添加到github的SSH keys中,并保存
验证是否添加成功
ssh -T git@github.com
如果终端提示"You've successfully authenticated",则说明添加成功。
以后向Github上体交代码时,只需输入上述添加过的password即可
安装mongodb
更新软件源
sudo apt-get update
安装mongodb
sudo apt-get install mongodb
查看mongodb版本
mongo -version
启动mongodb
mongo
退出mongodb
exit