Go를 사용하여 다른 사용자 아래에서 외부 명령 실행
시스템 프로그래밍의 방대한 환경에서 후원 하에 외부 명령을 실행하는 기능 다른 사용자의 정보는 종종 필수 불가결합니다. 기존 방법에는 "su" 또는 "bash" 유틸리티를 활용하는 것이 포함될 수 있지만 보다 효율적이고 순수한 Go 기반 접근 방식을 얻을 수 있습니다.
이 작업을 수행하기 위해 os/exec 패키지는 포괄적인 세트를 제공합니다. 외부 프로세스 실행을 관리하는 기능. 그러나 기본 동작은 현재 프로세스의 권한으로 명령을 실행합니다. 다른 사용자로 명령을 실행하기 위해 syscall.Credential 구조체의 영역을 조사합니다.
Cmd 개체의 SysProcAttr 필드에 자격 증명 구조를 추가하여 자격 증명(예: UID 및 GID) 외부 명령을 실행해야 합니다. 다음 코드 조각은 이 접근 방식을 보여줍니다.
package main import ( "fmt" "os/exec" "strconv" "syscall" ) func main() { // Capture the UID of the desired user u, err := user.Lookup("another_user") if err != nil { fmt.Printf("%v", err) return } // Parse the UID into an integer and construct the Credential uid, err := strconv.Atoi(u.Uid) if err != nil { fmt.Printf("%v", err) return } credential := &syscall.Credential{Uid: uid} // Compose the command command := exec.Command("ls", "-l") // Configure the command's SysProcAttr with the Credential command.SysProcAttr = &syscall.SysProcAttr{} command.SysProcAttr.Credential = credential // Execute the command and process its output output, err := command.CombinedOutput() if err != nil { fmt.Printf("%v", err) return } fmt.Println(string(output)) }
이 접근 방식을 사용하면 외부 명령의 실행 환경을 세밀하게 제어할 수 있어 명령을 실행할 사용자를 정확하게 지정할 수 있습니다.
위 내용은 Go에서 다른 사용자로 외부 명령을 어떻게 실행할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!