이 글은 주로 Mac OS에서 LNMP 개발 환경을 구축하는 단계를 소개합니다. 이 글은 이를 단계별로 자세히 소개하고 필요한 모든 사람들이 따라할 수 있는 참고 가치가 있습니다. 함께 보세요.
1. 개요
모두가 알아야 할 LNMP는 LinuxNginx+MySQL을 의미합니다. +PHP는 웹사이트 서버 아키텍처입니다. Linux는 Unix 컴퓨터 운영 체제 클래스의 총칭이며 현재 가장 널리 사용되는 무료 운영 체제입니다. 대표적인 버전에는 debian, centos, ubuntu, fedora, gentoo 등이 있습니다. Nginx는 고성능 HTTP 및 역방향 프록시 서버이자 IMAP/POP3/SMTP 프록시 서버입니다. MySQL은 소규모 관계형 데이터베이스 관리 시스템입니다. PHP는 서버 측에서 실행되고 HTML 문서에 포함되는 스크립팅 언어입니다. 이 네 가지 종류의 소프트웨어는 모두 무료이며 오픈 소스 소프트웨어입니다. 함께 결합하면 무료이고 효율적이며 확장 가능한 웹 사이트 서비스 시스템이 됩니다. 이 기사의 세부 내용을 살펴보겠습니다.
2. Homebrew 설치
Mac을 사용하는 프로그래머의 필수 단계는 Homebrew를 설치하는 것입니다. yum
centOS의 명령은 ubuntu의 apt-get
명령과 동일합니다. brew
명령을 통해 일부 소프트웨어 패키지를 빠르게 설치할 수 있습니다.
명령줄을 사용하여 Homebrew를 설치하는 명령은 다음과 같습니다.
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
brew doctor
를 사용하여 충돌이 있는지 확인한 후 brew update && brew upgrade
을 사용합니다. 맥주를 업그레이드하려면
3. nginx 설치
nginx는 Mac OS에서 Brew 명령을 사용하여 직접 설치할 수 있습니다:
brew install nginx
포트 80을 사용해야 하는 경우 루트 그룹에 nginx를 추가해야 합니다:
sudo cp -v /usr/local/opt/nginx/*.plist /Library/LaunchDaemons/ sudo chown root:wheel /Library/LaunchDaemons/homebrew.mxcl.nginx.plist
그런 다음 다음 명령을 사용하여 nginx 서비스를 시작합니다:
sudo nginx
nginx가 성공적으로 설치되었는지 테스트합니다. 기본 구성 파일 수신 포트가 8080이므로 먼저 포트 8080에 요청하십시오.
curl -IL http://www.php.cn/:8080
결과는 다음과 유사해야 합니다.
HTTP/1.1 200 OK Server: nginx/1.9.1 Date: Fri, 29 May 2015 14:50:47 GMT Content-Type: text/html Content-Length: 612 Last-Modified: Fri, 29 May 2015 14:40:47 GMT Connection: keep-alive ETag: "5444dea7-264" Accept-Ranges: bytes
nginx 관련 작업은 다음과 같습니다.
sudo nginx //启动nginx sudo nginx -s reload|reopen|quit //重新加载|重启|退出
4. php-fpm 설치
brew에는 소스가 없기 때문에 php-fpm의 경우 먼저 소스를 추가해야 합니다:
brew tap homebrew/dupes brew tap homebrew/php
그런 다음 php-fpm을 설치하고 다음 명령을 입력합니다:
brew install php56 --whitout-apache --with-imap --with-tidy --with-debug --with-pgsql --with-mysql --with-fpm
프로그램이 자동으로 설치됩니다. 설치가 완료될 때까지 몇 분 정도 기다리십시오.
설치가 완료된 후 $PATH
:
# 如果使用bash的话 vim ~/.bash_profile export PATH="/usr/local/sbin:$PATH" source ~/.bash_profile # 如果使用ZSH的话 vim ~/.zshrc export PATH="/usr/local/sbin:$PATH" source ~/.zshrc
에 php를 추가해야 합니다. 그런 다음 부팅 시 php-fpm이 자동으로 시작되도록 설정할 수 있습니다:
mkdir -p ~/Library/LaunchAgents ln -sfv /usr/local/opt/php56/homebrew.mxcl.php56.plist ~/Library/LaunchAgents/ launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.php56.plist
사용 php를 모니터링하는 다음 명령 - fpm이 성공적으로 시작되는지 여부:
lsof -Pni4 | grep LISTEN | grep php
성공적으로 시작되면 다음과 유사한 출력이 표시되어야 합니다.
php-fpm 27578 wenzhiquan 9u IPv4 0xf29f8b26c08fc27 0t0 TCP 127.0.0.1:9000 (LISTEN) php-fpm 27628 wenzhiquan 0u IPv4 0xf29f8b26c08fc27 0t0 TCP 127.0.0.1:9000 (LISTEN) php-fpm 27629 wenzhiquan 0u IPv4 0xf29f8b26c08fc27 0t0 TCP 127.0.0.1:9000 (LISTEN) php-fpm 27630 wenzhiquan 0u IPv4 0xf29f8b26c08fc27 0t0 TCP 127.0.0.1:9000 (LISTEN)
5. MySQL을 설치합니다.
brew 명령을 사용하여 MySQL을 직접 설치할 수도 있습니다.
brew install mysql
마찬가지로 부팅 시 MySQL이 자동으로 시작되도록 설정할 수 있습니다.
ln -sfv /usr/local/opt/mysql/*.plist ~/Library/LaunchAgents launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist
그런 다음 MySQL을 안전하게 설치하고 다음 명령을 사용하여 루트 비밀번호 변경, 익명 사용자 삭제, 원격 연결 종료 등을 수행할 수 있습니다.
mysql_secure_installation
그러면 다음 내용이 출력됩니다.
> Enter current password for root (enter for none): //默认没有密码,直接回车即可 > Change the root password? [Y/n] //是否更改root密码,选择是,然后输入并确认密码 > Remove anonymous users? [Y/n] //是否删除匿名用户,选择是 > Disallow root login remotely? [Y/n] //是否禁止远程登录,选择是 > Remove test database and access to it? [Y/n] //是否删除test数据库,选择是 > Reload privilege tables now? [Y/n] //是否重载表格数据,选择是
데이터베이스가 성공적으로 설치되었는지 테스트합니다:
mysql -u root -p
그런 다음 지금 바로 설정을 입력합니다. 루트 비밀번호는 다음을 출력합니다:
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> exit //输入exit退出数据库
6. 구성 nginx
먼저 구성 파일을 만듭니다. 일부 폴더는 Ubuntu의 nginx 구조 다음에 생성된 디렉터리입니다.
mkdir -p /usr/local/etc/nginx/logs mkdir -p /usr/local/etc/nginx/sites-available mkdir -p /usr/local/etc/nginx/sites-enabled mkdir -p /usr/local/etc/nginx/conf.d mkdir -p /usr/local/etc/nginx/ssl sudo mkdir -p /var/www sudo chown :staff /var/www sudo chmod 775 /var/www
그런 다음 nginx 구성 파일을 수정합니다.
vim /usr/local/etc/nginx/nginx.conf
내용을 다음으로 바꾸세요:
worker_processes 1; error_log /usr/local/etc/nginx/logs/error.log debug; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /usr/local/etc/nginx/logs/access.log main; sendfile on; keepalive_timeout 65; index index.html index.php; include /usr/local/etc/nginx/sites-enabled/*; }
그런 다음 php-fpm 구성 파일을 만듭니다:
vim /usr/local/ect/nginx/conf.d/php-fpm
다음 내용을 입력하세요:
location ~ \.php$ { try_files $uri = 404; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param script_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }
그런 다음 사이트를 추가하세요 구성 파일:
vim /usr/local/ect/nginx/sites-enabled/default
다음 내용을 입력하세요:
server { listen 80; server_name localhost; root /var/www/; access_log /usr/local/etc/nginx/logs/default.access.log main; location / { include /usr/local/etc/nginx/conf.d/php-fpm; } location = /info { allow 127.0.0.1; deny all; rewrite (.*) /.info.php; } error_page 404 /404.html; error_page 403 /403.html; }
nginx를 다시 시작하세요. 이 시점에서 구성이 완료됩니다. www 아래에 테스트 파일을 작성하고 테스트하세요
요약
위 내용은 Mac OS에서 LNMP 개발 환경을 구축하는 단계에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!