Linux PHP 디버깅 환경을 설정하는 방법: 1. MySQL을 다운로드하고 설치합니다. 2. php-fpm을 활성화하고 포트 9000을 수신합니다. 3. PHP의 압축을 풀고 컴파일하고 설치합니다. 4. 구성 파일을 수정하고 Nginx를 설치합니다.
이 기사의 운영 환경: ubuntu 16.04 시스템, PHP 버전 7.1, Dell G3 컴퓨터.
Linux PHP 디버깅 환경을 설정하는 방법은 무엇입니까?
Linux PHP 개발 환경이 빠르게 구축됩니다
구축된 환경은 LNMP입니다:
1. MySQL 설치
저는 Ubuntu를 사용하므로 apt 소스를 사용하고, deb 파일을 다운로드합니다. 그런 다음 새 설치 문서를 순서대로 따릅니다. a. apt 라이브러리를 업데이트합니다. c. MySQL을 실행합니다.
다운로드:
https://dev.mysql.com/downloads/repo/apt/
-fpm here , 포트 9000에서 수신 대기합니다.
관련 문서:https://dev.mysql.com/doc/mysql-apt-repo-quick-guide/en/#apt-repo-fresh-install
http://php.net/manual/zh/install.unix.nginx.php
https://www.php.net/downloads.phpwget https://www.php.net/distributions/php-7.1.33.tar.gz
tar zxf php-x.x.x cd ../php-x.x.x./configure --prefix=/usr/local/php --enable-fpm --enable-pdo --with-pdo-mysql --enable-mysqlnd --with-mysqli --with-opensslmake sudo make install
https://linkeddestiny.gitbooks.io/easy-swoole/content/book/chapter01/install.html
./configure --prefix=/usr/local/php \ --with-config-file-path=/etc/php \ --enable-fpm \ --enable-pcntl \ --enable-mysqlnd \ --enable-opcache \ --enable-sockets \ --enable-sysvmsg \ --enable-sysvsem \ --enable-sysvshm \ --enable-shmop \ --enable-zip \ --enable-soap \ --enable-xml \ --enable-mbstring \ --disable-rpath \ --disable-debug \ --disable-fileinfo \ --with-mysqli=mysqlnd \ --with-pdo-mysql=mysqlnd \ --with-pcre-regex \ --with-iconv \ --with-zlib \ --with-mcrypt \ --with-gd \ --with-openssl \ --with-mhash \ --with-xmlrpc \ --with-curl \ --with-imap-ssl
sudo cp php.ini-development /usr/local/php/lib/php.ini cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf cp sapi/fpm/php-fpm /usr/local/php/bin
실제로 매뉴얼에는 /usr/local/etc/php-fpm.conf에 모든 그룹 구성 옵션에 사용자가 없다고 되어 있는데, 수동으로 추가하면 파일을 찾을 수 없다고 보고하게 되는데, 이는 매우 우울한 일입니다. 이렇게
웹 사용자 만들기:vim /usr/local/php/lib/php.ini 修改参数为:cgi.fix_pathinfo=0
php-fpm.conf
groupadd www-data useradd -g www-data www-data
vim /usr/local/php/etc/php-fpm.conf
include=NONEl/etc/php-fpm.d/*.conf
include=/usr/local/php/etc/php-fpm.d/*.conf
cd /usr/local/php/etc/php-fpm.d sudo cp www.conf.default www.conf
vim /usr/local/php/etc/php-fpm.d/www.conf
; Unix user/group of processes ; Note: The user is mandatory. If the group is not set, the default user's group; will be used. user = www-data group = www-data
/usr/local/bin/php-fpm
Nginx 중국어 문서를 살펴보겠습니다. 사기입니다
netstat -tln | grep 9000
http://www.nginx.cn/installhttp://www.nginx.cn/doc/setup/nginx-ubuntu.html
http://nginx.org/en/download.html
을 사용합니다.
총 두 곳이 구성되었습니다:tar -zxvf cd ./configure --prefix=/usr/local/nginx make make install
location / { root html; index index.html index.php index.htm; }
#location ~ \.php$ {# root html;# fastcgi_pass 127.0.0.1:9000;# fastcgi_index index.php;# fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;# include fastcgi_params;#}
Reference Manual
sudo ./nginx -s reopen
http://php.net/manual/zh/install.pecl.phpize.php
cd /home/username/php7.0.29/ext cd curl phpize ./configure --with-php-config=/usr/local/php/bin/php-config make make install
1 루트 디렉터리에서 httpd.conf 파일을 찾습니다.
sudo apt-get install autoconf
find / -name httpd.conf
3. VIM 편집기 검색 내용grep -r magic /usr/src
尾行模式:/content Enter
5. MySQLI 설치
./configure –with-php-config=/usr/local/php/bin/php-config –with-mysqli=/usr/bin/mysql_config
php_config找不到
sudo apt-get install libmysqlclient-dev
之后遇到make错误,mysqli.lo不存在,是因为某个.h文件未找到导致编译失败图示:
解决方案:
https://www.cnblogs.com/xiaoqian1993/p/6277771.html
6、ubuntu安装apt install资源占用
Could not get lock /var/lib/dpkg/lock! sudo rm /var/cache/apt/archives/locksudo rm /var/lib/dpkg/lock
7、简单的定时任务
ubuntu 设定定时器任务:1、 将ubuntu中crontab的编译器切换到VIM export EDITOR=vim 修改后最好重启一下crontab /etc/init.d/cron stop /etc/init.d/cron start 2、 设定每一分钟向/home/hello.txt文本追加一个hello 创建tesh.sh内容: echo hello >> /home/hello.txt 创建文件hello.txt(注意所属用户、所属组、其他用户)的读写执行权限的分配. 将.sh加入定时任务 命令行输入 crontab -e 编辑文本内容为 */1 * * * * sh /home/test.sh
linux添加环境变量:
由于linux环境变量值中/usr/local/php并不属于,/usr/local/bin里面的倒是可以全局访问的,现在将php加入全局变量。
sudo vim /etc/profile//加入mysql、PHP的执行文件所在目录PATH=$PATH:/usr/local/php/bin:/usr/local/mysql/bin export PATH//两行代码加到末尾然后执行以下指令使其生效source /etc/profile
或者添加快捷方式形式:
ln -s /usr/local/mysql/bin/mysql_config /usr/local/bin/mysql_config
nginx.conf | laravel
#user www-data; worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; #gzip on; # server { listen 8080; server_name localhost; index index.html index.htm index.php; location / { root /home/www/laravel/public; autoindex on; try_files $uri $uri/ /index.php?$query_string; } # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # location ~ \.php$ { root /home/www/laravel/public; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } server { listen 80; server_name localhost; index index.html index.htm index.php; location / { root /home/www; autoindex on; try_files $uri $uri/ /index.php?$query_string; } # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # location ~ \.php$ { root /home/www; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } }
composer安装
https://pkg.phpcomposer.com/#how-to-install-composer
推荐学习:《PHP视频教程》
위 내용은 리눅스 PHP 디버깅 환경을 설정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!