alter table `new_transport_lines` add column `id` int not null auto_increment KEY FIRST
Ярлыки
- Задачки 3
- Поиск маршрутов 1
- Amazon 2
- apache 2
- Celery 3
- curl 1
- Django 9
- english 1
- fabric 1
- GLPK 1
- HTML 1
- java 6
- Job 1
- JS 1
- knockout JS 3
- LP 2
- mongo 1
- MySQL 9
- neo4j 5
- Oracle 1
- parallel 1
- PostgreSQL 3
- PsyCo 1
- PyQt 17
- Python 30
- routers finding 3
- Soft 1
- SSH 4
- supervisor 1
- SVG 2
- SVN 1
- TEX 1
- Ubuntu 15
- web 1
- wsgi 1
среда, 18 июля 2012 г.
Could not open a connection to your authentication agent
from here: http://funkaoshi.com/blog/could-not-open-a-connection-to-your-authentication-agent
SSH private-keys are usually stored encrypted on the computers they are stored on. A pass-phrase is used to decrypt them when they are to be used. Since most people use SSH public-private key-pairs to get around typing in passwords all the time, the ssh-agent daemon exists to store decrypted private-keys you plan on using in a given session. The thing most people get tripped up on when using
SSH private-keys are usually stored encrypted on the computers they are stored on. A pass-phrase is used to decrypt them when they are to be used. Since most people use SSH public-private key-pairs to get around typing in passwords all the time, the ssh-agent daemon exists to store decrypted private-keys you plan on using in a given session. The thing most people get tripped up on when using
ssh-agent
is that what the program outputs, some borne or csh shell commands, needs to be run. It may look like ssh-agent has set some variables for you, but it has in fact done no such thing. If you call ssh-add
without processing ssh-agent
’s
output, it will complain it is unable to open a connection to your
authentication agent. The most straightforward way to run ssh-agent on
the command line is as follows: eval `ssh-agent`
. After doing this, calls to ssh-add
should succeed without error.
Подписаться на:
Сообщения Atom