{"id":1938,"date":"2023-11-15T12:30:00","date_gmt":"2023-11-15T18:30:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=1938"},"modified":"2023-10-24T03:52:11","modified_gmt":"2023-10-24T08:52:11","slug":"how-to-install-bugzilla-on-ubuntu-22-04","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bugzilla-on-ubuntu-22-04\/","title":{"rendered":"How to Install Bugzilla on Ubuntu 22.04"},"content":{"rendered":"\n<div id=\"linux-3976894379\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>Bugzilla is an open-source software for tracking bugs developed by Mozilla&#8217;s developers. It is written in Perl and supports various database systems such as MySQL, PostgreSQL, Oracle, and SQLite. <\/p>\n\n\n\n<!--more-->\n\n\n\n<p>Bugzilla&#8217;s system requirements include a compatible database management system, a suitable release of Perl 5, an assortment of Perl modules, a compatible web server, and a qualified mail transfer agent.<\/p>\n\n\n\n<p>Installing Bugzilla on Ubuntu 22.04 is a straightforward process and may take up to 10 minutes. Let&#8217;s get started!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A server with Ubuntu 22.04 as the OS<\/li>\n\n\n\n<li>At VPS with at least 4 GB of RAM available<\/li>\n\n\n\n<li>User privileges: root or non-root user with sudo privileges<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1. Update the System<\/h2>\n\n\n\n<p>Since we have a fresh installation of Ubuntu 22.04, we need to update the packages to the latest versions available:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt update -y &amp;&amp; sudo apt upgrade -y<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2. Install Perl<\/h2>\n\n\n\n<p>Bugzilla is written in Perl, so we need to install it along with of its dependencies.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install build-essential libappconfig-perl libdate-calc-perl libtemplate-perl libmime-tools-perl build-essential libdatetime-timezone-perl libdatetime-perl libemail-sender-perl libemail-mime-perl libemail-mime-perl libdbi-perl libdbd-mysql-perl libcgi-pm-perl libmath-random-isaac-perl libmath-random-isaac-xs-perl libapache2-mod-perl2 libapache2-mod-perl2-dev libchart-perl libxml-perl libxml-twig-perl perlmagick libgd-graph-perl libtemplate-plugin-gd-perl libsoap-lite-perl libhtml-scrubber-perl libjson-rpc-perl libdaemon-generic-perl libtheschwartz-perl libtest-taint-perl libauthen-radius-perl libfile-slurp-perl libencode-detect-perl libmodule-build-perl libnet-ldap-perl libfile-which-perl libauthen-sasl-perl libfile-mimeinfo-perl libhtml-formattext-withlinks-perl libgd-dev libmysqlclient-dev graphviz sphinx-common rst2pdf libemail-address-perl libemail-reply-perl -y<\/pre>\n\n\n\n<p>After successful installation, check the installed Perl version:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">perl --version<\/pre>\n\n\n\n<p>You should get output similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# perl --version\n\nThis is perl 5, version 34, subversion 0 (v5.34.0) built for x86_64-linux-gnu-thread-multi\n(with 58 registered patches, see perl -V for more detail)<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3. Install MariaDB Database<\/h2>\n\n\n\n<p>To install the MariaDB database server, execute the command below.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install mariadb-server -y<\/pre>\n\n\n\n<p>Start the MariaDB service and enable it to run at system startup with the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl start mariadb &amp;&amp; sudo systemctl enable mariadb<\/pre>\n\n\n\n<p>Check the status of the MariaDB service like so:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl status mariadb<\/pre>\n\n\n\n<p>You should receive the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# sudo systemctl status mariadb\n\u25cf mariadb.service - MariaDB 10.6.12 database server\n     Loaded: loaded (\/lib\/systemd\/system\/mariadb.service; enabled; vendor preset: enabled)\n     Active: active (running) since Thu 2023-09-21 06:50:23 CDT; 18min ago\n       Docs: man:mariadbd(8)\n             https:\/\/mariadb.com\/kb\/en\/library\/systemd\/\n   Main PID: 88311 (mariadbd)\n     Status: \"Taking your SQL requests now...\"\n      Tasks: 7 (limit: 4558)\n     Memory: 59.4M\n        CPU: 1.625s\n     CGroup: \/system.slice\/mariadb.service\n             \u2514\u250088311 \/usr\/sbin\/mariadbd\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4. Create Bugzilla database and user<\/h2>\n\n\n\n<p>To create the BugZilla database and user, log into the MariaDB command line as the root user:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mysql -u root -p<\/pre>\n\n\n\n<p>Then press [Enter] if you have not set a root password for MariaDB. Once logged in, execute the following commands on the MariaDB command line:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> CREATE USER 'bugzilla'@'localhost' IDENTIFIED BY 'YourStrongPasswordHere';\n CREATE DATABASE bugzilla;\n GRANT ALL PRIVILEGES ON bugzilla.* TO 'bugzilla'@'localhost';\n FLUSH PRIVILEGES;\n EXIT;<\/pre>\n\n\n\n<p>With that done, you should now have a database and user ready for Bugzilla.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5. Install Apache2 Webserver<\/h2>\n\n\n\n<p>We are going to use Apache as a web server in this tutorial. To install it, execute the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install apache2 -y<\/pre>\n\n\n\n<p>After successful installation, start and enable the service:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl start apache2 &amp;&amp; sudo systemctl enable apache2<\/pre>\n\n\n\n<p>To check if everything is OK, execute the following command for the status of the Apache2 service:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl status apache2<\/pre>\n\n\n\n<p>You should receive the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# sudo systemctl status apache2\n\u25cf apache2.service - The Apache HTTP Server\n     Loaded: loaded (\/lib\/systemd\/system\/apache2.service; enabled; vendor preset: enabled)\n     Active: active (running) since Thu 2023-09-21 06:52:26 CDT; 25min ago\n       Docs: https:\/\/httpd.apache.org\/docs\/2.4\/\n   Main PID: 93179 (\/usr\/sbin\/apach)\n      Tasks: 6 (limit: 4558)\n     Memory: 13.3M\n        CPU: 308ms\n     CGroup: \/system.slice\/apache2.service\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6. Install Bugzilla<\/h2>\n\n\n\n<p>Download the latest stable version of Bugzilla into the Apache document root.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cd \/var\/www\/html\nwget https:\/\/ftp.mozilla.org\/pub\/mozilla.org\/webtools\/bugzilla-5.0.6.tar.gz<\/pre>\n\n\n\n<p>Once downloaded, extract the <strong>bugzilla<\/strong> directory.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">tar -xvf bugzilla-5.0.6.tar.gz -C \/var\/www\/html\/\n\nmv bugzilla-5.0.6 bugzilla <\/pre>\n\n\n\n<p>Once this is done, go into the &#8220;bugzilla&#8221; directory and run the <strong>checksetup<\/strong> script to check your system&#8217;s setup.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cd \/var\/www\/html\/bugzilla\/\n\n.\/checksetup.pl<\/pre>\n\n\n\n<p>If there are missing modules, you need to execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\/usr\/bin\/perl install-module.pl --all<\/pre>\n\n\n\n<p>Now, if you execute the <b>.\/checksetup.pl<\/b> it will return the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">There was an error connecting to MySQL:\n\n    Access denied for user 'bugs'@'localhost' (using password: NO)\n<\/pre>\n\n\n\n<p>This is normal and expected because we haven&#8217;t set up the configuration file yet. Open the file <b>\/var\/www\/html\/bugzilla\/localconfig<\/b> with your preferred text editor and edit it to look like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$webservergroup = 'www-data';\n$db_driver = 'mysql';\n$db_host = 'localhost';\n$db_name = 'bugzilla';\n$db_user = 'bugzilla';\n$db_pass = 'YourStrongPasswordHere';\n$db_port = 0;<\/pre>\n\n\n\n<p>Save the file and close it. After these settings are done run the <b>.\/checksetup.pl<\/b> again.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">.\/checksetup.pl<\/pre>\n\n\n\n<p>It should return back with no errors.<\/p>\n\n\n\n<p>Next is to define your administrator&#8217;s email, username and password once the database connection is successful.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Enter the e-mail address of the administrator: admin@yourdomain.com\nEnter the real name of the administrator: admin\nEnter a password for the administrator account:\nPlease retype the password to verify:\nadmin@yourdomain.com is now set up as an administrator.\nCreating initial dummy product 'TestProduct'...\n\nNow that you have installed Bugzilla, you should visit the 'Parameters'\npage (linked in the footer of the Administrator account) to ensure it\nis set up as you wish - this includes setting the 'urlbase' option to\nthe correct URL.\nchecksetup.pl complete.\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 7. Create a Virtual Host configuration file<\/h2>\n\n\n\n<p>To access the Bugzilla Web interface, you need to create a virtual host configuration file where you can define your domain, document root, and some script parameters.<\/p>\n\n\n\n<p>First, create the configuration file with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">touch \/etc\/apache2\/sites-available\/bugzilla.conf<\/pre>\n\n\n\n<p>Open the file, and paste the following lines of code:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;VirtualHost *:80&gt;\nServerName yourdomain.com\nDocumentRoot \/var\/www\/html\/bugzilla\/\n\n&lt;Directory \/var\/www\/html\/bugzilla\/&gt;\nAddHandler cgi-script .cgi\nOptions +Indexes +ExecCGI\nDirectoryIndex index.cgi\nAllowOverride Limit FileInfo Indexes Options AuthConfig\n&lt;\/Directory&gt;\n\nErrorLog \/var\/log\/apache2\/yourdomain.com.error_log\nCustomLog \/var\/log\/apache2\/yourdomain.com.access_log common\n&lt;\/VirtualHost&gt;\n<\/pre>\n\n\n\n<p>Make sure to replace <strong>yourdomain.com<\/strong> with the actual domain name you plan on using.<\/p>\n\n\n\n<p>Enable the Apache2 configuration file and other modules:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo a2ensite bugzilla.conf\n\nsudo a2enmod headers env rewrite expires cgi<\/pre>\n\n\n\n<p>Check the syntax of the Apache2 configuration.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">apachectl -t<\/pre>\n\n\n\n<p>You should receive the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# apachectl -t\nSyntax OK<\/pre>\n\n\n\n<p>If you receive this output, you can safely restart the Apache service.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl restart apache2<\/pre>\n\n\n\n<p>With all of this finally configured, you can now access the Bugzilla Web interface at <b>http:\/\/YourDomain.com<\/b>. <\/p>\n\n\n\n<p>Congratulations! You successfully installed and configured Bugzilla on Ubuntu 22.04. Of course, if you use one of our <a href=\"https:\/\/www.rosehosting.com\/bugzilla-hosting\/\" title=\"Managed Bugzilla Hosting\">Linux server support<\/a> services, you do not have to do this on your own &#8211; you can always contact our technical support and they will do the rest for you. We are available 24\/7.<\/p>\n\n\n\n<p>If you liked this post on how to install Bugzilla on Ubuntu 22.04, please share it with your friends on social networks or simply leave a reply below. Thanks.<\/p><div id=\"linux-3862855746\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Bugzilla is an open-source software for tracking bugs developed by Mozilla&#8217;s developers. It is written in Perl and supports various database systems such as MySQL, PostgreSQL, Oracle, and SQLite.<\/p>\n","protected":false},"author":1,"featured_media":1981,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[242,2,182],"tags":[262,20],"class_list":["post-1938","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-open-source","category-tutorials","category-ubuntu","tag-bugzilla","tag-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Bugzilla on Ubuntu 22.04 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Learn how to install Bugzilla on Ubuntu 22.04 and start tracking and fixing bugs in your software.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bugzilla-on-ubuntu-22-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Bugzilla on Ubuntu 22.04 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Learn how to install Bugzilla on Ubuntu 22.04 and start tracking and fixing bugs in your software.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bugzilla-on-ubuntu-22-04\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-15T18:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/10\/how-to-install-bugzilla-on-ubuntu-22-04.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bugzilla-on-ubuntu-22-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bugzilla-on-ubuntu-22-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install Bugzilla on Ubuntu 22.04\",\"datePublished\":\"2023-11-15T18:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bugzilla-on-ubuntu-22-04\\\/\"},\"wordCount\":667,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bugzilla-on-ubuntu-22-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/how-to-install-bugzilla-on-ubuntu-22-04.webp\",\"keywords\":[\"bugzilla\",\"ubuntu\"],\"articleSection\":[\"Open-source\",\"Tutorials\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bugzilla-on-ubuntu-22-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bugzilla-on-ubuntu-22-04\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bugzilla-on-ubuntu-22-04\\\/\",\"name\":\"How to Install Bugzilla on Ubuntu 22.04 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bugzilla-on-ubuntu-22-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bugzilla-on-ubuntu-22-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/how-to-install-bugzilla-on-ubuntu-22-04.webp\",\"datePublished\":\"2023-11-15T18:30:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Learn how to install Bugzilla on Ubuntu 22.04 and start tracking and fixing bugs in your software.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bugzilla-on-ubuntu-22-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bugzilla-on-ubuntu-22-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bugzilla-on-ubuntu-22-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/how-to-install-bugzilla-on-ubuntu-22-04.webp\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/how-to-install-bugzilla-on-ubuntu-22-04.webp\",\"width\":742,\"height\":410,\"caption\":\"how to install bugzilla on ubuntu 22.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bugzilla-on-ubuntu-22-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Bugzilla on Ubuntu 22.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Bugzilla on Ubuntu 22.04 | LinuxHostSupport","description":"Learn how to install Bugzilla on Ubuntu 22.04 and start tracking and fixing bugs in your software.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bugzilla-on-ubuntu-22-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Bugzilla on Ubuntu 22.04 | LinuxHostSupport","og_description":"Learn how to install Bugzilla on Ubuntu 22.04 and start tracking and fixing bugs in your software.","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bugzilla-on-ubuntu-22-04\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2023-11-15T18:30:00+00:00","og_image":[{"width":742,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/10\/how-to-install-bugzilla-on-ubuntu-22-04.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bugzilla-on-ubuntu-22-04\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bugzilla-on-ubuntu-22-04\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install Bugzilla on Ubuntu 22.04","datePublished":"2023-11-15T18:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bugzilla-on-ubuntu-22-04\/"},"wordCount":667,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bugzilla-on-ubuntu-22-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/10\/how-to-install-bugzilla-on-ubuntu-22-04.webp","keywords":["bugzilla","ubuntu"],"articleSection":["Open-source","Tutorials","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-bugzilla-on-ubuntu-22-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bugzilla-on-ubuntu-22-04\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bugzilla-on-ubuntu-22-04\/","name":"How to Install Bugzilla on Ubuntu 22.04 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bugzilla-on-ubuntu-22-04\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bugzilla-on-ubuntu-22-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/10\/how-to-install-bugzilla-on-ubuntu-22-04.webp","datePublished":"2023-11-15T18:30:00+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Learn how to install Bugzilla on Ubuntu 22.04 and start tracking and fixing bugs in your software.","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bugzilla-on-ubuntu-22-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-bugzilla-on-ubuntu-22-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bugzilla-on-ubuntu-22-04\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/10\/how-to-install-bugzilla-on-ubuntu-22-04.webp","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/10\/how-to-install-bugzilla-on-ubuntu-22-04.webp","width":742,"height":410,"caption":"how to install bugzilla on ubuntu 22.04"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bugzilla-on-ubuntu-22-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Bugzilla on Ubuntu 22.04"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1938","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=1938"}],"version-history":[{"count":12,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1938\/revisions"}],"predecessor-version":[{"id":1988,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1938\/revisions\/1988"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/1981"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=1938"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=1938"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=1938"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}