当前位置: 首页 > news >正文

ui设计师的网站北京seo全网营销

ui设计师的网站,北京seo全网营销,织梦网站备份,软件开发在哪能看大家好#xff0c;我是烤鸭#xff1a; 环境#xff1a;linux Cent OS 7.3elasticsearch-6.2.4 1. 下载elasticsearch https://www.elastic.co/downloads/elasticsearch 上面的网址直接下载的话#xff0c;实在太慢了。官方还提供了另一种方式。 https://www.elastic.co…大家好我是烤鸭    环境linux Cent OS 7.3elasticsearch-6.2.4 1. 下载elasticsearch https://www.elastic.co/downloads/elasticsearch 上面的网址直接下载的话实在太慢了。官方还提供了另一种方式。 https://www.elastic.co/guide/en/elasticsearch/reference/current/zip-targz.html  如图。wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.2.4.tar.gz wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.2.4.tar.gz.sha512 shasum -a 512 -c elasticsearch-6.2.4.tar.gz.sha512 tar -xzf elasticsearch-6.2.4.tar.gz cd elasticsearch-6.2.4/ ./bin/elasticsearch 2.  启动及常见问题异常1org.elasticsearch.bootstrap.StartupException: java.lang.RuntimeException: can not run elasticsearch as root.    2.1  创建es用户和用户组es指定密码es赋予权限。/opt/elasticsearch/为es安装目录 groupadd es useradd es -g es -p es chown -R es.es /opt/elasticsearch/2.2  切换es用户访问成功 su - es ./elasticsearch-6.2.4/bin/elasticsearch上一张启动成功的图2.3  常见异常异常2  bound or publishing to a non-loopback address, enforcing bootstrap checks                ERROR: [2] bootstrap checks failed[1]: max file descriptors [65535] for elasticsearch process is too low, increase to at least [65536] [2]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]     2.4   修改   limits.conf vim /etc/security/limits.conf最后一行加 * soft nofile 65536 * hard nofile 131072此文件修改后需要重新登录用户才会生效。2.5  编辑权限 vim /etc/security/limits.d/xx-nproc.conf 最下面加上两行 * soft nproc 2048 * soft nproc 40962.6  修改配置文件 vi /etc/sysctl.conf sysctl -p 如图2.7  切换es用户重新启动 su - es cd /opt/elasticsearch/elasticsearch-6.2.4/bin ./elasticsearch后台启动 ./elasticsearch -d成功如图       2.8   测试访问阿里云的服务器需要在安全组配置端口开放才可以访问。2.9  yml配置可以看出来上面的启动端口不是8200和8300分享一下yml配置说明。     # Elasticsearch Configuration # # NOTE: Elasticsearch comes with reasonable defaults for most settings. # Before you set out to tweak and tune the configuration, make sure you # understand what are you trying to accomplish and the consequences. # # The primary way of configuring a node is via this file. This template lists # the most important settings you may want to configure for a production cluster. # # Please consult the documentation for further information on configuration options: # https://www.elastic.co/guide/en/elasticsearch/reference/index.html # # ---------------------------------- Cluster ----------------------------------- # # Use a descriptive name for your cluster: # cluster.name: yxd-es # # ------------------------------------ Node ------------------------------------ # # Use a descriptive name for the node: # node.name: node-1 # # 设置充当master节点默认为true # node.master: true   # # 设置不充当data节点默认为true # node.data: true # # Add custom attributes to the node: # #node.attr.rack: r1 # # ----------------------------------- Paths ------------------------------------ # # Path to directory where to store the data (separate multiple locations by comma): # path.data: ../data    #数据目录 # # Path to log files: # path.logs: ../logs    #日志目录 # # ----------------------------------- Memory ----------------------------------- # # Lock the memory on startup: # #设置为true来锁住内存。因为内存交换到磁盘对服务器性能来说是致命的当jvm开始swapping时es的效率会降低所以要保证它不swap #bootstrap.memory_lock: true # # Make sure that the heap size is set to about half the memory available # on the system and that the owner of the process is allowed to use this # limit. # # Elasticsearch performs poorly when the system is swapping the memory. # # ---------------------------------- Network ----------------------------------- # # Set the bind address to a specific IP (IPv4 or IPv6): # network.host: 192.168.1.1    (服务器内网ip) network.bind_host: 192.168.1.1 (服务器内网ip) # # Set a custom port for HTTP: # http.port: 9303    #设置对外服务的http端口默认为9200 transport.tcp.port: 9393   # 设置节点间交互的tcp端口,默认是9300   # transport.publish_host: 127.0.0.1     # 发布集群中要连接到的节点的主机地址。默认为transport.host如果设置或network.publish_host# transport.bind_host: 127.0.0.1 #将传输服务绑定到的主机地址。默认为transport.host如果设置或network.bind_host# transport.publish_port: 9300    # 与此节点通信时群集中其他节点应使用的端口。当群集节点位于代理或防火墙之后并且transport.tcp.port不能从外部直接寻址时很有用。默认为通过分配的实际端口 transport.tcp.port# # For more information, consult the network module documentation. # # --------------------------------- Discovery ---------------------------------- # # Pass an initial list of hosts to perform discovery when new node is started: # The default list of hosts is [127.0.0.1, [::1]] # #这提供了自动集群体验而无需进行任何配置。数组设置或逗号分隔的设置。每个值的形式应该是host:port或host   #如果没有设置port默认设置会transport.profiles.default.port 回落到transport.tcp.port。   #请注意IPv6主机必须放在括号内。默认为127.0.0.1, [::1]   discovery.zen.ping.unicast.hosts: [内网ip:9393] # # Prevent the split brain by configuring the majority of nodes (total number of master-eligible nodes / 2 1): # #discovery.zen.minimum_master_nodes: # # For more information, consult the zen discovery module documentation. # # ---------------------------------- Gateway ----------------------------------- # # Block initial recovery after a full cluster restart until N nodes are started: # #gateway.recover_after_nodes: 3 # # For more information, consult the gateway module documentation. # # ---------------------------------- Various ----------------------------------- # # Require explicit names when deleting indices: # #action.destructive_requires_name: true2.10  调整jvm内存 vim /opt/elasticsearch/elasticsearch-6.2.4/config/jvm.options#默认是1g官方建议对jvm进行一些修改不然很容易出现OOM,参考官网改参数配置最好不要超过内存的50%     -Xms1g -Xmx1g2.11  更多关于多节点配置yml请参考    https://blog.csdn.net/qq_34021712/article/details/79342668配置文件中给出了三种配置高性能集群拓扑结构的模式,如下             # 1. 如果你想让节点从不选举为主节点,只用来存储数据,可作为数据节点             # node.master: true             # node.data: false            # node.ingest: true            # 2. 如果想让节点成为主节点,且不存储任何数据,并保有空闲资源,可作为协调器             # node.mastertrue             # node.datafalse             # node.ingestfalse             # 3. 如果想让节点既不称为主节点,又不成为数据节点,那么可将他作为摄取节点,从节点中获取数据,生成搜索结果等             # node.master: false             # node.data: false             # node.ingest: true            # 4. 仅作为协调器             # node.master: false             # node.data: false# node.ingest: false 3.    x-pack安装官方安装网址   https://www.elastic.co/cn/downloads/x-pack就按照官方的来就行。 bin/elasticsearch-plugin install x-pack3.1  启动访问,会提示输入用户名密码就成功了。 ./bin/elasticsearch3.2    初始化x-pack用户名,密码 bin/x-pack/setup-passwords auto用户名   和  密码 如图4.    kibana和x-pack安装官方安装网址      https://www.elastic.co/cn/downloads/kibana4.1    wget方式安装 wget https://artifacts.elastic.co/downloads/kibana/kibana-6.2.4-linux-x86_64.tar.gz shasum -a 512 kibana-6.2.4-linux-x86_64.tar.gz tar -xzf kibana-6.2.4-linux-x86_64.tar.gz cd kibana-6.2.4-linux-x86_64/ 4.2    修改配置文件/config/kibana.xmlelasticsearch.url: http://xxxxx:9303        #es的ipelasticsearch.username: elasticelasticsearch.password: changmeserver.host: 127.0.0.1  #kibana的启动ip  server.port: 9399    #kibana的启动端口4.3   启动9399端口./bin/kibana4.4   访问用户名,密码就是刚才elastic的用户名和密码首页4.5  kibana的x-pack安装 cd /opt/elasticsearch/kibana/kibana-6.2.4-linux-x86_64 bin/kibana-plugin install x-pack4.3   带x-pack启动可以看到比刚才多了monitoring选项可以检测es的节点等情况。过期时间是一个月以后。快要过期的话就再去注册x-pack每次注册可以使用一年。注册网址    https://register.elastic.co/xpack_registerps: 1.    关于集群多节点配置x-pack。每个节点都需要安装x-pack。但是kibana只需要安装一次。 2.    x-pack的密码修改。(需要指定content-type) curl -H Content-Type: application/json -XPUT -u elastic -p 内网ip:9303/_xpack/security/user/elastic/_password -d { password : 密码}如果忘记elastic用户的密码可以再创建一个用户超级角色的用户用户admin密码admin1 bin/x-pack/users useradd admin -p admin1 -r superuser 上面的请求改一下: curl -H Content-Type: application/json -XPUT -u admin -p 内网ip:9303/_xpack/security/user/elastic/_password -d { password : 密码} 会弹出让你输入密码输入admin1就可以完成密码修改了。更多关于elasticsearch 6.x内容1.   elasticsearch 6.x 部署 windows入门(一) spingboot连接
http://www.pierceye.com/news/941587/

相关文章:

  • 网站统计分析注册公司步骤和所需材料
  • 网站开发的好处和弊端客户管理系统简称
  • 网站开发提供图片加载速度wordpress速度
  • 购物网站如何备案wordpress首页自定义
  • 企业手机网站建设提升用户体验的三个点无极领域付费网站
  • 网站设计常州网站开发年度总结
  • 免费注册网站网址做网站大概要
  • 注册网站会不会有问题做网站建设的注意事项
  • 小吃培训网站源码淮南市招标投标信息网
  • 做网站申请多少类商标网站开发的案例分析模板
  • 怎么进网站后台管理系统在线二维码制作生成器
  • seo网站关键词优化多少钱陕西省建设厅网站官网
  • 仿xss网站搭建建设网站费用吗
  • 钓鱼网页在线生成网站网站建设肆金手指排名7
  • idc网站备案家具网站建设方案
  • 互联网做网站怎么赚钱WordPress副标题不显示
  • 好的网站域名网站运营推广怎做
  • 巴适网站建设wordpress上传与安装包
  • 网站备案不关站wordpress网
  • 中国佛山手机网站建设十大互联网公司排名
  • 手把手指导做网站wordpress 熊掌号插件
  • 宁波网站建设方案报价湖州企业做网站
  • 优化 导航网站百度官网网站首页
  • 各大网站大全河北网站建设seo优化制作设计
  • 做照片的网站前端开发和后端开发
  • 谁能低价做网站支付接口泰州企业自助建站系统
  • 徐州 网站建设辽阳建设网站
  • PHP MySQL 网站开发实例单页应用网站
  • 制作网站的步骤关于企业网站建设的相关思考
  • 统计局网站建设情况ppt设计网站