ubuntu에 오픈소스 검증툴(fossology) 설치방법이다.
자세한 내용은 사이트 참조 http://fossology.org/
우선 필요한 패키지 부터 설치하자
root@test:~# apt-get install apache2
root@test:~# apt-get install php5-pgsql php-pear libapache2-mod-php5
그리고
root@test:~# apt-get fossology
root@test:~# apt-get postgresql
모든 설치는 끝났다. 설정을 해주자
shmmax 값설정
root@test:~# echo 512000000 > /proc/sys/kernel/shmmax
postgresql 환경설정 수정
root@test:~# vi /etc/postgresql/9.1/main/postgresql.conf
#hba_file = 'ConfigDir/pg_hba.conf'# host-based authentication file
#ident_file = 'ConfigDir/pg_ident.conf'# IDENT configuration file
#external_pid_file = '(none)'# write an extra pid file
listen_addresses = '*'
fsync = off
full_page_writes = off #recover from partial page writes
이외 설정값들은 자신이 원하는 값으로 수정한다.
아파치 설정값 추가
root@test:~# vi /etc/apache2/sites-available/defualt
Alias /repo /usr/share/fossology/www/
<Directory "/usr/share/fossology/www/">
AllowOverride None
Options followSymLinks MultiViews
Order allow,deny
Allow from all
</Directory>
모든 설정이 끝났다. root 계정으로 설치를 했기때문에
폴더 권한을 변경해줘야 한다.
root@test:~# chown -R fossy:fossy /usr/share/fossology/www
root@test:~# service apache2 restart
root@test:~# service postgresql restart
root@test:~# service fossology restart
모두 재가동 시켜고
http://localhost/repo/index.php
접속해주면
'Ubuntu' 카테고리의 다른 글
openstack 설치하기 (1) | 2013.08.13 |
---|---|
ubuntu virtualbox 용량 늘리기 (0) | 2013.08.02 |
ubuntu 원격접속 하기 (0) | 2013.07.29 |
ubuntu xrdp 사용시 D 누르면 바탕화면으로 전환될때 (0) | 2013.07.29 |
vt-x features locked or unavailable in msr virtualbox (0) | 2013.07.29 |