摘要: 解决方案: git clone 项目失败,报下面的错误信息: $ git clone http://192.168.0.141/xxxx.git Cloning into 'appEnterprise'... remote: HTTP Basic: Access denied fatal: Auth 阅读全文
posted @ 2019-04-25 16:06 chendashuo 阅读(562) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2024-01-22 11:58 chendashuo 阅读(7) 评论(0) 推荐(0) 编辑
摘要: Exception: 所有异常对象的基类。 SystemException:运行时产生的所有错误的基类。 IndexOutOfRangeException:当一个数组的下标超出范围时运行时引发。 NullReferenceException:当一个空对象被引用时运行时引发。 InvalidOpera 阅读全文
posted @ 2022-09-20 19:58 chendashuo 阅读(1008) 评论(0) 推荐(0) 编辑
摘要: function S4() { return (((1+Math.random())*0x10000)|0).toString(16).substring(1); } function guid() { return (S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-" 阅读全文
posted @ 2022-05-09 20:55 chendashuo 阅读(25) 评论(0) 推荐(0) 编辑
摘要: Response.ContentType = "application/pdf";Response.AddHeader("Content-Disposition", "attachment;FileName=xxxxxxxxxxx")Response.AddHeader("Content-Dispo 阅读全文
posted @ 2022-03-25 13:57 chendashuo 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 之前我们基本都是通过管理gitlab某个项目的成员的方式,管理gitlab的权限。 原先由同事账号在生产机器上配置git ,同事离职,权限被拉掉了,索性用 deploy key 方式拉取代码. 生成deploy key ,另存ssh-keygen -f ~/.ssh/deploy_key_repo1 阅读全文
posted @ 2022-01-13 20:20 chendashuo 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 定义变量 a. select @start := 666; 赋默认值 := b.select @start; 赋值set @start =2 ;select @start ; 阅读全文
posted @ 2021-03-12 17:59 chendashuo 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 个人情况,发现站点访问不了,裸服务器,只有装一个docker ,于是想杀掉这个镜像重启康康, 杀掉镜像 docker kill 镜像名称 无奈报错:Error response from daemon: Cannot restart container xxx: driver failed prog 阅读全文
posted @ 2020-11-09 11:34 chendashuo 阅读(468) 评论(0) 推荐(0) 编辑
摘要: IIS 部署 ASP.NET Core主机捆绑包包含运行现有Web /服务器应用程序所需的一切,下载安装就完事了. https://dotnet.microsoft.com/permalink/dotnetcore-current-windows-runtime-bundle-installer h 阅读全文
posted @ 2020-11-06 17:03 chendashuo 阅读(628) 评论(0) 推荐(0) 编辑
摘要: SpringBoot向后台传参的若干种方式 前言 说到传参肯定大家都不陌生,从事开发的更可以可以说是天天遇到了,这篇文章也就是主要记录以下传参的各种方式,因为经常使用的是SpringBoot来开发,所以就拿SpringBoot来举例,记录前端向后端传参的若干种方式。 普通传参(前端参数与后端形参名称 阅读全文
posted @ 2020-08-14 16:36 chendashuo 阅读(2937) 评论(0) 推荐(0) 编辑
摘要: 【修改数据库】 alter database ExpertExaminationDB character set utf8; 【修改数据表】(生成sql语句,再执行) SELECT CONCAT( 'ALTER TABLE ',TABLE_NAME,' CONVERT TO CHARACTER SE 阅读全文
posted @ 2020-07-28 16:50 chendashuo 阅读(234) 评论(0) 推荐(0) 编辑