適用于 Linux 的分步 Bugzilla 安裝指南(適用于對違法的公職人員依法作出政務(wù)處分決定)

      網(wǎng)友投稿 999 2025-03-31

      Bugzilla 是最好的開源錯誤跟蹤系統(tǒng)。使用非常簡單,具有許多功能。Bugzilla 允許您跟蹤錯誤并有效地與組織中的開發(fā)人員和其他團隊協(xié)作。


      這是針對 linux的詳細(xì)的逐步bugzilla 安裝指南。

      1. 驗證 Perl 版本

      確保您的 perl 版本 >= 5.8.1,如下所示。

      # perl -v This is perl, v5.8.8 built for i386-linux-thread-multi

      大多數(shù) Linux 發(fā)行版都帶有 perl。如果您沒有它,請從相應(yīng)的分發(fā)網(wǎng)站下載并安裝它。

      2.安裝MySQL數(shù)據(jù)庫

      確保您的 MySQL 版本 >= 4.1.2,如下所示。

      # mysql -V mysql Ver 14.12 Distrib 5.0.77, for redhat-linux-gnu (i686) using readline 5.1

      如果您沒有 mysql,請使用yum groupinstall安裝它

      3.安裝阿帕奇

      如果您已經(jīng)安裝了 apache,請確保您可以使用 http://{your-ip-address} 訪問它。

      如果您沒有 apache,安裝使用基于LAMP 安裝文章的 yum,或者從 source 安裝 apache。

      4. 下載最新的 Bugzilla tar 球

      從bugzilla 下載頁面下載最新的穩(wěn)定版本。將bugzilla*.tar.gz文件解壓到apache文檔根目錄下,如下圖。

      # cd ~ # wget http://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla-3.6.tar.gz # cd /var/www/html # tar xvfz /usr/save/bugzilla-3.4.6.tar.gz

      5. 執(zhí)行 bugzilla checksetup.pl

      Bugzilla checksetup.pl 程序?qū)Ⅱ炞C是否安裝了所有必需的 perl 模塊。這還將顯示需要安裝的所有缺少的 bugzilla 模塊的列表。

      您可以根據(jù)需要多次運行 checksetup.pl 程序,直到您確認(rèn)安裝了所有必需的 perl 模塊。

      以下是第一次運行 checksetup.pl 的輸出,其中列出了所有缺少的可選和必需模塊。

      # cd /var/www/html/bugzilla-3.4.6 # ./checksetup.pl --check-modules COMMANDS TO INSTALL OPTIONAL MODULES: GD: /usr/bin/perl install-module.pl GD Chart: /usr/bin/perl install-module.pl Chart::Base Template-GD: /usr/bin/perl install-module.pl Template::Plugin::GD::Image GDTextUtil: /usr/bin/perl install-module.pl GD::Text GDGraph: /usr/bin/perl install-module.pl GD::Graph XML-Twig: /usr/bin/perl install-module.pl XML::Twig MIME-tools: /usr/bin/perl install-module.pl MIME::Parser libwww-perl: /usr/bin/perl install-module.pl LWP::UserAgent PatchReader: /usr/bin/perl install-module.pl PatchReader PerlMagick: /usr/bin/perl install-module.pl Image::Magick perl-ldap: /usr/bin/perl install-module.pl Net::LDAP Authen-SASL: /usr/bin/perl install-module.pl Authen::SASL RadiusPerl: /usr/bin/perl install-module.pl Authen::Radius SOAP-Lite: /usr/bin/perl install-module.pl SOAP::Lite HTML-Parser: /usr/bin/perl install-module.pl HTML::Parser HTML-Scrubber: /usr/bin/perl install-module.pl HTML::Scrubber Email-MIME-Attachment-Stripper: /usr/bin/perl install-module.pl Email::MIME::Attachment::Stripper Email-Reply: /usr/bin/perl install-module.pl Email::Reply TheSchwartz: /usr/bin/perl install-module.pl TheSchwartz Daemon-Generic: /usr/bin/perl install-module.pl Daemon::Generic mod_perl: /usr/bin/perl install-module.pl mod_perl2 YOU MUST RUN ONE OF THE FOLLOWING COMMANDS (depending on which database you use): PostgreSQL: /usr/bin/perl install-module.pl DBD::Pg MySQL: /usr/bin/perl install-module.pl DBD::mysql Oracle: /usr/bin/perl install-module.pl DBD::Oracle COMMANDS TO INSTALL REQUIRED MODULES (You *must* run all these commands and then re-run checksetup.pl): /usr/bin/perl install-module.pl CGI /usr/bin/perl install-module.pl Digest::SHA /usr/bin/perl install-module.pl Date::Format /usr/bin/perl install-module.pl DateTime /usr/bin/perl install-module.pl DateTime::TimeZone /usr/bin/perl install-module.pl Template /usr/bin/perl install-module.pl Email::Send /usr/bin/perl install-module.pl Email::MIME /usr/bin/perl install-module.pl Email::MIME::Encodings /usr/bin/perl install-module.pl Email::MIME::Modifier /usr/bin/perl install-module.pl URI To attempt an automatic install of every required and optional module with one command, do: /usr/bin/perl install-module.pl --all

      6.執(zhí)行bugzilla install-module.pl

      正如 checksetup.pl 的輸出所建議的,您可以執(zhí)行 install-module.pl 來安裝所有 bugzilla 必需和可選的 perl 模塊。

      # /usr/bin/perl install-module.pl --all

      請查看上述 install-module.pl 的輸出,以確保所有內(nèi)容都已正確安裝。某些模塊可能無法安裝(可能是因為缺少某些必需的操作系統(tǒng)包)。

      執(zhí)行 checksetup.pl 以驗證是否所有模塊都已正確安裝。

      以下是第二次運行 checksetup.pl 的輸出:

      # ./checksetup.pl --check-modules COMMANDS TO INSTALL OPTIONAL MODULES: GD: /usr/bin/perl install-module.pl GD Chart: /usr/bin/perl install-module.pl Chart::Base Template-GD: /usr/bin/perl install-module.pl Template::Plugin::GD::Image GDTextUtil: /usr/bin/perl install-module.pl GD::Text GDGraph: /usr/bin/perl install-module.pl GD::Graph XML-Twig: /usr/bin/perl install-module.pl XML::Twig PerlMagick: /usr/bin/perl install-module.pl Image::Magick SOAP-Lite: /usr/bin/perl install-module.pl SOAP::Lite mod_perl: /usr/bin/perl install-module.pl mod_perl2 YOU MUST RUN ONE OF THE FOLLOWING COMMANDS (depending on which database you use): PostgreSQL: /usr/bin/perl install-module.pl DBD::Pg MySQL: /usr/bin/perl install-module.pl DBD::mysql Oracle: /usr/bin/perl install-module.pl DBD::Oracle

      7. 安裝缺少的 Perl 模塊

      正如我們從上面的 checksetup.pl 輸出中看到的那樣,當(dāng)我們運行 install-module.pl 時,一些可選模塊和必需模塊的安裝沒有完成。

      因此,我們必須一個一個地手動安裝缺少的模塊,以找出問題并一個一個地修復(fù)它。

      請參閱最后的“疑難解答部分”,了解我在安裝 bugzilla 所需的 perl 模塊時遇到的所有問題(以及如何解決這些問題的解決方案)。

      8.最終checksetup.pl --check-modules驗證

      再次執(zhí)行 checksetup.pl –check-modules 如下所示作為最終驗證,以確保所有模塊都安裝成功。

      # ./checksetup.pl --check-modules * This is Bugzilla 3.4.6 on perl 5.8.8 * Running on Linux 2.6.18-164.el5PAE #1 SMP Thu Sep 3 04:10:44 EDT 2009 Checking perl modules... Checking for CGI.pm (v3.21) ok: found v3.49 Checking for Digest-SHA (any) ok: found v5.48 Checking for TimeDate (v2.21) ok: found v2.24 Checking for DateTime (v0.28) ok: found v0.55 Checking for DateTime-TimeZone (v0.71) ok: found v1.17 Checking for DBI (v1.41) ok: found v1.52 Checking for Template-Toolkit (v2.22) ok: found v2.22 Checking for Email-Send (v2.00) ok: found v2.198 Checking for Email-MIME (v1.861) ok: found v1.903 Checking for Email-MIME-Encodings (v1.313) ok: found v1.313 Checking for Email-MIME-Modifier (v1.442) ok: found v1.903 Checking for URI (any) ok: found v1.54 Checking available perl DBD modules... Checking for DBD-Pg (v1.45) not found Checking for DBD-mysql (v4.00) ok: found v4.013 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 (v1.0) ok: found v2.4.1 Checking for Template-GD (any) ok: found v1.56 Checking for GDTextUtil (any) ok: found v0.86 Checking for GDGraph (any) ok: found v1.44 Checking for XML-Twig (any) ok: found v3.34 Checking for MIME-tools (v5.406) ok: found v5.427 Checking for libwww-perl (any) ok: found v5.834 Checking for PatchReader (v0.9.4) ok: found v0.9.5 Checking for PerlMagick (any) ok: found v6.2.8 Checking for perl-ldap (any) ok: found v0.4001 Checking for Authen-SASL (any) ok: found v2.1401 Checking for RadiusPerl (any) ok: found v0.17 Checking for SOAP-Lite (v0.710.06) ok: found v0.711 Checking for HTML-Parser (v3.40) ok: found v3.65 Checking for HTML-Scrubber (any) ok: found v0.08 Checking for Email-MIME-Attachment-Stripper (any) ok: found v1.316 Checking for Email-Reply (any) ok: found v1.202 Checking for TheSchwartz (any) ok: found v1.10 Checking for Daemon-Generic (any) ok: found v0.61 Checking for mod_perl (v1.999022) ok: found v2.000004

      9. 使用 checksetup.pl 創(chuàng)建 localconfig 文件

      不帶任何參數(shù)執(zhí)行 checksetup.pl,這將在當(dāng)前目錄中創(chuàng)建一個 localconfig 文件。localconfig 文件包含 bugzilla 使用的關(guān)鍵配置參數(shù)(例如,mysql db 用戶名和密碼)。

      # ./checksetup.pl Reading ./localconfig... This version of Bugzilla contains some variables that you may want to change and adapt to your local settings. Please edit the file ./localconfig and rerun checksetup.pl. The following variables are new to ./localconfig since you last ran checksetup.pl: create_htaccess, webservergroup, db_driver, db_host, db_name, db_user, db_pass, db_port, db_sock, db_check, index_html, cvsbin, interdiffbin, diffpath, site_wide_secret

      10.修改localconfig文件。

      您唯一需要修改 localconfig 文件是 MySQL 數(shù)據(jù)庫 db 密碼,方法是更改 $db_pass 變量,如下所示。

      # vi ./localconfig $db_pass = 'Bugs4All';

      11.修改/etc/my.cnf增加bugzilla附件大小

      在 /etc/my.cnf 中將 max_allowed_pa cket 設(shè)置為 4M 以增加 bugzilla 附件大小。

      # cat /etc/my.cnf [mysqld] datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.sock user=mysql # Default to using old password format for compatibility with mysql 3.x # clients (those using the mysqlclient10 compatibility package). old_passwords=1 # Disabling symbolic-links is recommended to prevent assorted security risks; # to do so, uncomment this line: # symbolic-links=0 # Allow packets up to 4MB max_allowed_packet=4M [mysqld_safe] log-error=/var/log/mysqld.log pid-file=/var/run/mysqld/mysqld.pid

      更改后重新啟動 mysqld。

      # service mysqld restart

      12.創(chuàng)建bug mysql用戶

      將 bugzilla 用戶(bugs)添加到 mysql 數(shù)據(jù)庫,如下所示。

      # mysql -u root -p mysql> GRANT SELECT, INSERT, UPDATE, DELETE, INDEX, ALTER, CREATE, LOCK TABLES, CREATE TEMPORARY TABLES, DROP, REFERENCES ON bugs.* TO bugs@localhost IDENTIFIED BY 'Bugs4All'; mysql> FLUSH PRIVILEGES;

      13. 創(chuàng)建 bugzilla 數(shù)據(jù)庫

      再次執(zhí)行 checksetup.pl(不帶任何參數(shù))以創(chuàng)建 mysql bugzilla 數(shù)據(jù)庫。由于localconfig文件已經(jīng)存在,第二次執(zhí)行checksetup.pl時,會根據(jù)localconfig文件中的信息創(chuàng)建mysql數(shù)據(jù)庫。

      # ./checksetup.pl Creating database bugs... Building Schema object from database... Adding new table bz_schema ... Initializing the new Schema storage... Adding new table attach_data ... Adding new table attachments ... Adding new table bug_group_map ... Adding new table bug_see_also ... Adding new table bug_severity ... Adding new table bug_status ... Inserting values into the 'priority' table: Inserting values into the 'bug_status' table: Inserting values into the 'rep_platform' table: Creating ./data directory... Creating ./data/attachments directory... Creating ./data/duplicates directory... Adding foreign key: attachments.bug_id -> bugs.bug_id... Adding foreign key: attachments.submitter_id -> profiles.userid... Adding foreign key: bug_group_map.bug_id -> bugs.bug_id...

      14. 創(chuàng)建 bugzilla 管理員帳戶。

      在 ./checksetup.pl 執(zhí)行結(jié)束時,它會檢測到您沒有管理員帳戶并要求您輸入管理登錄信息,如下所示。

      Looks like we don't have an administrator set up yet. Either this is your first time using Bugzilla, or your administrator's privileges might have accidentally been deleted. Enter the e-mail address of the administrator: ramesh@thegeekstuff.com Enter the real name of the administrator: Ramesh Natarajan Enter a password for the administrator account: NotRealPwd Please retype the password to verify: welcome ramesh@thegeekstuff.com is now set up as an administrator. Creating default classification 'Unclassified'... Creating initial dummy product 'TestProduct'... Now that you have installed Bugzilla, you should visit the 'Parameters' page (linked in the footer of the Administrator account) to ensure it is set up as you wish - this includes setting the 'urlbase' option to the correct URL.

      15. 為 mod_perl 配置 apache

      重命名 bugzilla 目錄。(即刪除其中的版本號)

      # cd /var/www/html # mv bugzilla-3.4.6/ bugzilla

      將以下兩行添加到 httpd.conf

      #tail -2 /etc/httpd/conf/httpd.conf PerlSwitches -I/var/www/html/bugzilla -I/var/www/html/bugzilla/lib -w -T PerlConfigRequire /var/www/html/bugzilla/mod_perl.pl

      驗證 httpd.conf 中的組與 localconfig 中的 webservergroup 匹配

      # cd /var/www/html/bugzilla/ # grep webservergroup localconfig $webservergroup = 'apache'; # grep Group /etc/httpd/conf/httpd.conf Group apache

      16.最終checksetup.pl執(zhí)行

      再次執(zhí)行 checksetup.pl。

      # ./checksetup.pl Reading ./localconfig... Removing existing compiled templates... Precompiling templates...done. Fixing file permissions... Now that you have installed Bugzilla, you should visit the 'Parameters' page (linked in the footer of the Administrator account) to ensure it is set up as you wish - this includes setting the 'urlbase' option to the correct URL.

      17. 登錄 bugzilla 并完成一次性設(shè)置。

      啟動 apache,轉(zhuǎn)到 http://{your-ip-address}/bugzilla 并使用您在上面創(chuàng)建的管理員帳戶登錄。

      在 bugzilla 用戶界面的頁腳 -> 管理 -> 參數(shù) -> '必需設(shè)置' 部分 -> 填寫以下信息:

      維護者:ramesh@thegeekstuff.com

      urlbase: http://{your-ip-address}/

      注意:根據(jù)您的設(shè)置,轉(zhuǎn)到 -> 用戶身份驗證 -> 您可能想要更改 requiredlogin 和 emailregexp 參數(shù)。

      對 Bugzilla 安裝問題進(jìn)行故障排除

      問題 1:DBD::mysql 模塊失敗

      DBD:mysql perl 模塊失敗并顯示“mysql.h: No such file or directory”錯誤消息,如下所示。

      # /usr/bin/perl install-module.pl DBD::mysql dbdimp.h:22:49: error: mysql.h: No such file or directory dbdimp.h:23:45: error: mysqld_error.h: No such file or directory dbdimp.h:25:49: error: errmsg.h: No such file or directory In file included from dbdimp.c:20: dbdimp.h:144: error: expected specifier-qualifier-list before aMYSQLa dbdimp.h:236: error: expected specifier-qualifier-list before aMYSQL_RESa

      解決方案1:安裝mysql-devel

      錯誤消息“mysql.h:沒有這樣的文件或目錄”是因為缺少 mysql-devel 包,如下所示。

      # rpm -qa | grep -i mysql MySQL-python-1.2.1-1 mysql-5.0.77-4.el5_4.2 mysql-connector-odbc-3.51.26r1127-1.el5 mysql-server-5.0.77-4.el5_4.2 libdbi-dbd-mysql-0.8.1a-1.2.2 perl-DBD-MySQL-3.0007-2.el5

      安裝 mysql-devel 包,如下所示。

      # yum install mysql-devel # rpm -qa | grep -i "mysql-devel" mysql-devel-5.0.77-4.el5_4.2

      DBD::mysql 安裝現(xiàn)在將順利完成。

      # /usr/bin/perl install-module.pl DBD::mysql

      問題 2:GD 因缺少 gdlib-config / libgd 而失敗

      安裝 GD 模塊失敗,并顯示以下錯誤消息。

      # /usr/bin/perl install-module.pl GD **UNRECOVERABLE ERROR** Could not find gdlib-config in the search path. Please install libgd 2.0.28 or higher. If you want to try to compile anyway, please rerun this script with the option --ignore_missing_gd. Running make test Make had some problems, maybe interrupted? Won't test Running make install Make had some problems, maybe interrupted? Won't install

      解決方案2:安裝gd-devel包

      如下所示安裝 libgd(即 gd-devel 包)以修復(fù) GD 模塊問題。

      # yum install gd-devel # rpm -qa | grep gd gd-2.0.33-9.4.el5_4.2 gd-devel-2.0.33-9.4.el5_4.2

      安裝 gd-devel 包后,GD 安裝沒有任何問題。

      # /usr/bin/perl install-module.pl GD

      問題 3:Twig 因 expat.h 錯誤而失敗

      Twig 模塊安裝失敗,并顯示錯誤消息“expat.h: No such file or directory”,如下所示。

      # /usr/bin/perl install-module.pl XML::Twig Expat.xs:12:19: error: expat.h: No such file or directory Expat.xs:60: error: expected specifier-qualifier-list before XML_Parser

      解決方案3:為 Twig 安裝 expat 和 expat-devel

      安裝 expat 和 expat-devel 包,如下所示。

      # yum install expat # yum install expat-devel

      現(xiàn)在安裝 Twig 沒有任何問題。

      # /usr/bin/perl install-module.pl XML::Twig

      問題 4:Image::Magick 安裝失敗

      Image::Magick 安裝失敗,出現(xiàn)“magick/MagickCore.h: No such file or directory”錯誤消息,如下所示。

      # /usr/bin/perl install-module.pl Image::Magick Note (probably harmless): No library found for -lMagickCore Magick.xs:64:31: error: magick/MagickCore.h: No such file or directory Magick.xs:171: error: expected specifier-qualifier-list before ‘MagickRealType’ Magick.xs:192: error: expected specifier-qualifier-list before ‘ImageInfo’ Magick.xs:214: error: ‘MagickNoiseOptions’ undeclared here (not in a function) Magick.xs:214: warning: missing initializer

      解決方案4:Image::Magick 安裝失敗

      確保存在以下 ImageMagic 相關(guān)包。

      # rpm -qa | grep -i Image ImageMagick-6.2.8.0-4.el5_1.1 ImageMagick-c++-devel-6.2.8.0-4.el5_1.1 ImageMagick-devel-6.2.8.0-4.el5_1.1 ImageMagick-c++-6.2.8.0-4.el5_1.1 ImageMagick-perl-6.2.8.0-4.el5_1.1

      就我而言, ImageMagic-devel 丟失了。所以,安裝它如下所示。之后,Image::Magick perl 模塊安裝成功。

      # yum install ImageMagick-devel # /usr/bin/perl install-module.pl Image::Magick

      問題 5:SOAP::Lite 安裝失敗

      SOAP::Lite 模塊安裝失敗,并顯示“Cannot locate version.pm in @INC”消息,如下所示。

      #/usr/bin/perl install-module.pl SOAP::Lite Failed test 'use SOAP::Lite;' at t/SOAP/Data.t line 5. Tried to use 'SOAP::Lite'. Error: Can't locate version.pm in @INC

      解決方案5:安裝 SOAP::Lite 所需的 version.pm

      安裝的 version.pm 如下圖所示。此后,SOAP::Lite 安裝成功,沒有任何問題。

      # perl -MCPAN -e 'install version' # /usr/bin/perl install-module.pl SOAP::Lite

      問題 6(和解決方案 6):缺少 mod_perl

      不要使用 /usr/bin/perl install-module.pl mod_perl2 安裝 mod_perl。insetad,如下圖使用yum安裝mod_perl。

      適用于 Linux 的分步 Bugzilla 安裝指南(適用于對違法的公職人員依法作出政務(wù)處分決定)

      # yum install mod_perl

      問題 7:Apache 啟動失敗

      啟動 apache 失敗,出現(xiàn)“無法在 @INC 中找到 Template/Config.pm”錯誤消息。

      # service httpd restart Stopping httpd: [ OK ] Starting httpd: Syntax error on line 994 of /etc/httpd/conf/httpd.conf: Can't locate Template/Config.pm in @INC

      解決方案7:安裝模板工具包,如下圖

      安裝 Template-Tool kit 來修復(fù)上面的 apache 錯誤信息

      # cpan cpan> i /Template-Toolkit/ Distribution A/AB/ABEL/Eidolon-Driver-Template-Toolkit-0.01.tar.gz Distribution A/AB/ABW/Template-Toolkit-1.07.tar.gz Distribution A/AB/ABW/Template-Toolkit-2.22.tar.gz Distribution I/IN/INGY/Template-Toolkit-Simple-0.03.tar.gz 4 items found cpan> install A/AB/ABW/Template-Toolkit-2.22.tar.gz

      問題8:Apache啟動再次失敗

      啟動 apache 失敗并出現(xiàn)“無法在 @INC 中找到 DateTime/Locale.pm”錯誤消息。

      # service httpd restart Stopping httpd: [ OK ] Starting httpd: Syntax error on line 994 of /etc/httpd/conf/httpd.conf: Can't locate DateTime/Locale.pm in @INC

      解決方案8:安裝DateTime/Locale.pm,如下圖

      安裝 DateTime/Locale.pm 以修復(fù)上述 apache 錯誤消息

      # cpan cpan> install DateTime:Locale

      此外,在您的 apache error_log 中,如果您看到 Digest/SHA.pm 問題,您應(yīng)該如下所示安裝它。

      # tail -f /etc/httpd/logs/error_log Can't locate Digest/SHA.pm in @INC (@INC contains: # cpan cpan> install Digest::SHA

      Linux MySQL

      版權(quán)聲明:本文內(nèi)容由網(wǎng)絡(luò)用戶投稿,版權(quán)歸原作者所有,本站不擁有其著作權(quán),亦不承擔(dān)相應(yīng)法律責(zé)任。如果您發(fā)現(xiàn)本站中有涉嫌抄襲或描述失實的內(nèi)容,請聯(lián)系我們jiasou666@gmail.com 處理,核實后本網(wǎng)站將在24小時內(nèi)刪除侵權(quán)內(nèi)容。

      版權(quán)聲明:本文內(nèi)容由網(wǎng)絡(luò)用戶投稿,版權(quán)歸原作者所有,本站不擁有其著作權(quán),亦不承擔(dān)相應(yīng)法律責(zé)任。如果您發(fā)現(xiàn)本站中有涉嫌抄襲或描述失實的內(nèi)容,請聯(lián)系我們jiasou666@gmail.com 處理,核實后本網(wǎng)站將在24小時內(nèi)刪除侵權(quán)內(nèi)容。

      上一篇:天津機械設(shè)備生產(chǎn)管理公司(天津機械設(shè)備生產(chǎn)管理公司排名)
      下一篇:如何將excel單元格內(nèi)容拆分
      相關(guān)文章
      在线aⅴ亚洲中文字幕| 亚洲网址在线观看| 亚洲一级毛片免费观看| 亚洲国产成人高清在线观看| 亚洲黄黄黄网站在线观看| 亚洲狠狠色丁香婷婷综合| 91亚洲导航深夜福利| 亚洲Av无码专区国产乱码DVD | 国产午夜亚洲精品理论片不卡| 亚洲国产成人久久综合一区77| 在线观看亚洲视频| 午夜在线亚洲男人午在线| 国产午夜亚洲精品不卡电影| 亚洲AV日韩AV永久无码色欲| 亚洲欧美成人一区二区三区| 亚洲熟妇无码AV不卡在线播放| 亚洲一区在线免费观看| 亚洲一区二区三区乱码在线欧洲| 亚洲一区二区三区不卡在线播放| 亚洲国产人成在线观看| 亚洲天堂2016| 亚洲乱色伦图片区小说| 精品亚洲国产成人av| 亚洲AV蜜桃永久无码精品| 亚洲精品网站在线观看不卡无广告 | 亚洲伊人久久大香线焦| 久久久久亚洲AV无码专区体验| 亚洲午夜久久久影院| 久久久久亚洲av无码尤物| 久久精品国产亚洲av水果派| 亚洲毛片基地日韩毛片基地| 亚洲成a人片在线观看中文!!! | 亚洲a视频在线观看| 亚洲欧美日韩一区二区三区在线| 亚洲视频在线视频| 亚洲毛片无码专区亚洲乱| 亚洲色大网站WWW永久网站| 亚洲精品色播一区二区 | 亚洲制服中文字幕第一区| 亚洲国产高清人在线| 亚洲午夜久久久久久尤物|