Coder Social home page Coder Social logo

vinicius-ianni / fleet-server Goto Github PK

View Code? Open in Web Editor NEW

This project forked from elastic/fleet-server

0.0 0.0 0.0 660 KB

The Fleet server allows managing a fleet of Elastic Agents.

License: Other

Makefile 1.93% Go 94.16% Shell 1.52% Python 2.38%

fleet-server's Introduction

Build Status

Fleet Server implementation

Development

fleet-server is under development. The following are notes to help developers onboarding to the project to quickly get running. These notes might change at any time.

Startup fleet-server

Currently to startup fleet-server, the Kibana encryption key is needed. There are two options for this.

Either the key a... is used in the kibana config as this is the default:

xpack.encryptedSavedObjects.encryptionKey: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"

The alternative is to use ES_SAVED_KEY and pass it to fleet-server during setup with the value of the encryption key used in Kibana.

Kibana

Currently there is some work to do to be able to run Kibana with Fleet Server and all the features are not yet supported, in the future, these workarounds will not be needed anymore.

  • Start fleet-server before Kibana, to create the mappings in ES.
  • Create and use a custom user as the kibana_system user
  • Enable Fleet server usage with xpack.fleet.agents.fleetServerEnabled: true
POST /_security/role/kibana_fleet_system
{
   "cluster" : [
      "all"
    ],
    "indices" : [
      {
        "names" : [
          ".fleet*"
        ],
        "privileges" : [
          "all"
        ]
      }
    ]
}



POST /_security/user/kibana_fleet_system
{
  "password" : "changeme",
  "roles" : [ "kibana_system", "kibana_fleet_system" ]
}

Then configure your Kibana with

elasticsearch.username: 'kibana_fleet_system'
elasticsearch.password: 'changeme'
xpack.fleet.agents.fleetServerEnabled: true

fleet-server's People

Contributors

blakerouse avatar aleksmaus avatar v1v avatar ph avatar nchaulet avatar ruflin avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.