1.ssh和xdebug配置
1)vscode连接虚拟机
选择第一个ssh\config
Host:随便取名字就可以
HostName:想要连接虚拟机的IP
User:想要连接的用户名
刷新就可以看到下面的界面
再点自己想要连接的虚拟机,右边的那个箭头
选择Liunx,输入密码就可以了
2)ssh连接
运行与调试,创建launch.json文件,创建后会有内容,注释掉括号里面的内容并添加如下内容,端口号可以自行修改
"version": "0.2.0",
"configurations": [
{
"name": "Debug current script in console",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"externalConsole": false,
"port": 9003
},
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": 9003
}
3)xdebug配置
进入/etc/php/8.1/fpm/conf.d/20-xdebug.ini
zend_extension=xdebug.so
[XDebug]
xdebug.remote_enable = on
xdebug.start_with_request = 1
xdebug.mode=trace
xdebug.collect_includes = 1
xdebug.collect_params = 1
xdebug.mode=debug
xdebug.client_host=127.0.0.1
xdebug.client_port=9003
xdebug.start_with_request=yes
xdebug.remote_log=/var/log/xdebug.log
注意端口要和上面的一致
2.Centos 7安装Proxychains实现Linux 代理
1)安装下载源码
[root@localhost ~]# git clone https://github.com/rofl0r/proxychains-ng
2)切到proxychains-ng/并且编译
[root@localhost ~]# cd proxychains-ng/
[root@localhost proxychains-ng]# ./configure --prefix=/usr --sysconfdir=/etc
[root@localhost proxychains-ng]# make && make install
生成配置文件
[root@localhost proxychains-ng]# make install-config
[root@localhost proxychains-ng]# cd .. && rm -rf proxychains-ng
3)修改配置文件vim /etc/proxychains.conf