설치 중 오류 메시지

설치 중 오류 메시지

2022-10-20 last update

3 minutes reading ispconfig
설치 과정에서 해당 프로그램이 서버에 설치되어 있지만 다음과 같은 오류 메시지가 나타납니다.

iptables: command not found 
httpd: command not found
useradd: command not found
apachectl: command not found
이것은 언급된 프로그램이 Linux 설치 경로에 없음을 의미합니다. 입력하십시오
echo $PATH
명령줄에서 경로에 있는 디렉토리 중 하나에 있는 프로그램에 대한 심볼릭 링크를 만듭니다. 예를 들어,/usr/bin 디렉토리로 이동하고 다음을 입력하여/usr/bin 디렉토리에/path/to/apachectl 프로그램에 대한 심볼릭 링크를 만들 수 있습니다.
ln -s /path/to/apachectl apachectl
이것은/path/to/apachectl을 가리키는/usr/bin 디렉토리에 apachectl이라는 심볼릭 링크를 생성합니다.