Last active
September 13, 2019 11:07
-
-
Save patrickbcullen/51c8594b1bf12791bd35ffcd4869c001 to your computer and use it in GitHub Desktop.
Install PCP on Centos 7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # run these commands on a Centos 7 server as root | |
| yum install -y pcp pcp-webapi pcp-system-tools | |
| chkconfig pmcd on | |
| service pmcd start | |
| chkconfig pmlogger on | |
| service pmlogger start | |
| chkconfig pmwebd on | |
| service pmwebd start | |
| # open port 44323 in the firewall | |
| # To start vector on your laptop | |
| docker run -d --name vector -p 80:80 netflixoss/vector:latest | |
| open http://localhost | |
| # put the IP address of the server into the hostname field |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment