blob: 998f11c6e0e46b04a13b7ff45e93238fc9334d8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# lfpe
# setup
## nanomsg lib
export LD_LIBRARY_PATH=/fast_scratch/simianer/lfpe/lib/nanomsg-0.5-beta/lib
## ruby
$(pwd)/lib/ruby/gems/nanomsg-0.4.0/ext/extconf.rb
gem install nanomsg -i $(pwd)/lib/ruby
export GEM_PATH=/fast_scratch/simianer/lfpe/lib/ruby/:$GEM_PATH
## iptables
-A INPUT -i eth0 -p tcp -m multiport --dports 50000:50100 -j ACCEPT
## apache
/etc/apache2/conf.d/lfpe.conf
## python
export PYTHONPATH=/fast_scratch/simianer/lfpe/lib/python:$PYTHONPATH
|