Dolen

导航

2021年11月7日 #

linux安装mysql数据库

摘要: linux安装mysql 阅读全文

posted @ 2021-11-07 22:49 Dolen 阅读(60) 评论(0) 推荐(0) 编辑

2021年5月13日 #

docker for window WSL 2 installation is incomplete 错误,导致docker无法启动

摘要: 1、错误截图如下: 2、错误原因:由于wsl2版本旧,根据提示让我们手动更新包,去微软官网下载最新wsl2后,安装完成重启即可解决。 3、下载地址:download地址 阅读全文

posted @ 2021-05-13 22:11 Dolen 阅读(737) 评论(0) 推荐(0) 编辑

2021年5月10日 #

vue Module parse failed: Unexpected token You may need an appropriate loader to handle this file type

摘要: 1、错误截图: 2、错误原因:webpack 原生只支持 js 文件类型,及 es5 的语法 3、解决方法:在webpack.config.js中,增加以下配置 module: { rules: [ { test: /.vue$/, loader: 'vue-loader' } ] } 阅读全文

posted @ 2021-05-10 17:52 Dolen 阅读(26943) 评论(1) 推荐(0) 编辑

2021年5月7日 #

vue this.getOptions is not a function

摘要: 错误提示截图: 问题原因:是由于sass-loader引用的版本过低导致 解决方法:在package.json中增加以下配置后 "sass-loader": "^10" 重新npm install下,问题解决 阅读全文

posted @ 2021-05-07 12:11 Dolen 阅读(797) 评论(0) 推荐(0) 编辑

2021年1月20日 #

vue Blob 下载附件报错

摘要: vue Blob 下载附件报错,不妨试试: window.location.href=后台地址 阅读全文

posted @ 2021-01-20 20:39 Dolen 阅读(143) 评论(0) 推荐(0) 编辑

2020年3月12日 #

Centos 7下安装nginx,使用yum install nginx,提示没有可用的软件包

摘要: 先安装:yum -y install epel-release 再安装:yum -y install nginx 阅读全文

posted @ 2020-03-12 22:18 Dolen 阅读(264) 评论(0) 推荐(0) 编辑

2019年11月15日 #

centos7 nginx 域名能ping通,但无法打开网页

摘要: 方法一:关闭防火墙 方法二:容许80端口访问 vim打开iptables, 命令如下: 增加 重新启动防火墙 阅读全文

posted @ 2019-11-15 08:53 Dolen 阅读(1494) 评论(0) 推荐(0) 编辑

2019年11月11日 #

CentOS7 No rule to make target

摘要: 由于缺少依赖包,需要安装以下包: 阅读全文

posted @ 2019-11-11 10:43 Dolen 阅读(1136) 评论(1) 推荐(0) 编辑

centos7 netstat command not found

摘要: 只需要执行: 就ok。 阅读全文

posted @ 2019-11-11 10:36 Dolen 阅读(593) 评论(0) 推荐(0) 编辑

centos7 ./configure --prefix error checking for C compiler

摘要: 解决方法: 输入以下命令 阅读全文

posted @ 2019-11-11 09:25 Dolen 阅读(466) 评论(0) 推荐(0) 编辑