Posted in Linux/Unix/OpenSource by: sean
No Comments
24 Jun
How to make the transition as seamless as possible? I found out the hard way, it’s not as easy as remounting with -t nfs4!
server is already exporting /home through /etc/exports
/home 10.4.91.0/24(rw,no_root_squash,async)
Create the NFS4 pseudofilesystem:
mkdir /NFS4
chmod 777 /NFS4
Create a place for /home to go
mkdir /NFS4/home
mount –bind /home /NFS4/home
make it permanent in /etc/fstab
/NFS4/home […]
Posted in Linux/Unix/OpenSource by: sean
1 Comment
30 May
I’ve really been getting into cfengine lately to manage configurations across multiple servers.
One thing I want to do is to make sure that the proper services are started. Making sure they’re running is easy with the processes command:
processes:
“cfenvd” restart “/sbin/service cfenvd restart”
I also want to make […]
Posted in Linux/Unix/OpenSource by: sean
No Comments
26 May
As part of my work with b5 I’m wrangling with 10 servers now. When I started out it was 3, so keeping configurations in sync was pretty easy, a bit of shell scripting, a bit of rsync. But now we’ve got server roles, we’ve got config files that are slightly different per server, […]
Posted in Linux/Unix/OpenSource by: sean
No Comments
11 May
I’ve had a need to distribute the memcached and APC modules to various web servers in a farm. pecl/pear modules have a pretty cool interface similiar to yum, but it’s all based on source. It does, however, have facilities to help you build an RPM. Because I try to use RPM for everything […]
Posted in Personal, Linux/Unix/OpenSource by: sean
No Comments
01 May
fixcanoe.user.js
Removes the search box at the top of some pages that steals focus.
Stops the tabs from rotating on the front page.
Don’t have Greasemonkey? Get it
Posted in Personal, Linux/Unix/OpenSource by: sean
No Comments
18 Apr
I’ve uploaded some of my code to sourceforge to a new project called taind - tools for analyzing and interpreting netflow data. I wrote this to analyze BGP peering options, it uses netflow data and multiple BGP tables (from “show ip bgp”) to evaluate what your current traffic distribution is, and what it would […]
Posted in Linux/Unix/OpenSource by: sean
2 Comments
14 Apr
b5media uses a handful of web servers fronted by a load balancer. We’re getting quite busy in terms of traffic, so I finally got around to putting reverse proxy in front of the farm. A reverse proxy accepts the request from the user and checks its cache for the result. If no answer is found, […]
Posted in Telephony, Personal, Linux/Unix/OpenSource by: sean
No Comments
02 Apr
I had meant to put these up as .PDFs, but it appears ACM archives LJ articles once they go public (~30 days after the magazine comes out). Enjoy.
How to configure SIP and NAT
Expose VoIP Problems Using Wireshark
Posted in Personal, Linux/Unix/OpenSource by: sean
2 Comments
31 Mar
The folks over at Proven Scaling offered to send three people to the MySQL conference in Santa Clara at the end of the month. I put my name in and won!
Unfortunately my wife’s at a conference herself those days, so I can’t go. Major bummer!
I think it’s wonderful that a company is offering […]
Posted in Linux/Unix/OpenSource by: sean
No Comments
12 Mar
I’m doing some work with NetFlow accounting. FlowScan parses the data captured by flow-tools. However, FlowScan needs Cflow.pm which has to be specially compiled to work with flow-tools, because it’s made for Caida’s now defunct cflowd.
If you don’t compile Cflow.pm using the flow-tools library, you get something like “Invalid index in cflowd flow […]