上一页 1 2 3 4 5 6 7 ··· 28 下一页
摘要: 1. 开放端口9200 和 5601 2. 开放端口 Centos7开放及查看端口 https://www.cnblogs.com/heqiuyong/p/10460150.htm – 开放指定端口 firewall-cmd --zone=public --add-port=9200/tcp --p 阅读全文
posted @ 2021-09-24 08:26 魏三斗 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 1. 修改elasticsearch 配置文件 #进入es安装目录下的config目录 vim elasticsearch.yml # 配置X-Pack http.cors.enabled: true http.cors.allow-origin: "*" http.cors.allow-heade 阅读全文
posted @ 2021-09-24 08:17 魏三斗 阅读(562) 评论(0) 推荐(0) 编辑
摘要: 1. 下载(一定要与Elasticsearch版本一致,不然会出现 Kibana server is not ready yet) 2. 下载地址: https://www.elastic.co/cn/downloads/ 3. 解压:tar -zxvf 4. 如果是root用户的话,不能启动。得创 阅读全文
posted @ 2021-09-24 07:01 魏三斗 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 在centos7 安装Elasticsearch 步骤:1. 下载安装包wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.14.1-linux-x86_64.tar.gz2. 解压tar -zxvf x 阅读全文
posted @ 2021-09-14 11:33 魏三斗 阅读(572) 评论(0) 推荐(0) 编辑
摘要: 当程序在执行过程中,抛出异常,它会改变程序的执行流程。因此不能保证后边的程序会一定执行,在C#中,由finally 解决。 为了确保一个语句能够完全执行(不管是否会抛出异常),需要将执行的语句放到finally块中。 finally 要么紧接在 try 块之后,要么紧接在 try 块之后的最后一个 阅读全文
posted @ 2021-08-11 07:30 魏三斗 阅读(652) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_40877388/article/details/107383994 阅读全文
posted @ 2021-08-11 07:05 魏三斗 阅读(44) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/hany3000/article/details/9316495 阅读全文
posted @ 2021-07-15 09:54 魏三斗 阅读(271) 评论(0) 推荐(0) 编辑
摘要: insert ignore表示,如果表中已经存在相同的记录,则忽略当前新数据; insert ignore into table(name) select name from table2 例 INSERT INTO有无数据都插入,如果主键则不插入 1.insert语句一次可以插入多组值,每组值用一 阅读全文
posted @ 2021-07-02 07:18 魏三斗 阅读(735) 评论(0) 推荐(0) 编辑
摘要: HTTP 400 - 请求无效; HTTP 401.1 - 未授权:登录失败; HTTP 401.2 - 未授权:服务器配置问题导致登录失败; HTTP 401.3 - ACL 禁止访问资源; HTTP 401.4 - 未授权:授权被筛选器拒绝; HTTP 401.5 - 未授权:ISAPI 或 C 阅读全文
posted @ 2021-07-02 06:39 魏三斗 阅读(360) 评论(0) 推荐(0) 编辑
摘要: from selenium.webdriver.chrome.options import Optionsfrom selenium import webdriver # 无界面模式def ChromeDriverNOBrowser(): chrome_options = Options() chr 阅读全文
posted @ 2021-07-01 15:01 魏三斗 阅读(261) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 28 下一页