Homestead는 루트로 명령을 실행합니다.

Homestead는 루트로 명령을 실행합니다.

내 홈스테드 구성에서는 after.sh자동으로 xdebug를 구성하여 스크립트를 자동으로 구성하여 즉시 업데이트하거나 다시 생성할 때 항상 수동으로 다시 실행하지 않고도 구성을 적용할 수 있도록 하려고 합니다.

스크립트는 다음과 같습니다.

#!/bin/sh

echo "Configuring Xdebug"
ip=$(netstat -rn | grep "^0.0.0.0 " | cut -d " " -f10)
xdebug_config="/etc/php/$(php -v | head -n 1 | awk '{print $2}'|cut -c 1-3)/mods-available/xdebug.ini"

echo "IP for the xdebug to connect back: ${ip}"
echo "Xdebug Configuration path: ${xdebug_config}"
echo "Port for the Xdebug to connect back: ${XDEBUG_PORT}"
echo "Optimize for ${IDE} ide"
first_line=$(head -n1 ${xdebug_config})

if [ $IDE=='atom' ]; then
  echo "Configuring xdebug for ATOM ide"
  sudo cat <<EOL >${xdebug_config}
${first_line}
xdebug.remote_enable = 1
xdebug.remote_host=${ip}
xdebug.remote_port = ${XDEBUG_PORT}
xdebug.max_nesting_level = 1000
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_autostart=true
xdebug.remote_log=xdebug.log
EOL
fi

내 것은 Homestead.yml다음과 같습니다 :

ip: 192.168.10.10
memory: 2048
cpus: 1
provider: virtualbox
authorize: ~/.ssh/id_rsa.pub
timeout: 120

keys:
    - ~/.ssh/id_rsa
folders:
    -
        map: /home/pcmagas/Kwdikas/php/apps/ellakcy_member_app/
        to: /home/vagrant/code
sites:
    -
        map: homestead.test
        to: /home/vagrant/code/web
        type: symfony

databases:
    - homestead
    - homestead-test

variables:
  - key: database_host
    value: 127.0.0.1
  - key: database_port
    value: 3306
  - key: database_name
    value: homestead
  - key: database_user
    value: homestead
  - key: database_password
    value: secret
  - key: smtp_host
    value: localhost
  - key: smtp_port
    value: 1025
  - key: smtp_user
    value: [email protected]
  - key: IDE
    value: atom
  - key: XDEBUG_PORT
    value: 9091

name: ellakcy-member-app
hostname: ellakcy-member-app

다음과 같은 추가 환경 변수를 설정했습니다.

  - key: IDE
    value: atom
  - key: XDEBUG_PORT
    value: 9091

그래서 xdebug에 대한 세분화된 구성을 제공할 수 있습니다.

그러나 실행하면 vagrant provision다음과 같은 오류가 발생합니다(공간을 절약하기 위해 전체 출력을 nbot에 넣었습니다).

ellakcy-member-app:/tmp/vagrant-shell:37:/tmp/vagrant-shell: /etc/php/7.2/mods-available/xdebug.ini를 생성할 수 없습니다: 권한이 거부되었습니다.

이것은 그의 명령으로 인해 발생했습니다.

sudo cat <<EOL >${xdebug_config}
${first_line}
xdebug.remote_enable = 1
xdebug.remote_host=${ip}
xdebug.remote_port = ${XDEBUG_PORT}
xdebug.max_nesting_level = 1000
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_autostart=true
xdebug.remote_log=xdebug.log
EOL

그럼 Homestead Vagrant box의 설정을 자동으로 구성하는 방법을 알고 싶습니다. (예: xdebug 구성 중 하나)

답변1

이제 전체 스크립트를 루트로 실행하는 옵션이 있습니다. 다음 옵션을 다음으로 변경합니다 Vagrantfile.

    config.vm.provision "shell", path: afterScriptPath, privileged: **false**, keep_color: true

도착하다

    config.vm.provision "shell", path: afterScriptPath, privileged: **true**, keep_color: true

하지만 .NET에서 환경 변수를 읽을 수는 없습니다 Homestead.yml.

관련 정보