로컬 Vagrant 인스턴스에서 실행되는 Drupal 사이트에 연결하기 위해 간단한 drush 별칭을 작성하려고합니다.
파일이라는 파일에 다음이 있습니다 ~/.drush/l.aliases.drushrc.php
.
$aliases['o'] = array(
'parent' => 'l',
'root' => '/vagrant/docroot',
'remote-host' => '127.0.0.1',
'remote-user' => 'vagrant',
'ssh-options' => '-p 2222 -i ~/.vagrant.d/insecure_private_key',
'uri' => '127.0.0.1:8080',
);
별명이 발견되었습니다. drush sa
보고:
l
l.o
그러나 내가 drush @l.o status
원격 호스트에 연결하지 않으면 :
PHP executable : /usr/local/bin/php
PHP configuration : /usr/local/etc/php/5.3/php.ini
PHP OS : Darwin
Drush version : 6.1.0
Drush configuration :
이 명령이 성공적으로 방랑자에 연결되어 있음을 확인했습니다.
ssh vagrant@127.0.0.1 -p 2222 -i ~/.vagrant.d/insecure_private_key
내가 알 수있는 한 디버깅 출력에는 SSH 명령이 표시되지 않습니다.
SIG-106:ilob justin$ drush --debug @l.o status
Bootstrap to phase 0. [0 sec, 3.78 MB] [bootstrap]
Drush bootstrap phase : _drush_bootstrap_drush() [0.01 sec, 3.98 MB] [bootstrap]
Loaded alias @l.o from file /Users/justin/.drush/l.aliases.drushrc.php [0.01 sec, 3.99 MB] [notice]
Cache MISS cid: 6.1.0-commandfiles-0-807b6772846e18b2741e8d5b7119b4cc [0.01 sec, 4 MB] [debug]
Cache SET cid: 6.1.0-commandfiles-0-807b6772846e18b2741e8d5b7119b4cc [0.01 sec, 4.02 MB] [debug]
Bootstrap to phase 0. [0.05 sec, 9.56 MB] [bootstrap]
Found command: core-status (commandfile=core) [0.08 sec, 9.56 MB] [bootstrap]
Loading outputformat engine. [0.13 sec, 9.6 MB] [notice]
Calling hook drush_core_status [0.14 sec, 9.65 MB] [debug]
Returned from hook drush_core_status [0.14 sec, 9.66 MB]
나는 바보 같은 짓을해야한다는 것을 알고 있지만 그것을 볼 수는 없습니다.
drush --debug @l.o status
보여줍니까? 정확한 ssh 명령은 출력에 묻혀 있어야합니다.