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
su - root | |
# gpinitsystem fails to change the postgresql.conf port setting without ed | |
yum install ed unzip -y | |
groupadd -g 8000 gpadmin | |
useradd -m -s /bin/bash -d /home/gpadmin -g gpadmin -u 8000 gpadmin | |
passwd gpadmin | |
mkdir -p /data/master |
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
import re | |
import serial | |
import logging | |
from time import sleep | |
import statsd | |
statsd_client = statsd.StatsClient('localhost', 8125, prefix='ciseco') | |
import xively | |
import requests |
NewerOlder