千家信息网

WSL如何设置php开发环境

发表于:2025-01-27 作者:千家信息网编辑
千家信息网最后更新 2025年01月27日,这篇文章主要介绍"WSL如何设置php开发环境"的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇"WSL如何设置php开发环境"文章能帮助大家解决问题。WSL设置p
千家信息网最后更新 2025年01月27日WSL如何设置php开发环境

这篇文章主要介绍"WSL如何设置php开发环境"的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇"WSL如何设置php开发环境"文章能帮助大家解决问题。

WSL设置php开发环境

相比于 docker 的繁琐,wsl 或许是在 windows 10 系统上开发php的好选择。目前免费的环境是 ubuntu20,centos 试过好像不太好用,就此记录一下。

购买ubuntu

因为是免费的,所以只要进入微软商店找到,下载安装即可,比较简单。

安装开发环境

打开 powershell
ubuntu2004.exe config -default-user root

查看版本命令
cat /etc/issue
应该显示
Ubuntu 20.04.xxxxx

进入系统,必须首先 apt update ,否则什么软件都不好装。

apt install nginx(nginx官网推荐的方法放最后)/etc/init.d/nginx  startapt install redisapt install php7.4-fpm

假设需要安装php其他插件

apt install php7.4-memcacheapt install php7.4-mbstringapt install php7.4-gdapt install php7.4-domapt install php7.4-mysqlapt install php7.4-redis

需要注意,这里,只要新安装了php的插件,就需要重启php7.4-fpm的服务。

/etc/init.d/php7.4-fpm startapt install mysql-serverapt install mysql-client/etc/init.d/mysql start/etc/init.d/redis-server startcurl -o /usr/local/bin/composer https://mirrors.aliyun.com/composer/composer.pharchmod +x /usr/local/bin/composer

需要在配置文件加 ~/.bashrc
export COMPOSER_ALLOW_SUPERUSER=1

然后命令行
composer -V
可以测试 composer 是否安装成功。

apt install net-toolsapt install unzipnetstat -antup

如何修改MySQL监听IP地址

Mysql默认在本地环路地址127.0.0.1的3306端口监听,要使用其它IP地址需要修改配置文件。

1.编辑/etc/my.cnf

在[mysqld]节中增加下面一行:

bind-address=0.0.0.0 #全部地址或者指定的ip地址

2.重启服务

service mysqld restart

3、然后必须修改mysql的密码,否则客户端无法登录。
先在命令行

 ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123456';

杂项和 nginx 设置

ssh-keygen -t rsa -b 4096
然后修改成自己的,注意文件权限。

拉代码到本地。

composer config -global github-oauth.github.com ghp_xxxxxxxxxxxx

mount -t drvfs F: /mnt/myshare

再次修改nginx
vim /etc/nginx/sites-enabled/default
或者也可以删除这个default 文件
把所有的虚拟主机都放conf.d 或许更加习惯。

   charset  utf-8;      location / {        try_files $uri $uri/ /index.php?$query_string;      }      location ~ \.php$ {        #fastcgi_pass 127.0.0.1:9000;        fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;  #      fastcgi_index index.php;        fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;        include snippets/fastcgi-php.conf;        #include fastcgi_params;      }

终于,看见 laravel 的界面了。

上传文件的大小限制

这是nginx 设置在 http 项内。
client_max_body_size 10m;

php.ini 需要设置
post_max_size=10m
upload_max_filesize=10m

nginx 官网推荐的方式

echo $'deb https://nginx.org/packages/ubuntu/ focal nginxdeb-src https://nginx.org/packages/ubuntu/ focal nginx ' > /etc/apt/sources.list.d/nginx.listapt updateapt install nginx

关于"WSL如何设置php开发环境"的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注行业资讯频道,小编每天都会为大家更新不同的知识点。

0