| 分享:        ▲
                    
                      ▼         
 
   make sure you have already installed gcc and all dependency packages in your systemthen go into boa extracted directory
 #./configure
 if there is no errors then execute "make"
 #make
 
 #mkdir /etc/boa            //the default SERVER_ROOT for config file
 #cp ./examples/boa.conf /etc/boa
 #mkdir /usr/local/boa
 #cp ./src/boa /usr/local/boa
 #cp ./src/boa_indexer /usr/local/boa
 #mkdir /var/www          //if not exist (default www directory)
 #/usr/local/boa/boa       //start up the boa server
 # netstat -na |grep 80
 tcp        0      0 0.0.0.0:80                  0.0.0.0:*                   LISTEN
 # ps -ef |grep boa
 nobody   17144     1  0 10:30 pts/0    00:00:00 ./boa
 
 also make sure the user & group of /etc/boa/boa.conf are existing in your system
 e.g.
 User nobody
 Group nogroup
 
 most of settings can be made in /etc/boa/boa.conf, just have a look
 
 |