个人博客
-
linux安装puppeteer
在安装puppeteer过程中遇到一些错误,记录一下 首先可能遇到node install.js错误,可以使用一下命令参数安装puppeteer `npm i --save puppeteer --ignore-scripts` 或者先执行一下命令再安装puppeteer ` npm config... -
Linux安装Nodejs
1.安装扩展 yum -y update gcc yum -y install gcc+ gcc-c++ 2.wget https://nodejs.org/dist/v12.18.2/node-v12.18.2-linux-x64.tar.xz 3.tar -xf node-v12.18.2-linux-x64.tar.xz 4.mv node-v12.18.2-linux... -
手把手教你用VSCode远程服务器
之前在服务器开发都是`vim`+`xshell`不过用着确实很不方便,厌倦了各种命令,有没有一种方法使得在本地开发自动同步到服务器呢? 今天他来了 ---VSCode VSCode也是一种编辑器适用于大项目,选择他的主要原因是VSCode... -
Vagrant 2.2.6 无法使用VirtualBox 6.1解决办法
> 本文转载自 [https://blog.csdn.net/daxiang52/article/details/103518589](http://https://blog.csdn.net/daxiang52/article/details/103518589) 之前一直使用vagrant来管理VirtualBox的,结果前段时间Vi... -
Linux搭建svn服务器
1. `yum -y install subversion` 2.安装后新键一个svn目录 `mkdir /home/svn` 3.在svn目录新键存放代码的仓库 `svnadmin create /home/svn/project` 4.启动svn服务器,监视svn目录 `svnserve -d -r /home/svn`... -
Window文件上传到Linux
一.通过Xshell的`rz`命令 1.通过Xshell连接你的linux服务器 在此之前先安装lrzsz `yum install -y lrzsz` 安装后在命令行输入 `rz`  failed (111: Connection refused) while connecting to upstream
nginx connect() failed (111: Connection refused) while connecting to upstream 今天将laravel项目部署到linux时,nginx日志报错nginx connect() failed (111: Connection refused) while connecting to upstream...