아파치를 설치하고 설정 파일을 복사 한 다음 실행하고 시작하고 설정해야합니다. 내가 공백과 재 배열 덤비는 시도가능성있는 플레이 북 - 아파치 오류 설치/설정
error: ERROR! Syntax Error while loading YAML.
The error appears to have been in '/etc/ansible/playbook.yml': line 3, column 1, but may
be elsewhere in the file depending on the exact syntax problem.
The offending line appears to be:
- hosts: example
tasks:
^ here
: ansible-playbook playbook.yml
, 내가 이것을받을 : 나는 명령을 실행할 때, 그러나
---
- hosts: example
tasks:
- name:Install Apache
command: yum install --quiet -y httpd httpd-devel
- name:Copy configuration files
command:>
cp httpd.conf /etc/httpd/conf/httpd.conf
- command:>
cp httpd-vshosts.conf /etc/httpd/conf/httpd-vshosts.conf
- name:Start Apache and configure it to run
command: service httpd start
- command: chkconfig httpd on
: 여기
는 지금까지 쓰여진 각본이다 나는 여전히이 오류가 발생합니다. 나는 그것이 내가 여기에서 놓치고있는 작은 무엇인가이다라고 확신한다. 그러나 그것은 끝나지 않는 나를 괴롭 히고있다! 어떤 도움을 주시면 감사하겠습니다! 정말 고마워.
정말 고마워. 그것은 나를 위해 일했다 .. 문제는 공백과 함께했다! –