You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sudo sed -i.bak -e 's/ident$/md5/' -e 's/peer$/md5/' /var/lib/pgsql9/data/pg_hba.conf
sudo service postgresql initdb
sudo service postgresql start
Create an database for graphite
sudo -u postgres createuser graphite
Create a user for graphite
sudo -u postgres createdb -O graphite graphite
Change password of postgres users
sudo -u postgres psql -d template1
template1=# ALTER USER postgres WITH PASSWORD 'ROOT_POSTGRES_PASSWORD';
template1=# ALTER USER graphite WITH PASSWORD 'GRAPHITE_POSTGRES_PASSWORD';
sudo /opt/graphite/bin/carbon-cache.py start
sudo /etc/init.d/httpd start
> # If you have some errors about: UserWarning: Module twisted was already imported from
> cp /opt/graphite/lib/twisted/plugins/* /usr/lib/python2.6/site-packages/twisted/plugins/
> mv /opt/graphite/lib/twisted /root
Install nodejs
sudo yum install nodejs nodejs-compat-symlinks npm
> # Extra source, if you don't head aws amazon repos
> sudo yum localinstall --nogpgcheck http://nodejs.tchol.org/repocfg/amzn1/nodejs-stable-release.noarch.rpm
Install statsd
cd /opt
sudo git clone git://github.com/etsy/statsd.git
cd statsd
sudo cp exampleConfig.js localConfig.js
sudo vim localConfig.js
This file contains 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
This file contains 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