码迷,mamicode.com
首页 >  
搜索关键字:vim find    ( 39587个结果
Nginx的调度算法
一、ip_hash vim /etc/nginx/nginx.conf http { upstream websrvs { server 192.168.1.4:80; server 192.168.1.6:80; server 127.0.0.1:8080 backup; ip_hash; } } ...
分类:编程语言   时间:2021-06-10 18:33:41    阅读次数:0
kali2020.4安装openvas(gvm)
记录一下,方便复习 1、更换kali源,默认源注释掉。 sudo vim /etc/apt/sources.list #中科大 deb http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib deb-src http:// ...
分类:其他好文   时间:2021-06-10 17:55:25    阅读次数:0
ubuntu 将idea/vscode快捷方式加入到启动器中
1、进入 applications cd /usr/share/applications 2、创建文件 sudo vim idea.desktop [Desktop Entry] Encoding=UTF-8 Version=1.0 Name=IntelliJ IDEA GenericName=Ja ...
分类:系统相关   时间:2021-06-10 17:51:51    阅读次数:0
【问题解决】SpringBoot工程无法找到父依赖 parent-pom Failure to find com.xxx:parent-pom:pom:1.0.0.RELEASE
总结下碰到的BUG,之前遇到忘记记录下来,导致又进行了重复无用的搜索定位解决BUG操作。 问题:Non-resolvable parent POM for com.alili:base-model:[unknown-version]: Failure to find com.alili:parent ...
分类:编程语言   时间:2021-06-10 17:48:24    阅读次数:0
mongodb find sort limit batchsize操作
find()后sort排序报错: 在使用node.js+mongodb开发的后端项目,在查询时,使用了排序,出现如下报错 Mongodb: Sort operation used more than the maximum 33554432 bytes of RAM1Mongodb的sort操作是把 ...
分类:数据库   时间:2021-06-08 23:44:06    阅读次数:0
python selenium 获取xlink元素内容
for link in driver.find_elements_by_css_selector("tr:nth-child(1) > td.taskStatus use"): assert_status = link.get_attribute('xlink:href') print(assert ...
分类:编程语言   时间:2021-06-07 20:49:35    阅读次数:0
python selenium 获取元素列表的长度
rows = driver.find_elements_by_css_selector('div.wrapper>ul.list>li')logger.info(len(rows)) ...
分类:编程语言   时间:2021-06-07 20:41:35    阅读次数:0
Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException:解决方法
1.在自己的服务器中找到redis的配置文件 redis.conf 使用命令vi redis.conf或vim redis.conf ...
分类:其他好文   时间:2021-06-07 20:35:04    阅读次数:0
安装docker遇到的坑 Could not resolve host: download.docker.com
vim /etc/sysconfig/network-scripts/ifcfg-ens33 增加如下内容 DNS1=8.8.8.8 DNS2=114.114.114.114 PEERDNS="no" 重启网络 service network restart ...
分类:其他好文   时间:2021-06-07 20:27:38    阅读次数:0
camke(6)配置pangolin 4slam划轨迹和相机位置姿态
CMakeLists.txt # cmake needs this line cmake_minimum_required(VERSION 3.1) # Define project name project(Pangolin_project) #添加Pangolin画图依赖库 find_packa ...
分类:其他好文   时间:2021-06-06 19:47:00    阅读次数:0
39587条   上一页 1 ... 4 5 6 7 8 ... 3959 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!