In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
Install httpd, mod_ssl, mysql-server, mysql, php-mysql, gcc, perl*, mod-perl-devel
[root@localhost ~] # yum-y install httpd mod_ssl mysql-server mysql php-mysql gcc perl* mod_perl-devel
[root@localhost ~] # service iptables stop # # turn off the firewall
[root@localhost ~] # setenforce 0 # # close selinux
[root@localhost ~] # service httpd start # # start httpd
[root@localhost ~] # chkconfig httpd on # # add 2345 level launch
[root@localhost ~] # service mysqld start # # start the mysql database
[root@localhost ~] # chkconfig mysqld on # # add 2345 level launch
[root@localhost ~] # mysqladmin-uroot-p password "666666" # change the mysql,root user password to 666666, which is empty by default.
Enter password:
[root@localhost] # mysql-uroot-p666666 # # log in to mysql and use the root account
Welcome to the MySQL monitor. Commands end with; or\ g.
Your MySQL connection id is 4
Server version: 5.1.73 Source distribution
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
Affiliates. Other names may be trademarks of their respective
Owners.
Type 'help;' or'\ h' for help. Type'\ c'to clear the current input statement.
Mysql > create database bugs; # # create a database named bugs
Query OK, 1 row affected (0.00 sec)
Mysql > grant all on bugs.* to root@localhost identified by "666666"; # # password of authorized root user is 666666
Query OK, 0 rows affected (0.00 sec)
Mysql > flush privileges; # # Refresh
Query OK, 0 rows affected (0.00 sec)
Mysql > quit # # exit
Download bugzilla and install bugzilla
[root@localhost opt] # wget http://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla-4.5.2.tar.gz # # download bugzilla source code package
[root@localhost opt] # tar xf bugzilla-4.5.2.tar.gz-C / var/www/html/ # # extract to / var/www/html directory of httpd
[root@localhost html] # mv bugzilla-4.5.2/ bugzilla # # rename the extracted bugzilla directory
[root@localhost html] # cd bugzilla/ # # change to the bugzilla directory
[root@localhost bugzilla] #. / checksetup.pl-- check-modules # # check which components are missing
* This is Bugzilla 4.5.2 on perl 5.10.1
* Running on Linux 2.6.32-431.el6.x86_64 # 1 SMP Sun Nov 10 22:19:54 EST 2013
Checking perl modules...
Checking for CGI.pm (v3.51) ok: found v3.64
Checking for Digest-SHA (any) ok: found v5.47
Checking for TimeDate (v2.23) found v2.22
Checking for DateTime (v0.28) ok: found v0.53
Checking for DateTime-TimeZone (v0.71) ok: found v1.08
Checking for DBI (v1.54) ok: found v1.609
Checking for Template-Toolkit (v2.24) found v2.22
Checking for Email-Send (v2.04) not found
Checking for Email-MIME (v1.904) not found
Checking for URI (v1.37) ok: found v1.40
Checking for List-MoreUtils (v0.32) found v0.22
Checking for Math-Random-ISAAC (v1.0.1) not found
Checking available perl DBD modules...
Checking for DBD-Pg (v2.7.0) ok: found v2.15.1
Checking for DBD-mysql (v4.001) ok: found v4.013
Checking for DBD-SQLite (v1.29) found v1.27
Checking for DBD-Oracle (v1.19) not found
The following Perl modules are optional:
Checking for GD (v1.20) ok: found v2.44
Checking for Chart (v2.4.1) not found
Checking for Template-GD (any) not found
Checking for GDTextUtil (any) ok: found v0.86
Checking for GDGraph (any) ok: found v1.44
Checking for MIME-tools (v5.406) ok: found v5.427
Checking for libwww-perl (any) ok: found v5.833
Checking for XML-Twig (any) ok: found v3.34
Checking for PatchReader (v0.9.6) not found
Checking for perl-ldap (any) ok: found v0.40
Checking for Authen-SASL (any) ok: found v2.13
Checking for Net-SMTP-SSL (v1.01) ok: found v1.01
Checking for RadiusPerl (any) not found
Checking for SOAP-Lite (v0.712) found v0.710.10
Checking for XMLRPC-Lite (v0.712) found v0.710.10
Checking for JSON-RPC (any) not found
Checking for JSON-XS (v2.0) not found
Checking for Test-Taint (v1.06) found v1.04
Checking for HTML-Parser (v3.40) ok: found v3.64
Checking for HTML-Scrubber (any) not found
Checking for Encode (v2.21) ok: found v2.35
Checking for Encode-Detect (any) ok: found v1.01
Checking for Email-Reply (any) not found
Checking for HTML-FormatText-WithLinks (v0.13) not found
Checking for TheSchwartz (v1.07) not found
Checking for Daemon-Generic (any) not found
Checking for mod_perl (v1.999022) ok: found v2.000004
Checking for Apache-SizeLimit (v0.96) not found
Checking for File-MimeInfo (any) not found
Checking for IO-stringy (any) ok: found v2.110
Checking for Cache-Memcached (any) ok: found v1.28
Checking for mod_headers (any) ok
Checking for mod_expires (any) ok
Checking for mod_env (any) ok
# found that a lot of components are missing through inspection #
[root@localhost bugzilla] # perl install-module.pl-- all # # it takes a while to execute this command to install the missing components (note that you need to be connected to the network to execute this command)
[root@localhost bugzilla] #. / checksetup.pl # # run the following command, which automatically generates a file called localconfig under the / var/www/html/bugzilla path.
[root@localhost bugzilla] # vim localconfig # # verify that the database name, user, and password you just entered in the localconfig file are correct. Confirm the red content.
50 $db_driver = 'mysql'
fifty-one
52 # The DNS name or IP address of the host that the database server runs on.
53 $db_host = 'localhost'
fifty-four
55 # The name of the database. For Oracle, this is the database's SID. For
56 # SQLite, this is a name (or path) for the DB file.
57 $db_name = 'bugs'
fifty-eight
59 # Who we connect to the database as.
60 $db_user = 'root'
sixty-one
62 # Enter your database password here. It's normally advisable to specify
63 # a password for your bugzilla database user.
64 # If you use apostrophe (') or a backslash (\) in your password, you'll
65 # need to escape it by preceding it with a'\ 'character. (\') or (\)
66 # (It is far simpler to just not use those characters.)
67 $db_pass = '666666'
sixty-eight
69 # Sometimes the database server is running on a non-standard port. If that's
70 # the case for your database server, set this to the port number that your
71 # database server is running on. Setting this to 0 means "use the default
72 # port for my database server. "
73 $db_port = 3306
[root@localhost bugzilla] #. / checksetup.pl # # execute this command again and enter the administrator mailbox and password according to the prompts
Configure httpd to modify the configuration file and add the following under the last line
[root@localhost bugzilla] # vi / etc/httpd/conf/httpd.conf
DocumentRoot / var/www/html/bugzilla/ AddHandler cgi-script .CGI Options + Indexes + ExecCGI DirectoryIndex index.cgi AllowOverride Limit FileInfo Indexes
[root@localhost bugzilla] # vi .htaccess # # next, we need to edit the .htaccess file and comment out the line "Options-Indexes" at the top with "#".
[root@localhost bugzilla] # service httpd restart # # restart the httpd service and you can access it through the browser
4. Since bugzilla needs to send emails to create accounts and submit bug, you also need to install sendmail.
[root@localhost ~] # yum-y install sendmail # # install sendmail
[root@localhost ~] # service sendmail start # # start sendmail
Starting sendmail: [OK]
Start sm-client: [OK]
[root@localhost ~] # yum-y install mail # # install mail
[root@localhost ~] # echo adminwangenzhi | mail-s test W_enzhi@163.com # # Test whether an email can be received
[root@localhost ~] # cd / var/www/html/bugzilla/data/ # # switch to the data directory under bugzilla
[root@localhost data] # vim params # # modify the following red content
% param = (
'LDAPBaseDN' = >''
'LDAPbinddn' = >''
'LDAPfilter' = >''
'LDAPmailattribute' = >' mail'
'LDAPserver' = >''
'LDAPstarttls' = > 0
'LDAPuidattribute' = >' uid'
'RADIUS_NAS_IP' = >''
'RADIUS_email_suffix' = >''
'RADIUS_secret' = >''
'RADIUS_server' = >''
'ajax_user_autocompletion' = >' 1'
'allow_p_w_upload_deletion' = > 0
'allow_p_w_upload_display' = > 0
'allowbugdeletion' = > 0
'allowemailchange' = > 1
'allowuserdeletion' = > 0
'announcehtml' = >''
'paired wishful admiring base'= >''
'auth_env_email' = >''
'auth_env_id' = >''
'auth_env_realname' = >''
'bonsai_url' = >''
'chartgroup' = >' editbugs'
'collapsed_comment_tags' = >' obsolete, spam'
'comment_taggers_group' = >' editbugs'
'commentonchange_resolution' = > 0
'commentonduplicate' = > 0
'confirmuniqueusermatch' = > 1
'cookiedomain' = >''
'cookiepath' = >' /'
'createemailregexp' = >'. *'
'cvsroot' = >''
'cvsroot_get' = >''
'debug_group' = >' admin'
'default_search_limit' = >' 500'
'defaultopsys' = >''
'defaultplatform' = >''
'defaultpriority' = >'--'
'defaultquery' = >' resolution=---&emailassigned_to1=1&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailqa_contact2=1&emaillongdesc3=1&order=Importance&long_desc_type=substring'
'defaultseverity' = >' enhancement'
'docs_urlbase' = >' docs/%lang%/html/'
'duplicate_or_move_bug_status' = >' RESOLVED'
'emailregexp' = >' ^ [\\ w\\.\ +\-=\'] + @ [\\ w\\.\ -] +\ .[\\ w\\ -] + $'
'emailregexpdesc' = >' A legal address must contain exactly one\'@\', and at least one\'.\ 'after the @.
'emailsuffix' = >''
'font_file' = >''
'globalwatchers' = >''
'inbound_proxies' = >''
'insidergroup' = >''
'letsubmitterchoosemilestone' = > 1
'letsubmitterchoosepriority' = > 1
'lxr_root' = >''
'lxr_url' = >''
'mail_delivery_method' = >' Sendmail'
'mailfrom' = >' root@localhost.localdomain'
'maintainer' = >' Whitehall 163.com'
'makeproductgroups' = > 0
'max_search_results' = >' 10000'
'maxp_w_uploadsize' = >' 1000'
'maxlocalp_w_upload' = >' 0'
'maxusermatches' = >' 1000'
'memcached_namespace' = >' bugzilla:'
'memcached_servers' = >''
'mostfreqthreshold' = >'2'
'musthavemilestoneonaccept' = > 0
'mybugstemplate' = >' buglist.cgi?resolution=---&emailassigned_to1=1&emailreporter1=1&emailtype1=exact&email1=%userid%'
'noresolveonopenblockers' = > 0
'or_groups' = > 1
'password_complexity' = >' no_constraints'
'proxy_url' = >''
'querysharegroup' = >' editbugs'
'quip_list_entry_control' = >' open'
'rememberlogin' = >' on'
'requirelogin' = >' 0'
'search_allow_no_criteria' = > 1
'shadowdb' = >''
'shadowdbhost' = >''
'shadowdbport' = >' 3306'
'shadowdbsock' = >''
'shutdownhtml' = >''
'smtp_debug' = > 0
'smtp_password' = >' here is the real mailbox login password'
'smtp_ssl' = > 0
'smtp_username' = >' Whitehall 163.com'
'smtpserver' = >' mail@163.com'
'ssl_redirect' = > 0
'sslbase' = >''
'strict_isolation' = > 0
'strict_transport_security' = >' off'
'timetrackinggroup' = >' editbugs'
'upgrade_notification' = >' latest_stable_release'
'urlbase' = >' http://192.168.1.106/', # # my local IP address is modified according to my own IP address
'use_mailer_queue' = > 0
'use_see_also' = > 1
'useclassification' = > 0
'usemenuforusers' = >' 0'
'useqacontact' = > 0
'user_info_class' = >' CGI'
'user_verify_class' = >' DB'
'usestatuswhiteboard' = > 0
'usetargetmilestone' = > 0
'usevisibilitygroups' = > 0
'utf8' = > 1
'webdotbase' = >' http://www.research.att.com/~north/cgi-bin/webdot.cgi/%urlbase%',
'webservice_email_filter' = > 0
'whinedays' = > 7
);
[root@localhost data] # service httpd restart # # restart httpd
[root@localhost data] # service sendmail restart # # restart sendmail
Visit the bugzilla home page and click on the red arrow to create a user account
6. Enter that the mailbox you want to create must be a legitimate mailbox at the point of the arrow
7. Next, the mailbox where the user is created will receive an email. Click on the link address to open the email and set the password according to the prompts.
Use the newly created account to log in to test whether the login is successful.
# at this point, the installation of bugzilla is complete, and you can successfully create an account and log in #
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 271
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.