企业网站能提供哪些服务wordpress 归档文章

diannao/2026/1/25 5:51:22/文章来源:
企业网站能提供哪些服务,wordpress 归档文章,wordpress仿链家,浙江移动网站建设制作漏洞处理方法#xff1a; 1、可以使用系统防火墙 来做限制只允许ES集群和Server节点的IP来访问漏洞节点的9200端口#xff0c;其他的全部拒绝。 2、在ES节点上设置用户密码 漏洞现象#xff1a;直接访问9200端口不需要密码验证 修复过程 2.1 生成认证文件 必须要生成…漏洞处理方法 1、可以使用系统防火墙 来做限制只允许ES集群和Server节点的IP来访问漏洞节点的9200端口其他的全部拒绝。 2、在ES节点上设置用户密码 漏洞现象直接访问9200端口不需要密码验证 修复过程 2.1 生成认证文件 必须要生成认证文件且ES配置文件里要引用这些生成的认证文件否则启动ES的时候日志会报错Caused by: javax.net.ssl.SSLHandshakeException: No available authentication scheme。 CA 证书 [rootnode1 elasticsearch-7.6.2]# su es [esnode1 elasticsearch-7.6.2]$ ./bin/elasticsearch-certutil ca This tool assists you in the generation of X.509 certificates and certificate signing requests for use with SSL/TLS in the Elastic stack.The ca mode generates a new certificate authority This will create a new X.509 certificate and private key that can be used to sign certificate when running in cert mode.Use the ca-dn option if you wish to configure the distinguished name of the certificate authorityBy default the ca mode produces a single PKCS#12 output file which holds:* The CA certificate* The CAs private keyIf you elect to generate PEM format certificates (the -pem option), then the output will be a zip file containing individual files for the CA certificate and private keyPlease enter the desired output file [elastic-stack-ca.p12]: Enter password for elastic-stack-ca.p12 :2.2 生成p12密钥 使用第一步生成的证书生成p12秘钥 [esnode1 elasticsearch-7.6.2]$ ./bin/elasticsearch-certutil cert --ca elastic-stack-ca.p12 This tool assists you in the generation of X.509 certificates and certificate signing requests for use with SSL/TLS in the Elastic stack.The cert mode generates X.509 certificate and private keys.* By default, this generates a single certificate and key for useon a single instance.* The -multiple option will prompt you to enter details for multipleinstances and will generate a certificate and key for each one* The -in option allows for the certificate generation to be automated by describingthe details of each instance in a YAML file* An instance is any piece of the Elastic Stack that requires an SSL certificate.Depending on your configuration, Elasticsearch, Logstash, Kibana, and Beatsmay all require a certificate and private key.* The minimum required value for each instance is a name. This can simply be thehostname, which will be used as the Common Name of the certificate. A fulldistinguished name may also be used.* A filename value may be required for each instance. This is necessary when thename would result in an invalid file or directory name. The name provided hereis used as the directory name (within the zip) and the prefix for the key andcertificate files. The filename is required if you are prompted and the nameis not displayed in the prompt.* IP addresses and DNS names are optional. Multiple values can be specified as acomma separated string. If no IP addresses or DNS names are provided, you maydisable hostname verification in your SSL configuration.* All certificates generated by this tool will be signed by a certificate authority (CA).* The tool can automatically generate a new CA for you, or you can provide your own with the-ca or -ca-cert command line options.By default the cert mode produces a single PKCS#12 output file which holds:* The instance certificate* The private key for the instance certificate* The CA certificateIf you specify any of the following options:* -pem (PEM formatted output)* -keep-ca-key (retain generated CA key)* -multiple (generate multiple certificates)* -in (generate certificates from an input file) then the output will be be a zip file containing individual certificate/key filesEnter password for CA (elastic-stack-ca.p12) : Please enter the desired output file [elastic-certificates.p12]: Enter password for elastic-certificates.p12 : Certificates written to /home/elasticsearch-7.6.2/elastic-certificates.p12This file should be properly secured as it contains the private key for your instance.This file is a self contained file and can be copied and used as is For each Elastic product that you wish to configure, you should copy this .p12 file to the relevant configuration directory and then follow the SSL configuration instructions in the product guide.For client applications, you may only need to copy the CA certificate and configure the client to trust this certificate.2.3 将p12认证文件copy到其他节点 [esnode1 elasticsearch-7.6.2]$ cd config/ [esnode1 config]$ ll total 36 -rw-rw---- 1 es es 3284 Dec 14 07:49 elasticsearch.yml -rw-rw---- 1 es es 2301 Mar 26 2020 jvm.options -rw-rw---- 1 es es 17545 Mar 26 2020 log4j2.properties -rw-rw---- 1 es es 473 Mar 26 2020 role_mapping.yml -rw-rw---- 1 es es 197 Mar 26 2020 roles.yml -rw-rw---- 1 es es 0 Mar 26 2020 users -rw-rw---- 1 es es 0 Mar 26 2020 users_roles [esnode1 config]$ mkdir certs [esnode1 config]$ cp ../elastic-certificates.p12 certs/ [rootnode1 elasticsearch-7.6.2]# scp -r config node2:/home/elasticsearch-7.6.2/ log4j2.properties 100% 17KB 12.2MB/s 00:00 users_roles 100% 0 0.0KB/s 00:00 roles.yml 100% 197 406.7KB/s 00:00 users 100% 0 0.0KB/s 00:00 role_mapping.yml 100% 473 1.0MB/s 00:00 elasticsearch.yml 100% 3284 3.2MB/s 00:00 jvm.options 100% 2301 4.4MB/s 00:00 elastic-certificates.p12 100% 3443 3.1MB/s 00:00 [rootnode1 elasticsearch-7.6.2]# scp -r config node3:/home/elasticsearch-7.6.2/ log4j2.properties 100% 17KB 14.6MB/s 00:00 users_roles 100% 0 0.0KB/s 00:00 roles.yml 100% 197 492.4KB/s 00:00 users 100% 0 0.0KB/s 00:00 role_mapping.yml 100% 473 1.1MB/s 00:00 elasticsearch.yml 100% 3284 2.7MB/s 00:00 jvm.options 100% 2301 5.0MB/s 00:00 elastic-certificates.p12 100% 3443 3.9MB/s 00:00 [rootnode1 elasticsearch-7.6.2]#2.4 修改所有ES节点配置文件 xpack.security.enabled: true xpack.security.transport.ssl.enabled: true xpack.security.transport.ssl.verification_mode: certificate xpack.security.transport.ssl.keystore.path: certs/elastic-certificates.p12 xpack.security.transport.ssl.truststore.path: certs/elastic-certificates.p122.5 启动集群各节点 [esnode1 elasticsearch-7.6.2]$ ./bin/elasticsearch -d2.6 自动生成密码 集群也是一台节点生成密码即可 [esnode1 elasticsearch-7.6.2]$ ./bin/elasticsearch-setup-passwords auto Initiating the setup of passwords for reserved users elastic,apm_system,kibana,logstash_system,beats_system,remote_monitoring_user. The passwords will be randomly generated and printed to the console. Please confirm that you would like to continue [y/N]yChanged password for user apm_system PASSWORD apm_system BY8QVLtnyPiIKQKWB9THChanged password for user kibana PASSWORD kibana 4MLTzLOC6LGYHkGw0YuWChanged password for user logstash_system PASSWORD logstash_system GatyQw87IIPPs8dNReSfChanged password for user beats_system PASSWORD beats_system WsahN3DcIKa4514sxv4nChanged password for user remote_monitoring_user PASSWORD remote_monitoring_user KBqzFIkgkxytVpswaJW6Changed password for user elastic PASSWORD elastic ltwcC9q77f0yZMV9CPWl[esnode1 elasticsearch-7.6.2]$3、验证漏洞是否修复成功 [esnode1 elasticsearch-7.6.2]$ curl http://192.168.200.167:9200/_cat/indices?pretty -u elastic

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/88410.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

怎么做网站 有空间30号长沙封城最新消息

1、transciptMode属性,需要用ListView或者其它显示大量Items的控件实时跟踪或者查看信息,并且希望最新的条目可以自动滚动到可视范围内。通过设置的控件transcriptMode属性可以将Android平台的控件(支持ScrollBar)自动滑动到最底部…

电子商务的网站建设过程上海seo网站排名优化公司

目录 一、 Lua 脚本 1、初始化 Lua 环境 2、脚本的安全性 3、脚本的执行 4、 EVAL 命令的实现 定义 Lua 函数 执行 Lua 函数 5、 EVALSHA 命令的实现 二、 小结 一、 Lua 脚本 Lua 脚本功能是 Reids 2.6 版本的最大亮点,通过内嵌对 Lua 环境的支持&#xf…

宁阳网站建设网站管理员招聘

目录 1、问题描述 2、安卓app发生崩溃,需要查看汇编代码上下文去辅助分析 3、使用IDA打开.so动态库文件,提示Relocations for this machine are not implemented 4、IDA版本较老,不支持ARM64的指令集,使用7.0版本就可以了 5、…

电商网站的设计与实现视频教程软件开发业务流程图

1、view下的 Cmmand Palette 下的Change file Encoding simplifiled chinese GB2312

知名的传媒行业网站开发网页界面设计中常用的中英文字体有哪些

解析卷积神经网络—深度学习实践手册从实用角度着重解析了深度学习中的一类神经网络模型——卷积神经网络,向读者剖析了卷积神经网络的基本部件与工作机理,更重要的是系统性的介绍了深度卷积神经网络在实践应用方面的细节配置与工程经验。笔者希望本书“…

通辽市北京网站建设wordpress做成app

正确而合理的配置IIS是构建一个高性能和高可扩展应用的基础。虽然很多的时候采用默认的配置就已经可以处理一般的情况,但是随着站点应用的发展,特别是当访问量稍微大一点的时候,就会暴露出很多我们认为的“奇奇怪怪”的问题。 所以&#xff0…

做婚宴的网站有哪些网站开发要服务器吗

葡萄酒可以在许多不同的场合成为很好的礼物,因为它可以用来庆祝许多不同的事情。当被邀请去别人家时,你可以带酒去吃饭。葡萄酒可以用来纪念婚礼、出生、毕业和各种纪念日,来自云仓酒庄品牌雷盛红酒分享这是一个非常合适的专业礼物。但是你怎…

泉州做网站企业产品网站开发流程图

服务器端:编辑/etc/ssh/sshd_config中的以下内容 启用AllowTcpForwarding 启用X11Forwarding 将X11DisplayOffset设定为10. 启用X11UseLocalhost 客户机端:编辑/etc/ssh/ssh_config中的以下内容 启用X11Forwarding 连接时ssh -X或者ssh -Y就可以了…

宁波网站优化公司hao123网址之家官网电脑版

由于用到 RFileWriteStream 写入汉字到文件中,之前没有处理过,等写入文件后才发现是乱码。 问了问群里的朋友也没有解决,后来就上网搜,终于找到一个解决方法,就是用 CCnvCharacterSetConverter 类 这个类是用来转换Uni…

苏州建设银行招聘网站手机网站域名解析怎么做

参考: 大数据中台架构以及建设全流程一(Paas层设计) 大数据中台架构以及建设全流程二(Daas层设计)

大创意网站拼多多采用了哪些网络营销方式

由于双链表中大部分操作其实和单链表操作类似,所以这里只挑关键的一些函数 1、定义与初始化 typedef struct DNode {ElementType data;struct DNode *prior,*next; }DNode,*DLinkList;bool InitialDLinkList(DLinkList &L){L (DNode *)malloc(sizeof(DNode));…

用php做购物网站视频单片机编程入门基础知识

匿名函数 简介 匿名函数:为了解决那些功能很简单的需求而设计的一句话函数。 python 使用 lambda 来创建匿名函数。 所谓匿名,意即不再使用 def 语句这样标准的形式定义一个函数。 1 lambda 只是一个表达式,函数体比 def 简单很多。 2 lambda…

服装移动网站策划案phpcms网站建设

纯手写,如果哪写错了,还希望指正 IP地址192.168.127.101,子网掩码255.255.255.192,计算网络地址,主机号,广播地址和主机最大数 255.255.255.192子网掩码转换成二进制为 11111111.11111111.11111111.11000…

河北网站备案 多长时间通过钓鱼网站怎么做

目录 问题描述输入格式输出格式代码实现 问题描述 小蓝拥有n n大小的棋盘,一开始棋盘上全都是白子。小蓝进行了m.次操作,每次操作会将棋盘上某个范围内的所有棋子的颜色取反(也就是白色棋子变为黑色,黑色棋子变为白色)。请输出所…

远丰做网站怎么样2015网站设计风格

2014-09-25 Created By BaoXinjian 一、摘要 集合是Oracle开发中经常遇到的情况,Oracle集合分为三种情况:索引表集合(index by table)、嵌套表集合(nested table)、可变集合(varry table)。 PL/SQL中没有数组的概念,他的集合数据类型和数组是…

沧州北京网站建设如何在网站后台备份数据库表

前言 关于 Android 车机,之前分析过方控上自定义按键的输入机制和中控上旋钮输入的原理,但都局限于 Car Service 内 Input 相关模块。 一文了解 Android 车机如何处理中控的旋钮输入从实体按键看 Android 车载的自定义事件机制 本文将结合 Android 系…

建湖做网站哪家最好开通网站空间

在C和C中,int main(int argc, char* argv[])语句作为程序的入口,在main函数中常常用到。 argc:argument count,参数的数量。argc是一个整型数,代表传入程序的命令行参数的数量。程序名称是第一个参数,所以…

只做衬衣网站网站推广策划的策略

维护API很难。 我们正在维护非常复杂的jOOQ API。 但是就语义版本而言,我们遵循相对宽松的规则 。 当您阅读Brian Goetz和其他人关于在JDK中保持向后兼容性的评论时,我只能对他们的工作表示敬意。 显然,我们都希望最终移除Vector &#xff…

中国在数码网站注册域名好>软件工程师证书报考网站

C# 中的 Task< T> 是一个非常强大的并发编程工具&#xff0c;它允许我们异步执行操作并返回一个结果。在这篇博客中&#xff0c;我们将详细介绍 Task< T> 的应用&#xff0c;包括它的基本概念、创建方式、等待和取消等操作&#xff0c;以及一些常见的使用场景。 基…

专门做旅游攻略的网站抖音seo公司

npm - 软件包管理器 定义 npm是Node.js标准的软件包管理器 npm仓库中包含大量软件包,使其成为世界上最大的单一语言代码仓,并且可以确定几乎可用于一切的软件包 最初是为了下载和管理Node.js包依赖的方式,但其现在已成为前端JavaScript中使用的工具 使用: 1.初始化清单文…