We need to build our own bug Management System in Ubuntu, And I will install bugzilla myself. Before installing it, I google it online and read a netizen's installation experience, however, it is basically not installed on Ubuntu/debian. I tried it myself. Not to mention: sudoapt-getinstallmysql-server Note: you need to set the password of the root user of mysql. Be sure to keep it confidential with the administrator of bugzilla.
We need to build our own bug Management System in Ubuntu, And I will install bugzilla myself. Before installing it, I google it online and read a netizen's installation experience, however, it is basically not installed on Ubuntu/debian. I tried it myself.
Not much to mention:
Sudo apt-get install mysql-server Note: you need to set the password of the root user of mysql. Note that it must be consistent with the administrator password of the bugzilla in the future.
Sudo apt-get install bugzilla enter the Administrator account and password as needed
Ubuntu installs the required apache, sendmail, and perl modules together.
Start configuring bugzilla
Configure apache2
Add vi/etc/apache2/httpd. conf
ServerNmae localhost: 80
Sudo/etc/init. d/apache2 restart
Configure bugzilla
Vi/etc/bugzilla/localconfig
Modify the corresponding Configuration:
$ Webservergroup = "www-data ";
#
# How to access the SQL database:
#
$ Db_host = "localhost"; # where is the database?
$ Db_port = 3306; # which port to use
$ Db_name = "bugs"; # name of the MySQL database
$ Db_user = "bugs"; # user to attach to the MySQL database
#
# Some people actually use passwords with their MySQL database...
#
$ Db_pass = "1234 ";
#
# Shocould checksetup. pl try to check if your MySQL setup is correct?
# (With some combinations of MySQL/Msql-mysql/Perl/moonphase this doesn't work)
#
$ Db_check = 1;
$ Index_html = 1;