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

seo于刷网站点击湛江网站模板

seo于刷网站点击,湛江网站模板,索牛网站建设,中山建站公司安装 Elastic #xff1a;Elasticsearch#xff0c;Kibana#xff0c;Logstash 另外安装一个收集器filebeat 通过二进制安装包进行安装 创建一个专门放elk目录 mkdir /elk/ mkdir /elk/soft下载 es 、kibana、Logstash、filebeat二进制包 cd /elk/softwget https://art…安装 Elastic ElasticsearchKibanaLogstash 另外安装一个收集器filebeat 通过二进制安装包进行安装 创建一个专门放elk目录 mkdir /elk/ mkdir /elk/soft下载 es 、kibana、Logstash、filebeat二进制包 cd /elk/softwget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-8.15.4-linux-x86_64.tar.gz wget https://artifacts.elastic.co/downloads/kibana/kibana-8.15.4-linux-x86_64.tar.gz wget https://artifacts.elastic.co/downloads/logstash/logstash-8.15.4-linux-x86_64.tar.gz wget https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-8.15.4-linux-x86_64.tar.gz解压四个安装包 tar -zxvf kibana-8.15.4-linux-x86_64.tar.gz -C /elk/ tar -zxvf elasticsearch-8.15.4-linux-x86_64.tar.gz -C /elk/ tar -zxvf logstash-8.15.4-linux-x86_64.tar.gz -C /elk/ tar -zxvf elasticsearch-8.15.4-linux-x86_64.tar.gz -C /elk/ tar -zxvf filebeat-8.15.4-linux-x86_64.tar.gz -C /elk/查看解压出来的文件 [rootserver elk]# ls elasticsearch-8.15.4 filebeat-8.15.4-linux-x86_64 kibana-8.15.4 logstash-8.15.4 soft安装Elasticsearch 进入elasticsearch目录,修改配置文件 [rootserver elk]# cd elasticsearch-8.15.4/ [rootserver elasticsearch-8.15.4]# ls bin config jdk lib LICENSE.txt logs modules NOTICE.txt plugins README.asciidoc[rootserver config]# cd config/[rootserver config]# vim elasticsearch.yml ### 不同的集群使用不同的 cluster.name cluster.name: my-application ### 默认是主机名 node.name: node-1 network.host: 0.0.0.0 http.port: 9200 xpack.monitoring.collection.enabled: true 启动elasticsearch报错Elasticsearchjava.lang.RuntimeException: can not run elasticsearch as root [rootserver elasticsearch-8.15.4]# cd bin/ [rootserver bin]# ./elasticsearch warning: ignoring JAVA_HOME/usr/local/jdk-21.0.5; using bundled JDK Nov 14, 2024 2:46:50 PM sun.util.locale.provider.LocaleProviderAdapter clinit WARNING: COMPAT locale provider will be removed in a future release [2024-11-14T14:47:11,607][INFO ][o.e.n.NativeAccess ] [server] Using native vector library; to disable start with -Dorg.elasticsearch.nativeaccess.enableVectorLibraryfalse [2024-11-14T14:47:12,169][INFO ][o.e.n.NativeAccess ] [server] Using [jdk] native provider and native methods for [Linux] [2024-11-14T14:47:12,169][ERROR][o.e.b.Elasticsearch ] [server] fatal exception while booting Elasticsearchjava.lang.RuntimeException: can not run elasticsearch as rootat org.elasticsearch.server8.15.4/org.elasticsearch.bootstrap.Elasticsearch.initializeNatives(Elasticsearch.java:289)at org.elasticsearch.server8.15.4/org.elasticsearch.bootstrap.Elasticsearch.initPhase2(Elasticsearch.java:170)at org.elasticsearch.server8.15.4/org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:75)See logs for more details.ERROR: Elasticsearch did not exit normally - check the logs at /usr/local/elk/elasticsearch-8.15.4/logs/elasticsearch.logERROR: Elasticsearch died while starting up, with exit code 1这里有几个很明显的提示 有个告警warning: ignoring JAVA_HOME/usr/local/java; using bundled JDK Elasticsearch 安装包本身绑定使用的是 OpenJDK 。 Elasticsearch 使用 Java 构建在每个发行版中都包含 OpenJDK 捆绑版本。 ES 推荐使用默认的 OpenJDK 的 JVM该 JDK 位于$ES_HOME 的 jdk 目录中。 当然也可以改成使用自己的 Java 版本设置一下 ES_JAVA_HOME 环境变量指向自己的 JDK 即可。 建议还是使用 ES 默认的 JDK 进行构建无需其他额外的配置。 can not run elasticsearch as root 不能使用 root 用户来运行 ES。 创建一个 elastic 用户使用该用户启动 [rootserver config]# useradd user-es # 目录修改权限 [rootserver config]# cd /elk/ [rootserver elk]# chown user-es:user-es elasticsearch-8.15.4/ -R # 切换用户,进入目录 [rootserver config]# su - user-es [user-esserver ~]$ cd /elk/elasticsearch-8.15.4/ [user-esserver elasticsearch-8.15.4]$ ll total 2260 drwxr-xr-x 2 user-es user-es 4096 Nov 7 17:42 bin drwxr-xr-x 3 user-es user-es 210 Nov 15 15:28 config drwxr-xr-x 8 user-es user-es 96 Nov 7 17:42 jdk drwxr-xr-x 6 user-es user-es 4096 Nov 7 17:42 lib -rw-r--r-- 1 user-es user-es 3860 Nov 7 17:35 LICENSE.txt drwxr-xr-x 2 user-es user-es 6 Nov 7 17:37 logs drwxr-xr-x 83 user-es user-es 4096 Nov 7 17:42 modules -rw-r--r-- 1 user-es user-es 2285006 Nov 7 17:37 NOTICE.txt drwxr-xr-x 2 user-es user-es 6 Nov 7 17:37 plugins -rw-r--r-- 1 user-es user-es 10156 Nov 7 17:35 README.asciidoc 启动服务成功后记录一下最后输出的密码和密钥 [user-esserver elasticsearch-8.15.4]$ ./bin/elasticsearch ... ... ✅ Elasticsearch security features have been automatically configured! ✅ Authentication is enabled and cluster connections are encrypted.ℹ️ Password for the elastic user (reset with bin/elasticsearch-reset-password -u elastic):sLUaxXXma1MvHkYL2KNℹ️ HTTP CA certificate SHA-256 fingerprint:1588a660008e333c1c80e525323440b153515689f63c7bc9399f4e5948ed0fe4ℹ️ Configure Kibana to use this cluster: • Run Kibana and click the configuration link in the terminal when Kibana starts. • Copy the following enrollment token and paste it into Kibana in your browser (valid for the next 30 minutes):eyJ2ZXIiOiI4LjE0LjAiLCJhZHIiOlsiMTkyLjE2OC41Ni4xMzU6OTIwMCJdLCJmZ3IiOiIxNTg4YTY2MDAwOGUzMzNjMWM4MGU1MjUzMjM0NDBiMTUzNTE1Njg5ZjYzYzdiYzkzOTlmNGU1OTQ4ZWQwZmU0Iiwia2V5IjoiTl9pOExwTUJKWmt2dWNHbVVrOVE6c0xFVlZvbzFRVGluY1RZVzRONWxrZyJ9ℹ️ Configure other nodes to join this cluster: • Copy the following enrollment token and start new Elasticsearch nodes with bin/elasticsearch --enrollment-token token (valid for the next 30 minutes):eyJ2ZXIiOiI4LjE0LjAiLCJhZHIiOlsiMTkyLjE2OC41Ni4xMzU6OTIwMCJdLCJmZ3IiOiIxNTg4YTY2MDAwOGUzMzNjMWM4MGU1MjUzMjM0NDBiMTUzNTE1Njg5ZjYzYzdiYzkzOTlmNGU1OTQ4ZWQwZmU0Iiwia2V5IjoiTmZpOExwTUJKWmt2dWNHbVVrOU46Z0dMSjhsSC1TdUc0MVpYYUhZWDY2QSJ9If youre running in Docker, copy the enrollment token and run:docker run -e ENROLLMENT_TOKENtoken docker.elastic.co/elasticsearch/elasticsearch:8.15.4 停掉之后重新后台运行, -d 参数是后台运行第一次执行不要加-d需要记录最后返回的密码和ca证书的信息 [user-esserver elasticsearch-8.15.4]$ ./bin/elasticsearch -d启动成功后可查看端口情况9200和9300端口 如果失败可以查以下链接解决 Linux环境下安装Elasticsearch史上最详细的教程来啦~_linux elasticsearch-CSDN博客 [rootserver ~]# netstat -ntpl Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1418/sshd tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 1644/master tcp6 0 0 127.0.0.1:9300 :::* LISTEN 4455/java tcp6 0 0 ::1:9300 :::* LISTEN 4455/java tcp6 0 0 :::22 :::* LISTEN 1418/sshd tcp6 0 0 ::1:25 :::* LISTEN 1644/master tcp6 0 0 :::9200 :::* LISTEN 4455/java 浏览器访问https://ip地址:9200端口账号密码在启动时的最后有展示 Password for the elastic user (reset with bin/elasticsearch-reset-password -u elastic):zgPgb3EPuflSKVBwT3wu账号elastic 密码zgPgb3EPuflSKVBwT3wuelasticsearch8.x启用了安全模块 在配置文件config/elasticsearch.yml 中可以查看 # Enable security features xpack.security.enabled: truexpack.security.enrollment.enabled: true# Enable encryption for HTTP API client connections, such as Kibana, Logstash, and Agents xpack.security.http.ssl:enabled: truekeystore.path: certs/http.p12# Enable encryption and mutual authentication between cluster nodes xpack.security.transport.ssl:enabled: trueverification_mode: certificatekeystore.path: certs/transport.p12truststore.path: certs/transport.p12 # Create a new cluster with the current node only # Additional nodes can still join the cluster later cluster.initial_master_nodes: [node-1]如果没记住启动时的账号密码可以使用工具生成 使用 bin/elasticsearch-reset-password 可以修改密码通常有两种方式 # 生成随机密码 ./elasticsearch-reset-password -u elastic# 指定密码 ./elasticsearch-reset-password -u elastic -i安装Kibana Kibana 版本选择和 Elasticsearch 的版本一致即可官方提供了一致的版本。 安装和Elasticsearch基本相似 修改配置文件 退回到root用户进入kibana-8.15.4目录中修改配置文件 [rootserver kibana-8.15.4]# vi config/kibana.yml # 修改server.host 改为0.0.0.0 使其能够外网访问 server.host: 0.0.0.0# 启动中文 i18n.locale: zh-CN启动服务 给目录赋权普通用户并使用普通用户启动 [rootserver elk]# chown user-es:user-es -R kibana-8.15.4/ [rootserver elk]# su - user-es[user-esserver ~]$ cd /elk/kibana-8.15.4/ [user-esserver kibana-8.15.4]$ ./bin/kibana ... ... [2024-11-15T15:40:30.81208:00][INFO ][root] Kibana is starting [2024-11-15T15:40:30.85508:00][INFO ][node] Kibana process configured with roles: [background_tasks, ui] [2024-11-15T15:40:40.49808:00][INFO ][plugins-service] The following plugins are disabled: cloudChat,cloudExperiments,cloudFullStory,profilingDataAccess,profiling,securitySolutionServerless,serverless,serverlessObservability,serverlessSearch. [2024-11-15T15:40:40.57308:00][INFO ][http.server.Preboot] http server running at http://0.0.0.0:5601 [2024-11-15T15:40:40.85208:00][INFO ][plugins-system.preboot] Setting up [1] plugins: [interactiveSetup] [2024-11-15T15:40:40.86908:00][INFO ][preboot] interactiveSetup plugin is holding setup: Validating Elasticsearch connection configuration… [2024-11-15T15:40:40.90808:00][INFO ][root] Holding setup until preboot stage is completed. i Kibana has not been configured.Go to http://0.0.0.0:5601/?code609695 to get started.# 后台启动方法 [user-esserver kibana-8.15.4]$ nohup ./bin/kibana 直接使用root启动会报错Kibana should not be run as root. Use --allow-root to continue.,但是可以加上--allow-root参数忽略 [rootserver kibana-8.15.4]# ./bin/kibana Kibana is currently running with legacy OpenSSL providers enabled! For details and instructions on how to disable see https://www.elastic.co/guide/en/kibana/8.15/production.html#openssl-legacy-provider Kibana should not be run as root. Use --allow-root to continue.# 可以直接忽略启动 [rootserver kibana-8.15.4]# ./bin/kibana --allow-root [2024-11-14T15:21:50.45508:00][INFO ][root] Kibana is starting [2024-11-14T15:21:50.50808:00][INFO ][node] Kibana process configured with roles: [background_tasks, ui] [2024-11-14T15:22:02.32808:00][INFO ][plugins-service] The following plugins are disabled: cloudChat,cloudExperiments,cloudFullStory,profilingDataAccess,profiling,securitySolutionServerless,serverless,serverlessObservability,serverlessSearch. [2024-11-14T15:22:02.40908:00][INFO ][http.server.Preboot] http server running at http://0.0.0.0:5601 [2024-11-14T15:22:02.71508:00][INFO ][plugins-system.preboot] Setting up [1] plugins: [interactiveSetup] [2024-11-14T15:22:02.73408:00][INFO ][preboot] interactiveSetup plugin is holding setup: Validating Elasticsearch connection configuration… [2024-11-14T15:22:02.77308:00][INFO ][root] Holding setup until preboot stage is completed.i Kibana has not been configured.Go to http://0.0.0.0:5601/?code337222 to get started.# 后台启动命令nohup ./bin/kibana --allow-root 启动成功后访问5601端口需要我们使用令牌进行注册 注册elasticsearch 令牌可以使用elasticsearch-create-enrollment-token 命令为 Elasticsearch 节点和 Kibana 实例创建注册令牌 实际上在启动es的时候最后展示的结果中也有内容,但是30分钟如果不用的话会失效失效之后也可以使用上面的命令创建一个新的 # elasticsearch启动中返回的令牌 ℹ️ Configure Kibana to use this cluster: • Run Kibana and click the configuration link in the terminal when Kibana starts. • Copy the following enrollment token and paste it into Kibana in your browser (valid for the next 30 minutes):eyJ2ZXIiOiI4LjE0LjAiLCJhZHIiOlsiMTkyLjE2OC41Ni4xMzU6OTIwMCJdLCJmZ3IiOiIxNTg4YTY2MDAwOGUzMzNjMWM4MGU1MjUzMjM0NDBiMTUzNTE1Njg5ZjYzYzdiYzkzOTlmNGU1OTQ4ZWQwZmU0Iiwia2V5IjoiTl9pOExwTUJKWmt2dWNHbVVrOVE6c0xFVlZvbzFRVGluY1RZVzRONWxrZyJ9 创建新的令牌直接执行发现需要指定参数 [user-esserver bin]$ ./elasticsearch-create-enrollment-token warning: ignoring JAVA_HOME/usr/local/jdk-21.0.5; using bundled JDK Creates enrollment tokens for elasticsearch nodes and kibana instancesOption (* required) Description --------------------- ----------- -E KeyValuePair Configure a setting -f, --force Use this option to force execution of the command against a cluster that is currently unhealthy. -h, --help Show help * -s, --scope The scope of this enrollment token, can be either nodeor kibana --url the URL where the elasticsearch node listens for connections. -v, --verbose Show verbose output ERROR: Missing required option(s) [s/scope] 提示 -s 为必填项这里我们是要将kibana 加入所以可以这样创建 token [user-esserver bin]$ ./elasticsearch-create-enrollment-token -s kibana warning: ignoring JAVA_HOME/usr/local/jdk-21.0.5; using bundled JDK eyJ2ZXIiOiI4LjE0LjAiLCJhZHIiOlsiMTkyLjE2OC41Ni4xMzU6OTIwMCJdLCJmZ3IiOiI4YTEyOWM1ODJmNmYwNWVkMTdhMzNiMDA0MTYyNjk5MGFhNGI0ODI2MjQ2ZWNkZjEwMzZhYTM2MGUyYzg2N2RlIiwia2V5IjoiRzBTV0taTUJtUExTNWJ4TEFDTjA6bmJ5TDlIcjZUcENQSWJGQWlDTV9WdyJ9点击配置之后会让输入验证码,前台启动的话会在控制台打印出来后台启动可以查看nohup日志最后获取 Your verification code is: 609 695 完成配置之后会跳转到登录界面用户名称和密码和elasticsearch的一样 登录之后可以进入左上角的菜单 - Managerment - 堆栈检测中查看集群的状态 安装 Logstash Logstash直接下载安装包解压使用即可。版本需要和es、kibana一致 修改配置文件以及拷贝证书 退回到root用户logstash可以直接使用root运行进到目录中修改一下配置文件 [rootserver ~]# cd /elk/logstash-8.15.4/ [rootserver logstash-8.15.4]# cd config/#拷贝es目录下certs文件夹里到config下面有相关认证证书 [rootserver config]# cp -rf /elk/elasticsearch-8.15.4/config/certs/ . [rootserver config]# ll certs/ total 24 -rw-r----- 1 root root 1915 Nov 15 15:51 http_ca.crt -rw-r----- 1 root root 10029 Nov 15 15:51 http.p12 -rw-r----- 1 root root 5822 Nov 15 15:51 transport.p12 # 修改配置文件 [rootserver config]$ vim logstash.yml http.host: 0.0.0.0 # 开启认证并填入elasticsearch账号密码 xpack.monitoring.enabled: true xpack.monitoring.elasticsearch.username: elastic xpack.monitoring.elasticsearch.password: sLUaxXXma1MvHkYL2KN # elasticsearch主机的地址 xpack.monitoring.elasticsearch.hosts: [https://192.168.56.135:9200] # 将从elasticsearch目录中拷贝过来的证书填入 xpack.monitoring.elasticsearch.ssl.certificate_authority: /elk/logstash-8.15.4/config/certs/http_ca.crt # ca_trusted_fingerprint获取方法es启动时HTTP CA certificate SHA-256 fingerprint的值或者查看kibana配置文件中有写 xpack.monitoring.elasticsearch.ssl.ca_trusted_fingerprint: 1588a660008e333c1c80e525323440b153515689f63c7bc9399f4e5948ed0fe4修改输入输出配置文件 logstash需要配置一下才可以接收和输出日志拷贝一份logstash-sample.conf进行修改 [rootserver config]# cp logstash-sample.conf logstash.conf [rootserver config]# cat logstash.conf input {beats {port 5044} }# 过滤相关内容 filter {grok{# 获取日志信息之后提取时间并赋予字段logdatematch {message %{SYSLOGTIMESTAMP:logdate}}}# 使用date模块将日志中时间logdate值赋予timestamptimestamp字段是es默认的索引字段可以使用其进行排序date{match [ logdate, MMM dd HH:mm:ss]locale en# add_tag timestamptarget timestamptimezone Asia/Shanghai}# 删除logdate 字段不然会存在重复的时间字段不删也行mutate{remove_field [logdate]} }# 将数据输出到es中 output {elasticsearch {# 主机地址hosts [https://192.168.56.135:9200]# 索引名称index newtime-es-%{YYYY.MM.dd}ssl truessl_certificate_verification false# es的账号密码以及ca证书填入cacert /elk/logstash-8.15.4/config/certs/http_ca.crtca_trusted_fingerprint 1588a660008e333c1c80e525323440b153515689f63c7bc9399f4e5948ed0fe4user elasticpassword sLUaxXXma1MvHkYL2KN} }启动logstash [rootserver config]# ../bin/logstash -f logstash.conf # 后台启动命令 nohup ../bin/logstash -f logstash.conf 启动成功之后可以在Kibana中看到logstash 安装filebeat filebeat用于采集日志吐给logstash去做数据清洗 修改配置文件 [rootserver ~]# cd /elk/filebeat-8.15.4-linux-x86_64/[rootserver filebeat-8.15.4-linux-x86_64]# vim filebeat.ymlfilebeat.inputs: - type: logenabled: true# 获取日志的文件paths:- /var/log/test.log output.logstash:enabled: truehosts: [192.168.56.135:5044]启动服务 [rootserver filebeat-8.15.4-linux-x86_64]# ./filebeat -e -c filebeat.yml # 后台启动 nohup ./filebeat -e -c filebeat.yml 数据测试 # 将系统message日志输入到 [rootserver log]# cat /var/log/messages /var/log/test.log 进入Kibana页面 菜单 - Discover创建一个数据视图索引模式是在logstash.conf中配置的名称填写完毕后保存即可看到日志信息
http://www.sczhlp.com/news/255657/

相关文章:

  • 做火锅加盟哪个网站好新手做的网站
  • 做韩国护的网站商业网站有哪些
  • 百度推广 网站备案个人网站怎么建
  • 创立一个网站需要什么内蒙古旅游攻略
  • 技术支持 祥云平台 英文网站织梦网站密码忘记了
  • 泉州学校网站建设网站后台添加东西不能粘贴
  • 石家庄网站建设平台有哪些驾校网站制作
  • 做网站备案需要什么dw建设网站的代码模板下载
  • 网站开发者取色工具编程学校
  • seo推广平台服务福州seo优化
  • dw建设网站的代码模板幽默广告软文案例
  • 全国网站建设公司实力排名网站流量提升方案
  • 松江品牌网站建设南昌seo排名公司
  • 电脑版网站转手机版怎么做7天学会自媒体短视频制作
  • 不会百度吗网页生成温州seo公司
  • 网站建设面板百度指数数据
  • 食材网站模板中信建设有限责任公司资质等级
  • 模板网站免费有什么可以接单做设计的网站
  • 亿网联播汕头市做网站优化
  • 免费网站管理系统电子商务网站建设考试题
  • 镇江网站建设 的公司在线设计平台设计师招募
  • 微网站服务合同建筑设计防火规范
  • 东莞网站建设建网站多少关键词排名优化软件
  • 做网站大新乡商城网站建设
  • php网站容量WordPress主题安全吗
  • 易语言如何做网站登录不适合做设计的人
  • 包头建设安全协会网站泉州网络seo
  • 海口企业网站建设四川建设工程网
  • html5大气网站网站建设费用 多少
  • 东营seo整站优化公司做外地网站