search
HomeBackend DevelopmentPHP ProblemHow to set up linux php debugging environment

How to build the linux php debugging environment: 1. Download and install MySQL; 2. Enable php-fpm and listen to port 9000; 3. Decompress, compile and install PHP; 4. Modify the configuration file and install Nginx.

How to set up linux php debugging environment

The operating environment of this article: ubuntu 16.04 system, PHP version 7.1, Dell G3 computer.

How to set up a linux php debugging environment?

Linux PHP development environment quick setup

The environment built is LNMP:

1. Install MySQL

This is very simple. I use Ubuntu, so use the apt source, download the deb file and follow the new installation document in order: a. Add apt library b. Update apt library c. Install d. Run MySQL

Download:

https://dev.mysql.com/downloads/repo/apt/

Documentation:

https://dev.mysql.com/doc/mysql-apt-repo-quick-guide/en/#apt-repo-fresh-install

2, PHP

here Turn on php-fpm and listen on port 9000.

Related documents:

http://php.net/manual/zh/install.unix.nginx.php

a. Download

https://www.php.net/downloads.phpwget https://www.php.net/distributions/php-7.1.33.tar.gz

Choose any image to download locally or get the download address and then wget to download it locally

b .Decompress, compile and install

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

If you have streamlined control, you must add --prefix, so that the installation directory will be there

The problems you will encounter when executing in order include pcre, If zlib and libxml2 do not exist, then directly go to Baidu’s official website to obtain the latest version of the tar.gz format installation package and then decompress, compile and install it.

swoole's introductory manual

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

c. After the installation is completed, the configuration file (the official document was moved here), every line cannot be forgotten

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

Interlude: Prevent If the file does not exist, Nginx is prevented from sending the request to the back-end PHP-FPM module to avoid being attacked by malicious script injection

vim /usr/local/php/lib/php.ini
修改参数为:cgi.fix_pathinfo=0

Since I am not familiar with vim, I recommend sudo atom or sudo sublime. Open the graphical interface software.

d. The following is different from the PHP manual: (The following function is to let fpm read and configure PHP-FPM user groups and users and open the listening port 9000)

In fact, the manual says that /usr/local/etc/php-fpm.conf does not have user group configuration options at all. If you add it manually, it will report that the file cannot be found, or even Depressed, it should be set up like this

Create web user:

groupadd www-data
useradd -g www-data www-data

Openphp-fpm.conf

vim /usr/local/php/etc/php-fpm.conf

Find the bottom line:

include=NONEl/etc/php-fpm.d/*.conf

Change NONE to the real path:

include=/usr/local/php/etc/php-fpm.d/*.conf

Then add the user group and user information to this regular matching configuration file:

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

Find the user settings and change the content as follows :

; 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

Enable FPM

/usr/local/bin/php-fpm

e and check whether it is successful:

netstat -tln | grep 9000

If you see TCP 9000 LISTEN, it means the configuration is successful. If there is no output, it means that port 9000 is not listening. Please try again

3. Install Nginx

The Chinese documentation of Nginx is confusing me

http://www.nginx.cn/installhttp://www.nginx.cn/doc/setup/nginx-ubuntu.html

These two The version is too old, PHP5 or something, or there are too many parameters to install, there are always various problems, and I don’t like apt to install, at least I don’t have so much freedom in version selection, and I have to use apt to delete, so I installed it in the simplest way. Just download, compile and install

Download

http://nginx.org/en/download.html

Choose a favorite version and download it

tar -zxvf 
cd 
./configure --prefix=/usr/local/nginx
make 
make install

If you are prompted during configure that some software such as zlib does not exist, Baidu download tar Unzip the package and install it in the

installation directory answer:

After the installation is complete, go to /usr/local/nginx

Configuration file: /usr/local/nginx/conf/nginx .conf

Virtual host file directory:/usr/local/nginx/html

Execution file:/usr/local/nginx/sbin/nginx

Configuration file needs to be done What you get is to add index.php after a.index.html b. If it conforms to the .php rules, hand it over to port 9000

The port uses the default nginx:80 php:9000 and the virtual host directory uses the default /usr/local/ nginx/html

A total of two places are configured:

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;#}

Okay, now go to the execution directory

sudo ./nginx -s reopen

Start nginx

html directory and create a new test. Enter localhost/text.php in the PHP browser and you will see that the configuration is successful.

##PHP extension installation:

Reference Manual

http://php.net/manual/zh/install.pecl.phpize.php
The execution process is: enter the ext of the PHP source code package used for compilation and then enter the relevant extension directory, phpize generates the configure file, ./configure, make && make install

cd /home/username/php7.0.29/ext
cd curl
phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make
make install
There may be autoconf errors. If it is ubuntu, just run it directly. Then go to lib.php/ini and remove the extension comments:

sudo apt-get install autoconf

Linux Simple and Commonly used instructions:

1. Find the httpd.conf file in the root directory:

find / -name httpd.conf
2. Display the files in the /usr/src directory

File (including subdirectories)Contains magic lines, this search is the content of the file:

grep -r magic /usr/src
3. VIM editor search content

尾行模式:/content Enter
4.php- The process of fpm is closed

sudo pkill php-fpm
5. MySQLI installation

./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视频教程

The above is the detailed content of How to set up linux php debugging environment. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
什么是linux设备节点什么是linux设备节点Apr 18, 2022 pm 08:10 PM

linux设备节点是应用程序和设备驱动程序沟通的一个桥梁;设备节点被创建在“/dev”,是连接内核与用户层的枢纽,相当于硬盘的inode一样的东西,记录了硬件设备的位置和信息。设备节点使用户可以与内核进行硬件的沟通,读写设备以及其他的操作。

Linux中open和fopen的区别有哪些Linux中open和fopen的区别有哪些Apr 29, 2022 pm 06:57 PM

区别:1、open是UNIX系统调用函数,而fopen是ANSIC标准中的C语言库函数;2、open的移植性没fopen好;3、fopen只能操纵普通正规文件,而open可以操作普通文件、网络套接字等;4、open无缓冲,fopen有缓冲。

linux中什么叫端口映射linux中什么叫端口映射May 09, 2022 pm 01:49 PM

端口映射又称端口转发,是指将外部主机的IP地址的端口映射到Intranet中的一台计算机,当用户访问外网IP的这个端口时,服务器自动将请求映射到对应局域网内部的机器上;可以通过使用动态或固定的公共网络IP路由ADSL宽带路由器来实现。

linux中eof是什么linux中eof是什么May 07, 2022 pm 04:26 PM

在linux中,eof是自定义终止符,是“END Of File”的缩写;因为是自定义的终止符,所以eof就不是固定的,可以随意的设置别名,linux中按“ctrl+d”就代表eof,eof一般会配合cat命令用于多行文本输出,指文件末尾。

什么是linux交叉编译什么是linux交叉编译Apr 29, 2022 pm 06:47 PM

在linux中,交叉编译是指在一个平台上生成另一个平台上的可执行代码,即编译源代码的平台和执行源代码编译后程序的平台是两个不同的平台。使用交叉编译的原因:1、目标系统没有能力在其上进行本地编译;2、有能力进行源代码编译的平台与目标平台不同。

linux怎么判断pcre是否安装linux怎么判断pcre是否安装May 09, 2022 pm 04:14 PM

在linux中,可以利用“rpm -qa pcre”命令判断pcre是否安装;rpm命令专门用于管理各项套件,使用该命令后,若结果中出现pcre的版本信息,则表示pcre已经安装,若没有出现版本信息,则表示没有安装pcre。

linux中rpc是什么意思linux中rpc是什么意思May 07, 2022 pm 04:48 PM

在linux中,rpc是远程过程调用的意思,是Reomote Procedure Call的缩写,特指一种隐藏了过程调用时实际通信细节的IPC方法;linux中通过RPC可以充分利用非共享内存的多处理器环境,提高系统资源的利用率。

linux怎么查询mac地址linux怎么查询mac地址Apr 24, 2022 pm 08:01 PM

linux查询mac地址的方法:1、打开系统,在桌面中点击鼠标右键,选择“打开终端”;2、在终端中,执行“ifconfig”命令,查看输出结果,在输出信息第四行中紧跟“ether”单词后的字符串就是mac地址。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version