Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Elastic Agent] Add install/uninstall sub-command #21206

Merged
merged 34 commits into from
Sep 29, 2020

Conversation

blakerouse
Copy link
Contributor

@blakerouse blakerouse commented Sep 22, 2020

What does this PR do?

Adds a new install and uninstall command to the Elastic Agent.

install is used to install the Elastic Agent onto the system persistently. This will place Elastic Agent in the correct location for the platform, register it as a service and start the service. install also has the ability to detect if an installation is broken and offer the option to overwrite that installation with the executing non-installed Elastic Agent. install cannot be called from the installed version on the system

uninstall is used to uninstall the Elastic Agent on the current system. This can only be called from the installed Elastic Agent. If the uninstall command is executed from a non-installed Elastic Agent it will provide information on how to run it from the installed Elastic Agent, if it is installed on the system.

Why is it important?

Provides a uniform path to installed the Elastic Agent onto the system, as well as allows that Elastic Agent to be self-upgradable.

Checklist

  • My code follows the style guidelines of this project
  • I have commented my code, particularly in hard-to-understand areas
  • [ ] I have made corresponding changes to the documentation
  • [ ] I have made corresponding change to the default configuration files
  • [] I have added tests that prove my fix is effective or that my feature works (impossible to unit test)
  • I have added an entry in CHANGELOG.next.asciidoc or CHANGELOG-developer.next.asciidoc.

How to test this PR locally

With a built package run

./elastic-agent install

Once installed run

elastic-agent uninstall

Related issues

@blakerouse blakerouse self-assigned this Sep 22, 2020
@botelastic botelastic bot added needs_team Indicates that the issue/PR needs a Team:* label and removed needs_team Indicates that the issue/PR needs a Team:* label labels Sep 22, 2020
@blakerouse blakerouse marked this pull request as ready for review September 22, 2020 01:52
@elasticmachine
Copy link
Collaborator

Pinging @elastic/ingest-management (Team:Ingest Management)

@elasticmachine
Copy link
Collaborator

elasticmachine commented Sep 22, 2020

💚 Build Succeeded

Pipeline View Test View Changes Artifacts preview

Expand to view the summary

Build stats

  • Build Cause: [Pull request #21206 updated]

  • Start Time: 2020-09-29T12:39:07.389+0000

  • Duration: 87 min 11 sec

Test stats 🧪

Test Results
Failed 0
Passed 20309
Skipped 1858
Total 22167

@blakerouse
Copy link
Contributor Author

CI failures are unrelated

@@ -21,4 +21,5 @@ func LogNotGA(log *logger.Logger) {
// PrintNotGA writes to the received writer that the Agent is not GA.
func PrintNotGA(output io.Writer) {
fmt.Fprintln(output, message)
fmt.Fprintln(output)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This removes the print of the message?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No it just adds an extra blank line between the warning and the next message. It just makes it easier to read when using the sub-commands.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah I've missread the diff :(

@ph
Copy link
Contributor

ph commented Sep 22, 2020

@blakerouse Can you check with @EricDavisX for testing this PR, I think code review and some testing would allow us to catch any bugs early.

@blakerouse
Copy link
Contributor Author

/package

Copy link
Member

@ruflin ruflin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Started to review the code but realised I must run it locally to get the full experience and comment on it. Post my comments already but more to come.

@@ -10907,6 +10907,36 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


--------------------------------------------------------------------------------
Dependency : github.com/blakerouse/service
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should probably move this repo under elastic?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

At the moment this is just pointing to a fix of the upstream, once this lands in the upstream repo then the dependency will not point to my personal repo but instead it will point to: https://github.com/kardianos/service

Which is what is defined in the go.mod, its just that I am using replace at the moment to get the needed fix for systemd on link from my repository.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you file an issue to switch it over when upstream is fixed. Otherwise we forget for sure ;-)

@@ -9,7 +9,8 @@
"ISC",
"MIT",
"MPL-2.0",
"Public Domain"
"Public Domain",
"Zlib"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder if we should add this in a separate PR to have it "documented" in case someone looks for the diff so it does not look like "accidentally" added.

fs.StringVar(&logsPath, "path.logs", initialHome, "Logs path contains Agent log output")
fs.StringVar(&topPath, "path.home", topPath, "Agent root path")
fs.StringVar(&configPath, "path.config", configPath, "Config path is the directory Agent looks for its config file")
fs.StringVar(&logsPath, "path.logs", logsPath, "Logs path contains Agent log output")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agent and process log output?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is just the human read-able agent.log file. All the JSON log files including the logs for the processes go under ${paths.home}/data/logs.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should have a follow up discussion if it is worth to keep the agent.log special. Good for now.


err := install.Install()
if err != nil {
return fmt.Errorf("Error: %s", err)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps a bit more details? That it is an error is probably already known.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The detail is already in the err. This is just to get the nice clear message in the CLI output and for it to exit with exit code not 0.

if !force {
confirm, err := c.Confirm("Elastic Agent will be installed onto your system and will run as a service. Do you want to continue?", true)
if err != nil {
return fmt.Errorf("Error: problem reading prompt response")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: Should we skip Error: as it is already an error? Same above?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Error: prefix on all of the fmt.Errorf in the install or uninstall commands is so that when the error is printed to the console it is known as an error to the user, otherwise without it its not super clear.

This also returns an error so that the command will exit with a non-zero exit code, so if installer is being ran form a script its easy to know if it worked or failed.

if err != nil {
return "", errors.Wrap(err, "failed to get current user")
}
// Named pipe security and access rights.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the docs here. Later devs will appreciate it.

}
} else {
if !force {
confirm, err := c.Confirm("Elastic Agent will be installed onto your system and will run as a service. Do you want to continue?", true)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be nice to tell the user under which path it will be installed here.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also should we tell them about where the wrapper is installed?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added the path, I don't think we should mention the wrapper as that is just going to make the question even longer and don't want to make it confusing.

BinaryName = "elastic-agent"

// InstallPath is the installation path using for install command.
InstallPath = "/Library/Elastic/Agent"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I somehow stumbled over this path as I expected it under /opt but I'm probably just used to this from homebrew.

What is the reason it is Elastic/Agent and not elastic-agent or similar in one word? Same question applies to all other OS? Is uppercase recommended? Do we expect other elastic tools to be installed here?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hm, I now stumbled over the elastic-agent shell wrapper below, things are making now more sense.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is so Elastic Endpoint will be next to each other.

Endpoint is installed at /Library/Elastic/Endpoint so we install agent at /Library/Elastic/Agent. This is the same for all OS's so we can be next to Endpoint, which make it cleaner from a user perspective of seeing everything that is installed from Elastic.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Makes sense to align it with Endpoint.

Copy link
Contributor Author

@blakerouse blakerouse left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the review. I added inline comments to your questions and I am pushing a new commit to address some of the changes you suggested.

@@ -10907,6 +10907,36 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


--------------------------------------------------------------------------------
Dependency : github.com/blakerouse/service
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

At the moment this is just pointing to a fix of the upstream, once this lands in the upstream repo then the dependency will not point to my personal repo but instead it will point to: https://github.com/kardianos/service

Which is what is defined in the go.mod, its just that I am using replace at the moment to get the needed fix for systemd on link from my repository.

@@ -9,7 +9,8 @@
"ISC",
"MIT",
"MPL-2.0",
"Public Domain"
"Public Domain",
"Zlib"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can move it to a single PR just for this one thing. Might be weird to add in an individual PR, think it makes better sense in context.

fs.StringVar(&logsPath, "path.logs", initialHome, "Logs path contains Agent log output")
fs.StringVar(&topPath, "path.home", topPath, "Agent root path")
fs.StringVar(&configPath, "path.config", configPath, "Config path is the directory Agent looks for its config file")
fs.StringVar(&logsPath, "path.logs", logsPath, "Logs path contains Agent log output")
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is just the human read-able agent.log file. All the JSON log files including the logs for the processes go under ${paths.home}/data/logs.

}
} else {
if !force {
confirm, err := c.Confirm("Elastic Agent will be installed onto your system and will run as a service. Do you want to continue?", true)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added the path, I don't think we should mention the wrapper as that is just going to make the question even longer and don't want to make it confusing.

if !force {
confirm, err := c.Confirm("Elastic Agent will be installed onto your system and will run as a service. Do you want to continue?", true)
if err != nil {
return fmt.Errorf("Error: problem reading prompt response")
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Error: prefix on all of the fmt.Errorf in the install or uninstall commands is so that when the error is printed to the console it is known as an error to the user, otherwise without it its not super clear.

This also returns an error so that the command will exit with a non-zero exit code, so if installer is being ran form a script its easy to know if it worked or failed.


err := install.Install()
if err != nil {
return fmt.Errorf("Error: %s", err)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The detail is already in the err. This is just to get the nice clear message in the CLI output and for it to exit with exit code not 0.

BinaryName = "elastic-agent"

// InstallPath is the installation path using for install command.
InstallPath = "/Library/Elastic/Agent"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is so Elastic Endpoint will be next to each other.

Endpoint is installed at /Library/Elastic/Endpoint so we install agent at /Library/Elastic/Agent. This is the same for all OS's so we can be next to Endpoint, which make it cleaner from a user perspective of seeing everything that is installed from Elastic.

@ruflin
Copy link
Member

ruflin commented Sep 29, 2020

@blakerouse Can you check what is up with CI. @michalpristas would be great if you could also take a look at the change.

@michalpristas
Copy link
Contributor

michalpristas commented Sep 29, 2020

testing on linux so far:
Scenario UNTAR:

  • unpacked, ran install failed: Exit code 1:
The Elastic Agent is currently in BETA and should not be used in production

Elastic Agent is installed but currently broken: service is not installed
Continuing will re-install Elastic Agent over the current installation at /opt/Elastic/Agent. Do you want to continue? [Y/n]:y
Error: failed to install service (elastic-agent): exit status 1

Maybe related to ^^ but running uninstall and install after ^ now complained that *.service file is already there

sudo ./elastic-agent install
The Elastic Agent is currently in BETA and should not be used in production

Elastic Agent will be installed at /opt/Elastic/Agent and will run as a service. Do you want to continue? [Y/n]:y
Error: failed to install service (elastic-agent): Init already exists: /etc/systemd/system/elastic-agent.service

Scenario DEB:

  • dpkg -i *.deb
  • systemctl start elastic-agent
  • Failed: Sep 29 10:46:26 vagrant systemd[1]: [/etc/systemd/system/elastic-agent.service:3] Missing '='.

@michalpristas
Copy link
Contributor

On windows it installed ok, was running fine

@blakerouse
Copy link
Contributor Author

@michalpristas The Linux issue looks like you already had an elastic-agent installed. The error seems to be that you already had a elastic-agent.service file present on your system? Did you have the .deb installed? Are you sure the system is clean? Did you purge uninstall it before trying the install command.

Looking at the errors as you reported them look correct to me. I think that is the correct behavior, it should not overwrite the installed elastic-agent.service file. The reason is that if it does, and then if the *.deb was installed or not uninstalled properly and that is fixed it will then remove the elastic-agent.service. So its better to be caution on install in this case.

@michalpristas
Copy link
Contributor

yeah i had it installed and i uninstalled it before trying, systemd is persistent in this case, tried removing files manually and daemon reload it but i was not able to make it go away.

Copy link
Contributor

@michalpristas michalpristas left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

after service file fix it worked for me ok

@blakerouse blakerouse merged commit 2996b6f into elastic:master Sep 29, 2020
@blakerouse blakerouse deleted the agent-install-command branch September 29, 2020 15:01
blakerouse added a commit to blakerouse/beats that referenced this pull request Sep 29, 2020
* Add install command.

* Fix binary name on darwin.

* Fix install of mkdir.

* Update shell wrapper path for darwin.

* Add ability to fix broken installation.

* Fix issues with install/uninstall.

* Add dedicated uninstall command.

* Add enrollment at the end of install command.

* Fix installation of shell wrapper.

* Fix root_windows.go

* Fix uninstall on Windows.

* Add sleep to removal on Windows.

* Fix sleep to timeout in uninstall subcommand.

* Fix uninstall for nested timeout with cmd.exe.

* Fix uninstall on windows to actually sleep correctly.

* Fix formatting.

* Add changelog.

* Fixes for mage check.

* Create the symlink on Windows on install, fix issue with enroll questions during install.

* Refactor to remove the paths.yml and symlink dance on Windows, because new install command handles that.

* Cleanup repeat GA warning.

* Fix symlink on Windows.

* Fix control socket on windows.

* Fix socket path and authority on Windows.

* Fix username matching for SYSTEM.

* Fix socket path on darwin.

* Fix darwin service name. Fix uninstall on systemd.

* Fix install on linux.

* Fix RunningInstalled on Linux.

* Prevent upgrade unless conditions are correct.

* Add ability to force upgradable with DEV=true when built.

* Fixes from code review.

* Fix issue with service description.

(cherry picked from commit 2996b6f)
v1v added a commit to v1v/beats that referenced this pull request Sep 30, 2020
…ci-build-label-support

* upstream/master:
  [JJBB] Set shallow cloning to 10 (elastic#21409)
  docs: add link to release notes for 7.9.2 (elastic#21405) (elastic#21419)
  docs: Prepare Changelog for 7.9.2 (elastic#21229) (elastic#21403)
  fix: mark flaky tests (elastic#21300)
  fix: use a fixed version of setuptools (elastic#21393)
  Move Kubernetes events metricset to its own block in reference config (elastic#21407)
  [libbeat] Enable WriteAheadLimit in the disk queue (elastic#21391)
  docs: fix apt/yum formatting (elastic#21362)
  Fix shutdown tracking in s3 input (elastic#21380)
  [libbeat] Fix position writing in the disk queue
  Add UBI 8 image to the dependencies report (elastic#21374)
  Fix debug message to show actual SQS message ID (elastic#20614)
  [Elastic Agent] Rename *ConfigChange to PolicyChange (elastic#20779)
  [Elastic Agent] Add install/uninstall sub-command (elastic#21206)
  [Filebeat][httpjson] Make httpjson use cursor input when using date cursor (elastic#20751)
  feat: prepare release pipelines (elastic#21238)
  Add IP validation to Security module (elastic#21325)
blakerouse added a commit that referenced this pull request Sep 30, 2020
* Add install command.

* Fix binary name on darwin.

* Fix install of mkdir.

* Update shell wrapper path for darwin.

* Add ability to fix broken installation.

* Fix issues with install/uninstall.

* Add dedicated uninstall command.

* Add enrollment at the end of install command.

* Fix installation of shell wrapper.

* Fix root_windows.go

* Fix uninstall on Windows.

* Add sleep to removal on Windows.

* Fix sleep to timeout in uninstall subcommand.

* Fix uninstall for nested timeout with cmd.exe.

* Fix uninstall on windows to actually sleep correctly.

* Fix formatting.

* Add changelog.

* Fixes for mage check.

* Create the symlink on Windows on install, fix issue with enroll questions during install.

* Refactor to remove the paths.yml and symlink dance on Windows, because new install command handles that.

* Cleanup repeat GA warning.

* Fix symlink on Windows.

* Fix control socket on windows.

* Fix socket path and authority on Windows.

* Fix username matching for SYSTEM.

* Fix socket path on darwin.

* Fix darwin service name. Fix uninstall on systemd.

* Fix install on linux.

* Fix RunningInstalled on Linux.

* Prevent upgrade unless conditions are correct.

* Add ability to force upgradable with DEV=true when built.

* Fixes from code review.

* Fix issue with service description.

(cherry picked from commit 2996b6f)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Elastic Agent] Install/uninstall subcommand [Elastic Agent] Disable upgrade capability of Agent
5 participants