centos에서 php 명령을 찾는 방법: 먼저 "export PATH=$PATH:/usr/local/php/bin"을 실행한 다음 "echo $PATH"를 실행합니다.
이 기사의 운영 환경: centOS6.8 시스템, PHP7.1 버전, DELL G3 컴퓨터
centos에서 php 명령을 찾을 수 없으면 어떻게 해야 합니까?
-bash: php: command notfound 문제는 실제로 매우 간단합니다. 터미널에 명령을 입력했는데 시스템에서 해당 명령을 찾을 수 없다는 메시지가 표시되면(Command notfound), 설치하지 않았기 때문입니다. 해당 소프트웨어 패키지이거나 경로 설정 문제 때문입니다. 소프트웨어 패키지 문제라면 더 말할 것도 없고 해당 소프트웨어 패키지를 설치하면 됩니다. 또 다른 경우에는 사용자 경로를 설정해야 합니다.
-bash: ls: command not found 或者 -bash: ll: command not found원인: 환경 변수 설정 시 편집 프로필 파일이 올바르게 작성되지 않아 명령줄에서 ls 등의 명령이 인식되지 않았습니다. 해결책:
export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin bash: PHP: command not found해결책:
export PATH=$PATH:/usr/local/php/bin그런 다음 $PATH를 에코하고 다시 확인하세요.
usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin:/usr/local/php/bin이때, 시스템의 아무 디렉토리에나 직접 php -i를 입력하여 실행하시면 됩니다.
-bash:unzip: command not found-bash: wget에 대한 두 가지 솔루션: 명령을 찾을 수 없음일반적으로 Linux를 최소화하여 설치하면 wget이 기본적으로 설치되지 않습니다. 다음 두 가지 방법으로 설치할 수 있습니다. 1.rpm 설치 rpm 다운로드 소스 주소: http://mirrors.163.com/centos/6.2/os/x86_64/Packages/RPM 다운로드 wget 패키지: http://mirrors.163.com/centos/6.2/os/x86_64/Packages/wget-1.12-1.4.el6.x86_64.rpmrpm ivh wget-1.12-1.4.el6.x86_64.rpm 설치 그것은 할 수 있다. 2. yum 설치
yum -y install wget포트 80 프롬프트가 사용되었습니다
httpd not running, trying to start (98)Address already in use: AH00072: make_sock: could not bind to address [::]:80 (98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80 no listening sockets available, shutting down AH00015: Unable to open logs해결책:
# netstat -lnp|grep :80 tcp 0 0 :::80 :::* LISTEN 2184/httpd 杀掉服务 # killall -9 httpd 重启 # /etc/init.d/httpd start권장 학습: "
PHP 비디오 튜토리얼
"위 내용은 centos가 php 명령을 찾을 수 없으면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!