CastawayLabs / cachet-monitor

Distributed monitoring plugin for CachetHQ
https://castawaylabs.github.io/cachet-monitor/
MIT License
439 stars 127 forks source link

OSX installation #82

Closed razuro closed 6 years ago

razuro commented 6 years ago

OS version: 10.13 (High Sierra) GO version: go version go1.9.1 darwin/amd64 cachet-monitor version: 3.0 - cachet_monitor_darwin_amd64

When I try running ./cachet-monitor it says -bash: ./cachet-monitor: Permission denied

I'm able to build and run hello world program here: https://golang.org/doc/install#testing

Please let me know what I've missed.

Thanks!

matejkramny commented 6 years ago

hi, you may be missing the execute permission on the file.

To fix this, simply run: chmod +x ./cachet-monitor and then try to execute the file again

razuro commented 6 years ago

@matejkramny Thanks! That solves the issue 👍