yum
설치를 성공적으로 수행할 수 있는 저장소 정의 파일을 생성하기 위해 아래 bash 스크립트를 어떻게 얻을 수 있습니까 mongodb
?
보시다시피 현재 버전의 스크립트로 인해 오류가 발생하고 있으며 아래에서 해당 내용을 읽을 수 있습니다.
현재 bash 스크립트의 관련 부분은 다음과 같습니다.
echo "[STARTING TASK 4: Install MongoDB]"
echo "... About to create the repo file with a cat command ..."
cat >/etc/yum.repos.d/mongodb-org.repo <<EOL
line 1, [mongodb-org-3.4]
line 2, name=MongoDB Repository
line 3, baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.4/x86_64/
line 4, gpgcheck=1
line 5, enabled=1
line 6, gpgkey=https://www.mongodb.org/static/pgp/server-3.4.asc
line 7 line
...
EOL
echo "... About to confirm with yum repolist"
yum repolist
echo "... About to yum -y install mongodb-org"
yum -y install mongodb-org
echo "... About to systemctl start mongod"
systemctl start mongod
스크립트가 실행될 때 콘솔 출력은 다음과 같습니다.
build 18-Dec-2017 17:09:07 [STARTING TASK 4: Install MongoDB]
build 18-Dec-2017 17:09:07 ... About to create the repo file with a cat command ...
build 18-Dec-2017 17:09:07 ... About to confirm with yum repolist
build 18-Dec-2017 17:09:07 Loaded plugins: fastestmirror, langpacks
error 18-Dec-2017 17:09:07
error 18-Dec-2017 17:09:07
error 18-Dec-2017 17:09:07 File contains no section headers.
error 18-Dec-2017 17:09:07 file: file:///etc/yum.repos.d/mongodb-org.repo, line: 1
error 18-Dec-2017 17:09:07 'line 1, [mongodb-org-3.4]\n'
build 18-Dec-2017 17:09:07 ... About to yum -y install mongodb-org
build 18-Dec-2017 17:09:07 Loaded plugins: fastestmirror, langpacks
error 18-Dec-2017 17:09:07
error 18-Dec-2017 17:09:07
error 18-Dec-2017 17:09:07 File contains no section headers.
error 18-Dec-2017 17:09:07 file: file:///etc/yum.repos.d/mongodb-org.repo, line: 1
error 18-Dec-2017 17:09:07 'line 1, [mongodb-org-3.4]\n'
build 18-Dec-2017 17:09:07 ... About to systemctl start mongod
error 18-Dec-2017 17:09:07 Failed to start mongod.service: Unit not found.
보시다시피, 오류는 스크립트가 /etc/yum.repos.d/mongodb-org.repo
.
답변1
문제를 해결하는 가장 짧은 방법은 코드를 다시 생성하는 것입니다.
cat >/etc/yum.repos.d/mongodb-org.repo <<EOL
[mongodb-org-3.4]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/6Server/mongodb-org/3.6/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-3.4.asc
EOL
이렇게 하면 불필요한 텍스트가 인쇄되지 않습니다. 7행 이후에는 무엇이 있는지는 모르겠지만, 맨 앞의 "line..." 텍스트를 제거하는 아이디어를 진행합니다.