資源描述:
《linux下安裝mantis配置指南》由會員上傳分享,免費在線閱讀,更多相關(guān)內(nèi)容在工程資料-天天文庫。
1、Linux下安裝mantis配置指南(全)???????Linux下安裝mantis配置指南1配置Linux下的Apache+Mysql+PHP作為缺陷管理工具,前段時間bugzilla比較流行,但bugzilla配置比較繁瑣,使用起來也是相當?shù)姆爆?。而且非常占系統(tǒng)資源。使用perl編寫的CGI程序,所以很明顯的一個缺點就是:每建立一個連接就會開啟一個服務(wù)器進程。所以最近企業(yè)使用mantis的是越來越多了。使用非常方便簡潔而且可以定制工作流等優(yōu)點。發(fā)現(xiàn)網(wǎng)上關(guān)于在Linux下配置mantis的資料非常之少。所以經(jīng)過兩天的研究:成功搭建Linux下manti
2、s,下面是簡要的配置指南。不太清楚的地方,大家多多提出,我會進一步補充。一.安裝配置Apache安裝包的獲?。篽ttp://www.apache.org1.1.安裝Apache(tar包)tar–zxvfhttp-2.2.11.tar.gz./configure--prefix=/usr/local/apache--enable-modules=so--enable-rewritemake&&makeinstall1.2.配置Apachevi/usr/local/apache/conf/httpd.conf找到下面這行#ServerNamewww.exa
3、mple.com:80修改為:ServerNamewww.dong.com:80保存退出。1.3.拷貝文件cp–a/usr/local/apache/bin/apachectl/etc/rc.d/init.d/httpdcp–a/usr/local/apache/bin/apachectl/etc/httpd/conf/httpd將httpd加到系統(tǒng)服務(wù)中cp/usr/local/apache/bin/apachectl/etc/rc.d/init.d/httpdvihttpd//在/etc/rc.d/int.d/目錄下編輯復(fù)制過去的httpd程序找到:
4、#!/bin/sh//一般在第一行另起一行,增加:#chkconfig:23457030#description:Apache然后注冊服務(wù):chkconfig--addhttpd啟動:servicehttpdstart停止:servicehttpdstop重新啟動:servicehttpdrestart重啟apache1.4運行service命令Servicehttpdrestart1.5檢驗配置是否成功IE地址欄輸入:http://www.dong.com看到It’sWork證明配置成功?;蛘呤褂胮s–aux
5、grephttpd如果看到多行數(shù)據(jù),也證明
6、配置成功二.安裝Mysql(rpm包)安裝包的獲取:http://www.mysql.com2.1.檢查是否安裝mysql輸入命令:rpm-qa
7、grep–imysql如果有提示,證明mysql已經(jīng)安裝,那么使用rpm–emysql卸載mysql包。2.3啟動服務(wù)servicemysqldrestart創(chuàng)建數(shù)據(jù)庫mysql;createdatabasebugtrackercharacterset=utf8;grantallon*.*to'mantis'@'%'identifiedby'mantis';grantallon*.*to'mantis'@'lo
8、calhost'identifiedby'mantis';grantgrantoptionon*.*to'mantis'@'%'identifiedby'mantis';設(shè)置mantis密碼setpasswordformantis@localhost=old_password(‘mantis’);三.安裝GD庫(tar包讓PHP支持GIF、PNG、JPEG)注意:不安裝只會影響mantis的數(shù)據(jù)統(tǒng)計部分功能。安裝包的獲取:?3.1安裝GD庫3.1.1.安裝jpeg6(jpegsrc.v6b.tar.gz)ftp://ftp.uu.net/graphics
9、/jpeg/????mkdir-p/usr/local/jpeg6mkdir-p/usr/local/jpeg6/binmkdir-p/usr/local/jpeg6/libmkdir-p/usr/local/jpeg6/includemkdir-p/usr/local/jpeg6/manmkdir-p/usr/local/jpeg6/man1mkdir-p/usr/local/jpeg6/man/man1tar–zxvf?jpegsrc.v6b.tar.gz./configure--prefix=/usr/local/jpeg6/--enable-sh
10、ared--enable-staticMake&&makeinstall3.1.