nginx 설정파일을 적용하려고 했는데, 가장 상단에 입력한 사용자가 없어 에러가 발생.
$ sudo nginx -t
nginx: [emerg] getgrnam("aaa") failed in /etc/nginx/nginx.conf:1
nginx: configuration file /etc/nginx/nginx.conf test failed
[변경사항]
이전 AS-IS에 있던 Ngninx.conf파일을 TO-BE 서버에 적용하려고하니 사용자 명에 오류가 있음. (user nginx aaa)
getent group aaa
// result
aaa:x:400:nginx
// aaa 그룹 생성
sudo groupadd -g 400 aaa
// nginx 사용자를 aaa 그룹에 추가
sudo usermod -a -G aaa nginx
// config 파일 문법 확인용
sudo nginx -t
sudo systemctl restart nginx
sudo systemctl status nginx