Comment on Show HN: Real-time server monitoring in your browserComments−nodesocket12yFor all my fellow CentOS/RHEL users here is a quick bash script for getting it running (assumes you don't have ruby 1.9 installed). # Install RVM and Ruby 1.9.3 curl -sSL https://get.rvm.io | bash -s stable source /etc/profile.d/rvm.sh rvm install 1.9.3 # Install JSON gem gem install json # Install Scout realtime gem install scout_realtime # Start Scout realtime scout_realtime # Punch a hole in iptables on port 5555 for Scout realtime iptables -A INPUT -p tcp --dport 5555 -j ACCEPT service iptables save service iptables restart−byroot12yYou don't need to install json on 1.9.3, it's already in the stdlib http://ruby-doc.org/stdlib-1.9.3/libdoc/json/rdoc/index.html−adfadf12ycurl -sSL https://get.rvm.io | bash -s stableno.
Comments
For all my fellow CentOS/RHEL users here is a quick bash script for getting it running (assumes you don't have ruby 1.9 installed).
You don't need to install json on 1.9.3, it's already in the stdlib http://ruby-doc.org/stdlib-1.9.3/libdoc/json/rdoc/index.html
no.