Windows+otto의 "Arequired privege is not held by the client"이렇게 혼나면
로컬 파일을 의존적으로 지정할 때 오류가 발생할 수 있습니다.
발생
컨디션
디렉토리 구조
project
├── Appfile [*1]
└── mongodb
├── .ottoid
└── Appfile [*2]
파일 내용
*1/project/Appfile
application {
name = "example"
type = "ruby"
dependency { source = "./mongodb" }
}
customization "ruby" {
ruby_version = "2.0"
}
*2/project/mongodb/Appfileapplication {
name = "mongodb"
type = "docker-external"
}
customization "docker" {
image = "mongo:3.0"
run_args = "-p 27017:27017"
}
컴파일 결과
$ otto compile
==> Loading Appfile...
==> Fetching all Appfile dependencies...
Fetching dependency: file://C:/Users/hoge/project/mongodb
Error compiling Appfile: error downloading module 'file://C:/Users/hoge/project/mongodb': symlink C:\Users\hoge\project\mongodb C:\Users\hoge\project\.otto\appfile\deps\xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx: A required privilege is not held by the client.
해결책
Shift+Ctrl 등을 사용하여 매니저 권한으로 수행
또는 다음과 같은 방법으로 설정을 변경합니다.
secpol.msc
※ 설정 변경에 대해서는 스스로 책임지세요.
Reference
이 문제에 관하여(Windows+otto의 "Arequired privege is not held by the client"이렇게 혼나면), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/2no/items/43f48978fd937fd643cc텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)