Manual de instalación de bugzilla en ubuntu

Páginas: 2 (493 palabras) Publicado: 4 de abril de 2011
Junto a la instalación del server, instalar OpenSSH para poder accesar via ssh
Configuración de la maquina virtual o server tiene que ser Bridged

Instalar development tools

# sudo aptitudeinstall build-essential

How to install bugzilla on Ubuntu server

Here are the main steps:
1.Install Per l(5.8.1 or above)
2.Install MySQL
3.Install Apache2
4.Install Bugzilla 3.2
5.InstallPerl modules
6.Bugzilla using apache

1. Perl

Verify if Perl is installed:

# user@handyowner:~$ perl -v

If not installed :

# user@handyowner:~$ sudo apt-get install perl

2. MySQLVerify if MySQL is installed:

# user@handyowner:~$ mysql -v

If not installed :

# user@handyowner:~$ sudo apt-get install mysql-client mysql-server mysql-admin

Create “bugzilla” user with astrong password:

# user@handyowner:~$ sudo useradd -d /home/bugzilla -m bugzilla

# user@handyowner:~$ sudo passwd bugzilla

Tip! Here is what makes a password strong: make it lengthy, combineletters, numbers and symbols, use words and phrases that are easy for you to remember, but difficult for others to guess.
Create a database ‘bugzilla’ and grant privileges to ‘bugzilla’ database to‘bugzilla’ user:

# user@handyowner:~$ mysql -u root -p

mysql> create database bugzilla;

mysql> show databases;

+——————–---+
| Database |
+——————–---+
| information_schema |
| bugzilla |+——————–---+

2 rows in set (0.00 sec)

mysql> grant all privileges on bugzilla.* to bugzilla@localhost;

* Verify the database through SQuirreL

3. Apache2

Verify if Apache is installed:

#user@handyowner:~$ apache2 -v

view in a web browser the default welcome page at http://localhost

If not installed :

# user@handyowner:~$ sudo apt-get install apache2

4. Bugzilla 4.0

#wget http://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla-4.0.tar.gz

Untar the downloaded file to your download folder

# sudo tar -xvf bugzilla-4.0.tar
Move bugzilla dirrectory to...
Leer documento completo

Regístrate para leer el documento completo.

Estos documentos también te pueden resultar útiles

  • Manual de instalacion de Ubuntu
  • Manual De Instalacion De Ubuntu
  • Manual de instalacion de ubuntu 11.04
  • Manual de instalacion de ubuntu
  • Manual instalacion ubuntu
  • Manual de instalacion de ubuntu
  • manual de instalacion de ubuntu
  • Manual de Instalacion de FireBird en Ubuntu

Conviértase en miembro formal de Buenas Tareas

INSCRÍBETE - ES GRATIS