SSH遇见的问题

  • Gtk-WARNING **: cannot open display:

在从bitbucket仓库向linux服务器clone项目的时候出现了一个问题:

(gnome-ssh-askpass:): Gtk-WARNING **: cannot open display:

只要在terminal里输入

unset SSH_ASKPASS

就可以了

不过这种方法智能在当前终端有效,如果想一直有效,只需要在~/.bash_profile中添加一行:

export GIT_ASKPASS=

就行了

  • scp问题

在服务器间用scp传文件的时候出现一个问题:

Bad owner or permissions on /home/ldmc_1049/.ssh/config

这是说.ssh/config权限问题,只要修改权限就行了

chmod  ~/.ssh/config
上一篇:Echarts柱状图百分比显示


下一篇:6.Python使用Pandas小案例