-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathINSTALL
57 lines (30 loc) · 1.01 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
To compile stress:
apt-get install build-essential bison flex libboost-all-dev
./configure
make
if you want to install stress on your system, yuo can run:
make install
and it will copy stress in /usr/bin/ directory
To use the webui:
run with root permissions:
apt-get install rubygems libmysqlclient-dev libxml2-dev libxslt1-dev
gem install bundler
or in ubuntu run:
sudo apt-get install rubygems libmysqlclient-dev libxml2-dev libxslt1-dev
sudo gem install bundler
you have to execute:
cp src/stress tools/webui/abnf_validator/script
cd tools/parser/src
make
cp parserabnf ../../webui/abnf_validator/script
cd ../../webui/abnf_validator
Then run to install all gems for rails webui:
bundle install
or if you don't have in your path:
/var/lib/gems/1.8/bin/bundle install
At last you have to configure database:
edit file: config/database.yml with yours configurations and run
rake db:migrate
ready to rock!
script/server start
and now you can access it to URI http://localhost:3000