4、添加一個(gè)用戶,并設(shè)置密碼
adduser test1
passwd test1
密碼:123456
十二、配置bugzilla配置文件
1、在自己的bugzilla安裝路徑下(如本例為/root/bugzilla/bugzilla-2.22.3目錄),找到文件 localconfig
vi localconfig
2、找到
$index_html=0
改為:
$index_html=1
這樣會(huì)生成一個(gè)index.html文件,該文件指向index.cgi
3、找到
$db_pass=‘’
改為:
$db_pass=‘123456’
注意:?jiǎn)我?hào)中為創(chuàng)建bugs用戶的密碼,一定與前面設(shè)置的相同
修改后保存退出
4、在bugzilla安裝路徑,輸入命令:
perl checksetup.pl
創(chuàng)建bugs數(shù)據(jù)庫(kù)中的表
后將提示輸入如下信息:
Enter the e-mail address of the administrator:
輸入:test1@tdtest.com
說明:要求輸入bugzilla管理員e-mail地址,注意是自己前面配置的郵箱帳戶,這是登錄bugzilla的帳戶
You entered'test1@tdtest.com'.Isthis correct? [Y/n]
說明:確認(rèn)剛才輸入的e-mail地址是否正確,回答 y 即可
Enter the real name of the administrator:
輸入:test1
說明:輸入真實(shí)姓名
Enter a password for the administrator account:
輸入:123456
說明:登錄bugzilla的密碼,可以與前面不同,但一定要記住
Please retype the password to verify:
輸入:123456
說明:進(jìn)行密碼確認(rèn)
(6)這時(shí)將出現(xiàn)如下信息:
'test1@tdtest.com'is now set up as an administrator account.
表示帳戶創(chuàng)建成功
(7)這時(shí),可以到mysql數(shù)據(jù)庫(kù)中查看
A、輸入命令:
mysql -uroot -p123456
進(jìn)入mysql
B、在mysql提示符下輸入命令:
Use bugs;
連接bugs數(shù)據(jù)庫(kù)
C、在mysql提示符下輸入命令:
Show tables;
可以看到bugs數(shù)據(jù)庫(kù)中已經(jīng)創(chuàng)建好了表
(8)退出mysql即可