摘要: rpm -Uvh xxx.npm --nodeps --force 加上后面两句,可以覆盖当前版本,老换新也可以。 参考文档:https://www.cnblogs.com/ming-4/p/11700663.html 阅读全文
posted @ 2021-01-11 16:12 SimpleSmile 阅读(2044) 评论(0) 推荐(0)
摘要: 1.系统环境:CentOS Linux release 7.7.1908 (Core) 2.ssh 版本:OpenSSH_7.4p1, OpenSSL 1.0.2k-fips 26 Jan 2017 3.禁止scp 3.1 rpm -qa|grep openssh-* 3.2 yum remove 阅读全文
posted @ 2021-01-11 11:50 SimpleSmile 阅读(14886) 评论(2) 推荐(0)
摘要: 1.环境,本机电脑 windows10,虚拟机VM (centos 7.9.2009) 2.下载minikube,参考官网:https://minikube.sigs.k8s.io/docs/start/ 3.启动minikube先决条件,安装 kubectl,参考官网:https://kubern 阅读全文
posted @ 2021-01-10 10:09 SimpleSmile 阅读(552) 评论(0) 推荐(0)
摘要: 在pom.xml文件中,<build></build>标签内添加 <resources> <resource> <!-- 将resource 的配置文件加载进去--> <directory>src/main/resources</directory> <includes> <include>**/* 阅读全文
posted @ 2021-01-08 16:18 SimpleSmile 阅读(300) 评论(0) 推荐(0)
摘要: $(function(){ $('#tt').datagrid({ title:'Editable DataGrid', iconCls:'icon-edit', width:660, height:250, singleSelect:true, idField:'itemid', url:'dat 阅读全文
posted @ 2021-01-07 14:29 SimpleSmile 阅读(130) 评论(0) 推荐(0)
摘要: 1.问题描述: 将业务代码放在service层,执行saveOrUpdate()时,出现对象已经存在的异常。Exception in thread"main"org.hibernate.NonUniqueObjectException: a different object with the sam 阅读全文
posted @ 2021-01-06 09:52 SimpleSmile 阅读(612) 评论(0) 推荐(0)
摘要: 1.比如post表单,传body 形式非json格式 而是 username=admin&password=password ngx.req.read_body() local args = ngx.req.get_body_data() local asArr = split(args,"&") 阅读全文
posted @ 2021-01-05 09:40 SimpleSmile 阅读(192) 评论(0) 推荐(0)
摘要: 1.dvwa是一个开源用来测试sql注入的php网站 2.源码地址:https://github.com/digininja/DVWA 下载都在这里 3.下载dvwa,通过配置host可以下载相应资源文件(资源文件名 dvwa-master)( git clone https://github.co 阅读全文
posted @ 2021-01-04 17:50 SimpleSmile 阅读(243) 评论(0) 推荐(0)
摘要: 1.打开浏览器:https://www.ipaddress.com/ 2.输入下载域名 3.将域名解析的ip地址,写入host文件中 C://windows//system32/drive/etc/host ip地址 域名 保存 这样就可以下载资源了。 阅读全文
posted @ 2021-01-04 16:39 SimpleSmile 阅读(395) 评论(0) 推荐(0)
摘要: 1 #注意,初始化 pip install pypiwin32 # 重新下载命令 : python -m pip install --upgrade pypiwin32 --force-reinstall 2 #如果是离线,则需要到pypiwin32官网下载文件,放入Python安装目录的Scrip 阅读全文
posted @ 2020-12-28 10:28 SimpleSmile 阅读(639) 评论(0) 推荐(0)