阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

ELK(elasticsearch5.0)head插件安装配置

470次阅读
没有评论

共计 12391 个字符,预计需要花费 31 分钟才能阅读完成。

elk 升级部署到 elasticsearch5.0 后,安装 elasticsearch-head 插件遇到一个小问题: 版本 5.0 以后,则并没有按照之前形式管理插件,而是通过 npm 管理配置。

5.0 之前 eg:
安装  elasticsearch-head 插件
./bin/plugin -install mobz/elasticsearch-head
浏览器查看
http://192.168.1.221:9200/_plugin/head/
 
安装  elasticsearch-kopf 插件
bin/plugin -install lmenezes/elasticsearch-kopf
浏览器查看
http://192.168.1.221:9200/_plugin/kopf/

head 官网:https://github.com/mobz/elasticsearch-head#running-with-built-in-server

Running as a plugin of Elasticsearch
Install elasticsearch-head:
– for Elasticsearch 5.x:
    site plugins are not supported. Run elasticsearch-head as a standalone server
# 以独立服务运行

官网大致安装步骤:

git clone git://github.com/mobz/elasticsearch-head.git
cd elasticsearch-head
npm install
grunt server
open http://localhost:9100

——————————————————————————–
具体流程;
1)下载并配置 nodejs:

[root@elk ~]# xz -d node-v6.9.2-linux-x64.tar.xz
[root@elk ~]# tar xf node-v6.9.2-linux-x64.tar -C /usr/local/
[root@elk ~]# cd /usr/local/
[root@elk local]# ln -s node-v6.9.2-linux-x64/ node
[root@elk node]# cat /etc/profile.d/node.sh 
export nodePATH=/usr/local/node
export PATH=$PATH:$nodePATH/bin
export nodePATH PATH
[root@elk node]# [root@elk ~]# node -v
v6.9.2
[root@elk ~]#

2、下载 elasticsearch-head 插件并配置:

https://github.com/mobz/elasticsearch-head
yum install git -y
[root@elk plugins]# git clonegit://github.com/mobz/elasticsearch-head.git 
[root@elk elasticsearch]# chown root.elsearch -Relasticsearch-head/
[root@elk elasticsearch]# chmod 775 elasticsearch-head/ -R
# 配置 elasticsearch.yml:
[root@elk elasticsearch]# cat config/elasticsearch.yml|grep -v”$^”|grep -v “#”
node.name: hyxdelk
network.host: 0.0.0.0
http.port: 9200
http.cors.enabled: true
http.cors.allow-origin: “*”
[root@elk elasticsearch]#
#elasticsearch 配置允许跨域访问,这样 head 插件可以访问 es。
#http.cors.enabled: true
#http.cors.allow-origin: “*”

3、npm 安装并修改 head 源代码(默认监听 127.0.0.1):
grunt 是一个很方便的构建工具,可以进行打包压缩、测试、执行等等的工作,5.0 里的 head 插件就是通过 grunt 启动的。因此需要安装一下 grunt:

# npm install -g grunt–registry=https://registry.npm.taobao.org
# npm install -g grunt-cli
[root@elk elasticsearch-head]# npm install
[root@elk elasticsearch-head]# npm install
npm WARN prefer global coffee-script@1.10.0 should be installed with -g
 
> phantomjs-prebuilt@2.1.14 install /usr/local/elasticsearch-5.0.1/elasticsearch-head/node_modules/phantomjs-prebuilt
> node install.js
 
PhantomJS not found on PATH
Downloading https://github.com/Medium/phantomjs/releases/download/v2.1.1/phantomjs-2.1.1-linux-x86_64.tar.bz2
Saving to /tmp/phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2
Receiving…
  [=======================================-] 99%
Received 22866K total.
Extracting tar contents (via spawned process)
Removing /usr/local/elasticsearch-5.0.1/elasticsearch-head/node_modules/phantomjs-prebuilt/lib/phantom
Copying extracted folder /tmp/phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2-extract-1484105608703/phantomjs-2.1.1-linux-x86_64 -> /usr/local/elasticsearch-5.0.1/elasticsearch-head/node_modules/phantomjs-prebuilt/lib/phantom
Writing location.js file
Done. Phantomjs binary available at /usr/local/elasticsearch-5.0.1/elasticsearch-head/node_modules/phantomjs-prebuilt/lib/phantom/bin/phantomjs
elasticsearch-head@0.0.0 /usr/local/elasticsearch-5.0.1/elasticsearch-head
├─┬ grunt@1.0.1 
│ ├── coffee-script@1.10.0 
│ ├─┬ dateformat@1.0.12 
│ │ ├── get-stdin@4.0.1 
│ │ └─┬ meow@3.7.0 
│ │  ├─┬ camelcase-keys@2.1.0 
│ │  │ └── camelcase@2.1.1 
│ │  ├── decamelize@1.2.0 
│ │  ├─┬ loud-rejection@1.6.0 
│ │  │ ├─┬ currently-unhandled@0.4.1 
│ │  │ │ └── array-find-index@1.0.2 
│ │  │ └── signal-exit@3.0.2 
│ │  ├── map-obj@1.0.1 
│ │  ├── minimist@1.2.0 
│ │  ├─┬ normalize-package-data@2.3.5 
│ │  │ ├── hosted-git-info@2.1.5 
│ │  │ ├─┬ is-builtin-module@1.0.0 
│ │  │ │ └── builtin-modules@1.1.1 
│ │  │ └─┬ validate-npm-package-license@3.0.1 
│ │  │  ├─┬ spdx-correct@1.0.2 
│ │  │  │ └── spdx-license-ids@1.2.2 
│ │  │  └── spdx-expression-parse@1.0.4 
│ │  ├─┬ read-pkg-up@1.0.1 
│ │  │ ├─┬ find-up@1.1.2 
│ │  │ │ └── path-exists@2.1.0 
│ │  │ └─┬ read-pkg@1.1.0 
│ │  │  ├─┬ load-json-file@1.1.0 
│ │  │  │ ├─┬ parse-json@2.2.0 
│ │  │  │ │ └─┬ error-ex@1.3.0 
│ │  │  │ │  └── is-arrayish@0.2.1 
│ │  │  │ ├── pify@2.3.0 
│ │  │  │ └─┬ strip-bom@2.0.0 
│ │  │  │  └── is-utf8@0.2.1 
│ │  │  └── path-type@1.1.0 
│ │  ├─┬ redent@1.0.0 
│ │  │ ├─┬ indent-string@2.1.0 
│ │  │ │ └─┬ repeating@2.0.1 
│ │  │ │  └─┬ is-finite@1.0.2 
│ │  │ │    └── number-is-nan@1.0.1 
│ │  │ └── strip-indent@1.0.1 
│ │  └── trim-newlines@1.0.0 
│ ├── eventemitter2@0.4.14 
│ ├── exit@0.1.2 
│ ├─┬ findup-sync@0.3.0 
│ │ └── glob@5.0.15 
│ ├─┬ glob@7.0.6 
│ │ ├── fs.realpath@1.0.0 
│ │ ├─┬ inflight@1.0.6 
│ │ │ └── wrappy@1.0.2 
│ │ ├── inherits@2.0.3 
│ │ └── once@1.4.0 
│ ├─┬ grunt-cli@1.2.0 
│ │ └── resolve@1.1.7 
│ ├── grunt-known-options@1.1.0 
│ ├─┬ grunt-legacy-log@1.0.0 
│ │ ├─┬ grunt-legacy-log-utils@1.0.0 
│ │ │ └── lodash@4.3.0 
│ │ ├── hooker@0.2.3 
│ │ └── underscore.string@3.2.3 
│ ├─┬ grunt-legacy-util@1.0.0 
│ │ ├── getobject@0.1.0 
│ │ ├── lodash@4.3.0 
│ │ └─┬ which@1.2.12 
│ │  └── isexe@1.1.2 
│ ├── iconv-lite@0.4.15 
│ ├─┬ js-yaml@3.5.5 
│ │ ├── argparse@1.0.9 
│ │ └── esprima@2.7.3 
│ ├─┬ minimatch@3.0.3 
│ │ └─┬ brace-expansion@1.1.6 
│ │  ├── balanced-match@0.4.2 
│ │  └── concat-map@0.0.1 
│ ├─┬ nopt@3.0.6 
│ │ └── abbrev@1.0.9 
│ ├── path-is-absolute@1.0.1 
│ └── rimraf@2.2.8 
├─┬ grunt-contrib-clean@1.0.0 
│ ├── async@1.5.2 
│ └── rimraf@2.5.4 
├─┬ grunt-contrib-concat@1.0.1 
│ ├─┬ chalk@1.1.3 
│ │ ├── ansi-styles@2.2.1 
│ │ ├── escape-string-regexp@1.0.5 
│ │ ├─┬ has-ansi@2.0.0 
│ │ │ └── ansi-regex@2.0.0 
│ │ ├── strip-ansi@3.0.1 
│ │ └── supports-color@2.0.0 
│ └── source-map@0.5.6 
├─┬ grunt-contrib-connect@1.0.2 
│ ├─┬ connect@3.5.0 
│ │ ├─┬ debug@2.2.0 
│ │ │ └── ms@0.7.1 
│ │ ├─┬ finalhandler@0.5.0 
│ │ │ ├── statuses@1.3.1 
│ │ │ └── unpipe@1.0.0 
│ │ ├── parseurl@1.3.1 
│ │ └── utils-merge@1.0.0 
│ ├── connect-livereload@0.5.4 
│ ├── http2@3.3.6 
│ ├─┬ morgan@1.7.0 
│ │ ├── basic-auth@1.0.4 
│ │ ├── depd@1.1.0 
│ │ ├─┬ on-finished@2.3.0 
│ │ │ └── ee-first@1.1.1 
│ │ └── on-headers@1.0.1 
│ ├─┬ opn@4.0.2 
│ │ ├── object-assign@4.1.0 
│ │ └─┬ pinkie-promise@2.0.1 
│ │  └── pinkie@2.0.4 
│ ├── portscanner@1.2.0 
│ ├─┬ serve-index@1.8.0 
│ │ ├─┬ accepts@1.3.3 
│ │ │ └── negotiator@0.6.1 
│ │ ├── batch@0.5.3 
│ │ ├── escape-html@1.0.3 
│ │ ├─┬ http-errors@1.5.1 
│ │ │ └── setprototypeof@1.0.2 
│ │ └─┬ mime-types@2.1.13 
│ │  └── mime-db@1.25.0 
│ └─┬ serve-static@1.11.1 
│  ├── encodeurl@1.0.1 
│  └─┬ send@0.14.1 
│    ├── destroy@1.0.4 
│    ├── etag@1.7.0 
│    └── fresh@0.3.0 
├─┬ grunt-contrib-copy@1.0.0 
│ └── file-sync-cmp@0.1.1 
├─┬ grunt-contrib-jasmine@1.0.3 
│ ├── es5-shim@4.5.9 
│ ├─┬ grunt-lib-phantomjs@1.1.0 
│ │ ├─┬ phantomjs-prebuilt@2.1.14 
│ │ │ ├── es6-promise@4.0.5 
│ │ │ ├─┬ extract-zip@1.5.0 
│ │ │ │ ├─┬ concat-stream@1.5.0 
│ │ │ │ │ └── typedarray@0.0.6 
│ │ │ │ ├── debug@0.7.4 
│ │ │ │ ├─┬ mkdirp@0.5.0 
│ │ │ │ │ └── minimist@0.0.8 
│ │ │ │ └─┬ yauzl@2.4.1 
│ │ │ │  └─┬ fd-slicer@1.0.1 
│ │ │ │    └── pend@1.2.0 
│ │ │ ├─┬ fs-extra@1.0.0 
│ │ │ │ ├── jsonfile@2.4.0 
│ │ │ │ └── klaw@1.3.1 
│ │ │ ├─┬ hasha@2.2.0 
│ │ �� │ └── is-stream@1.1.0 
│ │ │ ├── kew@0.7.0 
│ │ │ ├── progress@1.1.8 
│ │ │ ├─┬ request@2.79.0 
│ │ │ │ ├── aws-sign2@0.6.0 
│ │ │ │ ├── aws4@1.5.0 
│ │ │ │ ├── caseless@0.11.0 
│ │ │ │ ├─┬ combined-stream@1.0.5 
│ │ │ │ │ └── delayed-stream@1.0.0 
│ │ │ │ ├── forever-agent@0.6.1 
│ │ │ │ ├─┬ form-data@2.1.2 
│ │ │ │ │ └── asynckit@0.4.0 
│ │ │ │ ├─┬ har-validator@2.0.6 
│ │ │ │ │ ├─┬ commander@2.9.0 
│ │ │ │ │ │ └── graceful-readlink@1.0.1 
│ │ │ │ │ └─┬ is-my-json-valid@2.15.0 
│ │ │ │ │  ├── generate-function@2.0.0 
│ │ │ │ │  ├─┬ generate-object-property@1.2.0 
│ │ │ │ │  │ └── is-property@1.0.2 
│ │ │ │ │  ├── jsonpointer@4.0.1 
│ │ │ │ │  └── xtend@4.0.1 
│ │ │ │ ├─┬ hawk@3.1.3 
│ │ │ │ │ ├── boom@2.10.1 
│ │ │ │ │ ├── cryptiles@2.0.5 
│ │ │ │ │ ├── hoek@2.16.3 
│ │ │ │ │ └── sntp@1.0.9 
│ │ │ │ ├─┬ http-signature@1.1.1 
│ │ │ │ │ ├── assert-plus@0.2.0 
│ │ │ │ │ ├─┬ jsprim@1.3.1 
│ │ │ │ │ │ ├── extsprintf@1.0.2 
│ │ │ │ │ │ ├── json-schema@0.2.3 
│ │ │ │ │ │ └── verror@1.3.6 
│ │ │ │ │ └─┬ sshpk@1.10.1 
│ │ │ │ │  ├── asn1@0.2.3 
│ │ │ │ │  ├── assert-plus@1.0.0 
│ │ │ │ │  ├── bcrypt-pbkdf@1.0.0 
│ │ │ │ │  ├─┬ dashdash@1.14.1 
│ │ │ │ │  │ └── assert-plus@1.0.0 
│ │ │ │ │  ├── ecc-jsbn@0.1.1 
│ │ │ │ │  ├─┬ getpass@0.1.6 
│ │ │ │ │  │ └── assert-plus@1.0.0 
│ │ │ │ │  ├── jodid25519@1.0.2 
│ │ │ │ │  ├── jsbn@0.1.0 
│ │ │ │ │  └── tweetnacl@0.14.5 
│ │ │ │ ├── is-typedarray@1.0.0 
│ │ │ │ ├── isstream@0.1.2 
│ │ │ │ ├── json-stringify-safe@5.0.1 
│ │ │ │ ├── oauth-sign@0.8.2 
│ │ │ │ ├── qs@6.3.0 
│ │ │ │ ├── stringstream@0.0.5 
│ │ │ │ ├─┬ tough-cookie@2.3.2 
│ │ │ │ │ └── punycode@1.4.1 
│ │ │ │ ├── tunnel-agent@0.4.3 
│ │ │ │ └── uuid@3.0.1 
│ │ │ └─┬ request-progress@2.0.1 
│ │ │  └── throttleit@1.0.0 
│ │ ├── rimraf@2.5.4 
│ │ ├── semver@5.3.0 
│ │ └─┬ temporary@0.0.8 
│ │  └── package@1.0.1 
│ ├── jasmine-core@2.5.2 
│ ├── lodash@2.4.2 
│ └── sprintf-js@1.0.3 
├─┬ grunt-contrib-watch@1.0.0 
│ ├─┬ gaze@1.1.2 
│ │ └─┬ globule@1.1.0 
│ │  ├── glob@7.1.1 
│ │  └── lodash@4.16.6 
│ ├── lodash@3.10.1 
│ └─┬ tiny-lr@0.2.1 
│  ├─┬ faye-websocket@0.10.0 
│  │ └─┬ websocket-driver@0.6.5 
│  │  └── websocket-extensions@0.1.1 
│  ├── livereload-js@2.2.2 
│  └── qs@5.1.0 
├── grunt-karma@2.0.0 
└─┬ karma@1.3.0 
  ├── bluebird@3.4.7 
  ├─┬ body-parser@1.14.2 
  │ ├── bytes@2.2.0 
  │ ├── content-type@1.0.2 
  │ ├── http-errors@1.3.1 
  │ ├── iconv-lite@0.4.13 
  │ ├── qs@5.2.0 
  │ ├─┬ raw-body@2.1.7 
  │ │ ├── bytes@2.4.0 
  │ │ └── iconv-lite@0.4.13 
  │ └─┬ type-is@1.6.14 
  │  └── media-typer@0.3.0 
  ├─┬ chokidar@1.6.1 
  │ ├─┬ anymatch@1.3.0 
  │ │ ├── arrify@1.0.1 
  │ │ └─┬ micromatch@2.3.11 
  │ │  ├─┬ arr-diff@2.0.0 
  │ │  │ └── arr-flatten@1.0.1 
  │ │  ├─┬ braces@1.8.5 
  │ │  │ ├─┬ expand-range@1.8.2 
  │ │  │ │ └─┬ fill-range@2.2.3 
  │ │  │ │  ├── is-number@2.1.0 
  │ │  │ │  ├── isobject@2.1.0 
  │ │  │ │  ├── randomatic@1.1.6 
  │ │  │ │  └── repeat-string@1.6.1 
  │ │  │ ├── preserve@0.2.0 
  │ │  │ └── repeat-element@1.1.2 
  │ │  ├─┬ expand-brackets@0.1.5 
  │ │  │ └── is-posix-bracket@0.1.1 
  │ │  ├── extglob@0.3.2 
  │ │  ├── filename-regex@2.0.0 
  │ │  ├─┬ kind-of@3.1.0 
  │ │  │ └── is-buffer@1.1.4 
  │ │  ├── normalize-path@2.0.1 
  │ │  ├─┬ object.omit@2.0.1 
  │ │  │ ├─┬ for-own@0.1.4 
  │ │  │ │ └── for-in@0.1.6 
  │ │  │ └── is-extendable@0.1.1 
  │ │  ├─┬ parse-glob@3.0.4 
  │ │  │ ├── glob-base@0.3.0 
  │ │  │ └── is-dotfile@1.0.2 
  │ │  └─┬ regex-cache@0.4.3 
  │ │    ├── is-equal-shallow@0.1.3 
  │ │    └── is-primitive@2.0.0 
  │ ├── async-each@1.0.1 
  │ ├── glob-parent@2.0.0 
  │ ├─┬ is-binary-path@1.0.1 
  │ │ └── binary-extensions@1.8.0 
  │ ├─┬ is-glob@2.0.1 
  │ │ └── is-extglob@1.0.0 
  │ └─┬ readdirp@2.1.0 
  │  ├─┬ readable-stream@2.0.6 
  │  │ ├── isarray@1.0.0 
  │  │ ├── process-nextick-args@1.0.7 
  │  │ └── util-deprecate@1.0.2 
  │  └── set-immediate-shim@1.0.1 
  ├── colors@1.1.2 
  ├─┬ combine-lists@1.0.1 
  │ └── lodash@4.17.4 
  ├── core-js@2.4.1 
  ├── di@0.0.1 
  ├─┬ dom-serialize@2.2.1 
  │ ├── custom-event@1.0.1 
  │ ├── ent@2.2.0 
  │ ├── extend@3.0.0 
  │ └── void-elements@2.0.1 
  ├─┬ expand-braces@0.1.2 
  │ ├── array-slice@0.2.3 
  │ ├── array-unique@0.2.1 
  │ └─┬ braces@0.1.5 
  │  └─┬ expand-range@0.1.1 
  │    ├── is-number@0.1.1 
  │    └── repeat-string@0.2.2 
  ├── graceful-fs@4.1.11 
  ├─┬ http-proxy@1.16.2 
  │ ├── eventemitter3@1.2.0 
  │ └── requires-port@1.0.0 
  ├── isbinaryfile@3.0.2 
  ├─┬ log4js@0.6.38 
  │ ├─┬ readable-stream@1.0.34 
  │ │ ├── core-util-is@1.0.2 
  │ │ ├── isarray@0.0.1 
  │ │ └── string_decoder@0.10.31 
  │ └── semver@4.3.6 
  ├── mime@1.3.4 
  ├─┬ optimist@0.6.1 
  │ ├── minimist@0.0.10 
  │ └── wordwrap@0.0.3 
  ├── qjobs@1.1.5 
  ├── range-parser@1.2.0 
  ├── rimraf@2.5.4 
  ├─┬ socket.io@1.4.7 
  │ ├─┬ engine.io@1.6.10 
  │ │ ├─┬ accepts@1.1.4 
  │ │ │ ├─┬ mime-types@2.0.14 
  │ │ │ │ └── mime-db@1.12.0 
  │ │ │ └── negotiator@0.4.9 
  │ │ ├── base64id@0.1.0 
  │ │ ├─┬ engine.io-parser@1.2.4 
  │ │ │ ├── after@0.8.1 
  │ │ │ ├── arraybuffer.slice@0.0.6 
  │ │ │ ├── base64-arraybuffer@0.1.2 
  │ │ │ ├── blob@0.0.4 
  │ │ │ ├─┬ has-binary@0.1.6 
  │ │ │ │ └── isarray@0.0.1 
  │ │ │ └── utf8@2.1.0 
  │ │ └─┬ ws@1.0.1 
  │ │  ├── options@0.0.6 
  │ │  └── ultron@1.0.2 
  │ ├─┬ has-binary@0.1.7 
  │ │ └── isarray@0.0.1 
  │ ├─┬ socket.io-adapter@0.4.0 
  │ │ └─┬ socket.io-parser@2.2.2 
  │ │  ├── debug@0.7.4 
  │ │  ├── isarray@0.0.1 
  │ │  └── json3@3.2.6 
  │ ├─┬ socket.io-client@1.4.6 
  │ │ ├── backo2@1.0.2 
  │ │ ├── component-bind@1.0.0 
  │ │ ├── component-emitter@1.2.0 
  │ │ ├─┬ engine.io-client@1.6.9 
  │ │ │ ├── component-inherit@0.0.3 
  │ │ │ ├── has-cors@1.1.0 
  │ │ │ ├── parsejson@0.0.1 
  │ │ │ ├── parseqs@0.0.2 
  │ │ │ ├── xmlhttprequest-ssl@1.5.1 
  │ │ │ └── yeast@0.1.2 
  │ │ ├── indexof@0.0.1 
  │ │ ├── object-component@0.0.3 
  │ │ ├─┬ parseuri@0.0.4 
  │ │ │ └─┬ better-assert@1.0.2 
  │ │ │  └── callsite@1.0.0 
  │ │ └── to-array@0.1.4 
  │ └─┬ socket.io-parser@2.2.6 
  │  ├── benchmark@1.0.0 
  │  ├── component-emitter@1.1.2 
  │  ├── isarray@0.0.1 
  │  └── json3@3.3.2 
  ├─┬ tmp@0.0.28 
  │ └── os-tmpdir@1.0.2 
  └─┬ useragent@2.1.10 
    └── lru-cache@2.2.4 
 
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.0.0 (node_modules/chokidar/node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.0.17: wanted {“os”:”darwin”,”arch”:”any”} (current: {“os”:”linux”,”arch”:”x64″})
npm WARN elasticsearch-head@0.0.0 license should be a valid SPDX license expression
[root@elk elasticsearch-head]#
# 修改 head 源码:
[root@elk _site]# cp app.js app.js.bak
this.base_uri = this.config.base_uri ||this.prefs.get(“app-base_uri”) ||”http://192.168.1.225:9200″;
[root@elk elasticsearch-head]# cp Gruntfile.js Gruntfile.js.bak
hostname: ‘0.0.0.0’,
#hostname: ‘*’,

4、后台启动 grunt server 并访问:

[root@elk elasticsearch-head]# ./node_modules/grunt/bin/gruntserver &
ps aux|grep head|grep –v grep

ELK(elasticsearch5.0)head 插件安装配置

http://192.168.1.225:9100 并连接 http://192.168.1.225:9200

ELK(elasticsearch5.0)head 插件安装配置

基于 CentOS 6.9 搭建 ELK 环境指南  http://www.linuxidc.com/Linux/2017-07/145636.htm

Linux 日志分析 ELK 环境搭建  http://www.linuxidc.com/Linux/2017-07/145494.htm

本文永久更新链接地址 :http://www.linuxidc.com/Linux/2017-09/146993.htm

正文完
星哥玩云-微信公众号
post-qrcode
 0
星锅
版权声明:本站原创文章,由 星锅 于2022-01-21发表,共计12391字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中

星哥玩云

星哥玩云
星哥玩云
分享互联网知识
用户数
4
文章数
19350
评论数
4
阅读量
7963494
文章搜索
热门文章
星哥带你玩飞牛NAS-6:抖音视频同步工具,视频下载自动下载保存

星哥带你玩飞牛NAS-6:抖音视频同步工具,视频下载自动下载保存

星哥带你玩飞牛 NAS-6:抖音视频同步工具,视频下载自动下载保存 前言 各位玩 NAS 的朋友好,我是星哥!...
星哥带你玩飞牛NAS-3:安装飞牛NAS后的很有必要的操作

星哥带你玩飞牛NAS-3:安装飞牛NAS后的很有必要的操作

星哥带你玩飞牛 NAS-3:安装飞牛 NAS 后的很有必要的操作 前言 如果你已经有了飞牛 NAS 系统,之前...
我把用了20年的360安全卫士卸载了

我把用了20年的360安全卫士卸载了

我把用了 20 年的 360 安全卫士卸载了 是的,正如标题你看到的。 原因 偷摸安装自家的软件 莫名其妙安装...
再见zabbix!轻量级自建服务器监控神器在Linux 的完整部署指南

再见zabbix!轻量级自建服务器监控神器在Linux 的完整部署指南

再见 zabbix!轻量级自建服务器监控神器在 Linux 的完整部署指南 在日常运维中,服务器监控是绕不开的...
飞牛NAS中安装Navidrome音乐文件中文标签乱码问题解决、安装FntermX终端

飞牛NAS中安装Navidrome音乐文件中文标签乱码问题解决、安装FntermX终端

飞牛 NAS 中安装 Navidrome 音乐文件中文标签乱码问题解决、安装 FntermX 终端 问题背景 ...
阿里云CDN
阿里云CDN-提高用户访问的响应速度和成功率
随机文章
Prometheus:监控系统的部署与指标收集

Prometheus:监控系统的部署与指标收集

Prometheus:监控系统的部署与指标收集 在云原生体系中,Prometheus 已成为最主流的监控与报警...
零成本上线!用 Hugging Face免费服务器+Docker 快速部署HertzBeat 监控平台

零成本上线!用 Hugging Face免费服务器+Docker 快速部署HertzBeat 监控平台

零成本上线!用 Hugging Face 免费服务器 +Docker 快速部署 HertzBeat 监控平台 ...
CSDN,你是老太太喝粥——无齿下流!

CSDN,你是老太太喝粥——无齿下流!

CSDN,你是老太太喝粥——无齿下流! 大家好,我是星哥,今天才思枯竭,不写技术文章了!来吐槽一下 CSDN。...
亚马逊云崩完,微软云崩!当全球第二大云“摔了一跤”:Azure 宕机背后的配置风险与警示

亚马逊云崩完,微软云崩!当全球第二大云“摔了一跤”:Azure 宕机背后的配置风险与警示

亚马逊云崩完,微软云崩!当全球第二大云“摔了一跤”:Azure 宕机背后的配置风险与警示 首先来回顾一下 10...
4盘位、4K输出、J3455、遥控,NAS硬件入门性价比之王

4盘位、4K输出、J3455、遥控,NAS硬件入门性价比之王

  4 盘位、4K 输出、J3455、遥控,NAS 硬件入门性价比之王 开篇 在 NAS 市场中,威...

免费图片视频管理工具让灵感库告别混乱

一言一句话
-「
手气不错
安装并使用谷歌AI编程工具Antigravity(亲测有效)

安装并使用谷歌AI编程工具Antigravity(亲测有效)

  安装并使用谷歌 AI 编程工具 Antigravity(亲测有效) 引言 Antigravity...
三大开源投屏神器横评:QtScrcpy、scrcpy、escrcpy 谁才是跨平台控制 Android 的最优解?

三大开源投屏神器横评:QtScrcpy、scrcpy、escrcpy 谁才是跨平台控制 Android 的最优解?

  三大开源投屏神器横评:QtScrcpy、scrcpy、escrcpy 谁才是跨平台控制 Andr...
一句话生成拓扑图!AI+Draw.io 封神开源组合,工具让你的效率爆炸

一句话生成拓扑图!AI+Draw.io 封神开源组合,工具让你的效率爆炸

一句话生成拓扑图!AI+Draw.io 封神开源组合,工具让你的效率爆炸 前言 作为天天跟架构图、拓扑图死磕的...
星哥带你玩飞牛NAS-16:飞牛云NAS换桌面,fndesk图标管理神器上线!

星哥带你玩飞牛NAS-16:飞牛云NAS换桌面,fndesk图标管理神器上线!

  星哥带你玩飞牛 NAS-16:飞牛云 NAS 换桌面,fndesk 图标管理神器上线! 引言 哈...
国产开源公众号AI知识库 Agent:突破未认证号限制,一键搞定自动回复,重构运营效率

国产开源公众号AI知识库 Agent:突破未认证号限制,一键搞定自动回复,重构运营效率

国产开源公众号 AI 知识库 Agent:突破未认证号限制,一键搞定自动回复,重构运营效率 大家好,我是星哥,...