<output id="qn6qe"></output>

    1. <output id="qn6qe"><tt id="qn6qe"></tt></output>
    2. <strike id="qn6qe"></strike>

      亚洲 日本 欧洲 欧美 视频,日韩中文字幕有码av,一本一道av中文字幕无码,国产线播放免费人成视频播放,人妻少妇偷人无码视频,日夜啪啪一区二区三区,国产尤物精品自在拍视频首页,久热这里只有精品12

      debian11 申通 無感考勤 mysql postgresql nacos集群

       

      echo "

      nameserver 114.114.114.114
      nameserver 8.8.8.8

      " > /etc/resolv.conf

       

      echo "
      deb https://mirrors.aliyun.com/debian/ bullseye main non-free contrib
      deb-src https://mirrors.aliyun.com/debian/ bullseye main non-free contrib
      deb https://mirrors.aliyun.com/debian-security/ bullseye-security main
      deb-src https://mirrors.aliyun.com/debian-security/ bullseye-security main
      deb https://mirrors.aliyun.com/debian/ bullseye-updates main non-free contrib
      deb-src https://mirrors.aliyun.com/debian/ bullseye-updates main non-free contrib
      deb https://mirrors.aliyun.com/debian/ bullseye-backports main non-free contrib
      deb-src https://mirrors.aliyun.com/debian/ bullseye-backports main non-free contrib">/etc/apt/sources.list

       

      apt-get update

       

      apt-get install -y curl

       

      apt-get install -y gnupg2 

       

      apt-get install -y vim

       

       timedatectl set-timezone Asia/Shanghai

       

      cat >> /etc/security/limits.conf <<EOF
      root soft nofile 65535
      root hard nofile 65536
      * soft nofile 65535 * hard nofile 65536
      root soft nproc 64000
      root hard nproc 64000 * soft nproc 64000
      * hard nproc 64000 EOF

       

       

      ------------------------------------------------------------------------------------------------------------------------------

      postgresql:

      vim /etc/apt/sources.list.d/pgdg.list

      deb http://mirrors.zju.edu.cn/postgresql/repos/apt/ bullseye-pgdg main

       
       apt-get update
       
      apt-get install -y locales-all
       

      dpkg-reconfigure locales

       zh_CN.UTF-8
       
      apt-get install -y postgresql-11
       
       
      su - postgres
       
      psql
       
      dev:
      create user wgkqdev with password 'only1234';
      GRANT "postgres" TO "wgkqdev";

      ALTER ROLE "wgkqdev" CREATEDB;

      CREATE DATABASE "wgkqdev"
      WITH
      ENCODING = 'UTF8'
      ;

      alter user postgres with password '123456abcD'; 
       
      qa:
      create user wgkqqa with password 'only5678';
      GRANT "postgres" TO "wgkqqa";

      ALTER ROLE "wgkqqa" CREATEDB;

      CREATE DATABASE "wgkqqa"
      WITH
      ENCODING = 'UTF8'
      ;

      alter user postgres with password '123456abcD';

       

       

      echo "host all all 0.0.0.0/0 md5">>/etc/postgresql/11/main/pg_hba.conf

      cp /etc/postgresql/11/main/postgresql.conf  /etc/postgresql/11/main/postgresql.conf.bak

      sed -i -e "s/#listen_addresses = 'localhost'/listen_addresses = '*'/g" -e 's/max_connections = 100/max_connections = 5000/' -e 's/shared_buffers = 128MB/shared_buffers = 3GB/' -e "s@Etc/UTC@Asia/Shanghai@g" /etc/postgresql/11/main/postgresql.conf 

      pg_ctlcluster 11 main restart

       

      ----------------------------------------------------------------------------------------------

      mysql 8

      vim /etc/apt/sources.list.d/mysql.list

      root 123456abcD

      use mysql

       update user set host='%' where user='root';

      flush privileges;

      grant all privileges on *.* to 'root'@'%' with grant option;

      flush privileges;

       

      CREATE DATABASE `nacos` CHARACTER SET 'utf8mb4' COLLATE 'utf8mb4_bin';

       

       

      --------------------------------------------------------------------------------------------------

      nacos 2.4.2

      CREATE USER `nacos`@`%` IDENTIFIED WITH mysql_native_password BY 'nacos' PASSWORD EXPIRE NEVER;    #只在dev庫

      grant all on nacos.* to 'nacos'@'%';

      wget https://download.nacos.io/nacos-server/nacos-server-2.4.2.zip

      apt-get install -y openjdk-11-jdk 

      apt-get install unzip

      unzip nacos-server-2.4.2.zip

       

       vim nacos/conf/cluster.conf

      10.10.10.176:8848
      10.10.10.177:8848
      10.10.10.178:8848

       

      vim nacos/conf/application.properties

      nacos.core.auth.enabled=true

      nacos.core.auth.plugin.nacos.token.secret.key=SecretKey012345678901234567890123456789012345678901234567890123456789

      nacos.core.auth.server.identity.key=onlyedu
      nacos.core.auth.server.identity.value=only2024

      spring.sql.init.platform=mysql

      db.num=1

      db.url.0=jdbc:mysql://10.10.10.172:3306/nacos?characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useUnicode=true&useSSL=false&serverTimezone=UTC
      db.user.0=nacos
      db.password.0=nacos

       

      mysql -unacos -p nacos < mysql-schema.sql

       

      啟動:

       bash nacos/bin/startup.sh 

       

      web頁面nacos用戶

      密碼onlynacos

       

      用戶wgkqdev

      密碼devwgkq

       

      用戶wgkqqa

      密碼qawgkq

       

      ---------------------------------------------------

      xxl-job-admin

      mysql的dev腳本:

      CREATE database if NOT EXISTS `xxl_job_dev` default character set utf8mb4 collate utf8mb4_unicode_ci;
      use `xxl_job_dev`;
       
      SET NAMES utf8mb4;
       
      CREATE TABLE `xxl_job_info` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `job_group` int(11) NOT NULL COMMENT '執行器主鍵ID',
      `job_desc` varchar(255) NOT NULL,
      `add_time` datetime DEFAULT NULL,
      `update_time` datetime DEFAULT NULL,
      `author` varchar(64) DEFAULT NULL COMMENT '作者',
      `alarm_email` varchar(255) DEFAULT NULL COMMENT '報警郵件',
      `schedule_type` varchar(50) NOT NULL DEFAULT 'NONE' COMMENT '調度類型',
      `schedule_conf` varchar(128) DEFAULT NULL COMMENT '調度配置,值含義取決于調度類型',
      `misfire_strategy` varchar(50) NOT NULL DEFAULT 'DO_NOTHING' COMMENT '調度過期策略',
      `executor_route_strategy` varchar(50) DEFAULT NULL COMMENT '執行器路由策略',
      `executor_handler` varchar(255) DEFAULT NULL COMMENT '執行器任務handler',
      `executor_param` varchar(512) DEFAULT NULL COMMENT '執行器任務參數',
      `executor_block_strategy` varchar(50) DEFAULT NULL COMMENT '阻塞處理策略',
      `executor_timeout` int(11) NOT NULL DEFAULT '0' COMMENT '任務執行超時時間,單位秒',
      `executor_fail_retry_count` int(11) NOT NULL DEFAULT '0' COMMENT '失敗重試次數',
      `glue_type` varchar(50) NOT NULL COMMENT 'GLUE類型',
      `glue_source` mediumtext COMMENT 'GLUE源代碼',
      `glue_remark` varchar(128) DEFAULT NULL COMMENT 'GLUE備注',
      `glue_updatetime` datetime DEFAULT NULL COMMENT 'GLUE更新時間',
      `child_jobid` varchar(255) DEFAULT NULL COMMENT '子任務ID,多個逗號分隔',
      `trigger_status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '調度狀態:0-停止,1-運行',
      `trigger_last_time` bigint(13) NOT NULL DEFAULT '0' COMMENT '上次調度時間',
      `trigger_next_time` bigint(13) NOT NULL DEFAULT '0' COMMENT '下次調度時間',
      PRIMARY KEY (`id`)
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
       
      CREATE TABLE `xxl_job_log` (
      `id` bigint(20) NOT NULL AUTO_INCREMENT,
      `job_group` int(11) NOT NULL COMMENT '執行器主鍵ID',
      `job_id` int(11) NOT NULL COMMENT '任務,主鍵ID',
      `executor_address` varchar(255) DEFAULT NULL COMMENT '執行器地址,本次執行的地址',
      `executor_handler` varchar(255) DEFAULT NULL COMMENT '執行器任務handler',
      `executor_param` varchar(512) DEFAULT NULL COMMENT '執行器任務參數',
      `executor_sharding_param` varchar(20) DEFAULT NULL COMMENT '執行器任務分片參數,格式如 1/2',
      `executor_fail_retry_count` int(11) NOT NULL DEFAULT '0' COMMENT '失敗重試次數',
      `trigger_time` datetime DEFAULT NULL COMMENT '調度-時間',
      `trigger_code` int(11) NOT NULL COMMENT '調度-結果',
      `trigger_msg` text COMMENT '調度-日志',
      `handle_time` datetime DEFAULT NULL COMMENT '執行-時間',
      `handle_code` int(11) NOT NULL COMMENT '執行-狀態',
      `handle_msg` text COMMENT '執行-日志',
      `alarm_status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '告警狀態:0-默認、1-無需告警、2-告警成功、3-告警失敗',
      PRIMARY KEY (`id`),
      KEY `I_trigger_time` (`trigger_time`),
      KEY `I_handle_code` (`handle_code`)
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
       
      CREATE TABLE `xxl_job_log_report` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `trigger_day` datetime DEFAULT NULL COMMENT '調度-時間',
      `running_count` int(11) NOT NULL DEFAULT '0' COMMENT '運行中-日志數量',
      `suc_count` int(11) NOT NULL DEFAULT '0' COMMENT '執行成功-日志數量',
      `fail_count` int(11) NOT NULL DEFAULT '0' COMMENT '執行失敗-日志數量',
      `update_time` datetime DEFAULT NULL,
      PRIMARY KEY (`id`),
      UNIQUE KEY `i_trigger_day` (`trigger_day`) USING BTREE
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
       
      CREATE TABLE `xxl_job_logglue` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `job_id` int(11) NOT NULL COMMENT '任務,主鍵ID',
      `glue_type` varchar(50) DEFAULT NULL COMMENT 'GLUE類型',
      `glue_source` mediumtext COMMENT 'GLUE源代碼',
      `glue_remark` varchar(128) NOT NULL COMMENT 'GLUE備注',
      `add_time` datetime DEFAULT NULL,
      `update_time` datetime DEFAULT NULL,
      PRIMARY KEY (`id`)
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
       
      CREATE TABLE `xxl_job_registry` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `registry_group` varchar(50) NOT NULL,
      `registry_key` varchar(255) NOT NULL,
      `registry_value` varchar(255) NOT NULL,
      `update_time` datetime DEFAULT NULL,
      PRIMARY KEY (`id`),
      KEY `i_g_k_v` (`registry_group`,`registry_key`,`registry_value`)
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
       
      CREATE TABLE `xxl_job_group` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `app_name` varchar(64) NOT NULL COMMENT '執行器AppName',
      `title` varchar(12) NOT NULL COMMENT '執行器名稱',
      `address_type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '執行器地址類型:0=自動注冊、1=手動錄入',
      `address_list` text COMMENT '執行器地址列表,多地址逗號分隔',
      `update_time` datetime DEFAULT NULL,
      PRIMARY KEY (`id`)
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
       
      CREATE TABLE `xxl_job_user` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `username` varchar(50) NOT NULL COMMENT '賬號',
      `password` varchar(50) NOT NULL COMMENT '密碼',
      `role` tinyint(4) NOT NULL COMMENT '角色:0-普通用戶、1-管理員',
      `permission` varchar(255) DEFAULT NULL COMMENT '權限:執行器ID列表,多個逗號分割',
      PRIMARY KEY (`id`),
      UNIQUE KEY `i_username` (`username`) USING BTREE
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
       
      CREATE TABLE `xxl_job_lock` (
      `lock_name` varchar(50) NOT NULL COMMENT '鎖名稱',
      PRIMARY KEY (`lock_name`)
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
       
      INSERT INTO `xxl_job_group`(`id`, `app_name`, `title`, `address_type`, `address_list`, `update_time`) VALUES (1, 'xxl-job-executor-sample', '示例執行器', 0, NULL, '2018-11-03 22:21:31' );
      INSERT INTO `xxl_job_info`(`id`, `job_group`, `job_desc`, `add_time`, `update_time`, `author`, `alarm_email`, `schedule_type`, `schedule_conf`, `misfire_strategy`, `executor_route_strategy`, `executor_handler`, `executor_param`, `executor_block_strategy`, `executor_timeout`, `executor_fail_retry_count`, `glue_type`, `glue_source`, `glue_remark`, `glue_updatetime`, `child_jobid`) VALUES (1, 1, '測試任務1', '2018-11-03 22:21:31', '2018-11-03 22:21:31', 'XXL', '', 'CRON', '0 0 0 * * ? *', 'DO_NOTHING', 'FIRST', 'demoJobHandler', '', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代碼初始化', '2018-11-03 22:21:31', '');
      INSERT INTO `xxl_job_user`(`id`, `username`, `password`, `role`, `permission`) VALUES (1, 'admin', 'e10adc3949ba59abbe56e057f20f883e', 1, NULL);
      INSERT INTO `xxl_job_lock` ( `lock_name`) VALUES ( 'schedule_lock');
       
      commit;

       

       

      mysql qa的腳本:

      CREATE database if NOT EXISTS `xxl_job_qa` default character set utf8mb4 collate utf8mb4_unicode_ci;
      use `xxl_job_qa`;
       
      SET NAMES utf8mb4;
       
      CREATE TABLE `xxl_job_info` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `job_group` int(11) NOT NULL COMMENT '執行器主鍵ID',
      `job_desc` varchar(255) NOT NULL,
      `add_time` datetime DEFAULT NULL,
      `update_time` datetime DEFAULT NULL,
      `author` varchar(64) DEFAULT NULL COMMENT '作者',
      `alarm_email` varchar(255) DEFAULT NULL COMMENT '報警郵件',
      `schedule_type` varchar(50) NOT NULL DEFAULT 'NONE' COMMENT '調度類型',
      `schedule_conf` varchar(128) DEFAULT NULL COMMENT '調度配置,值含義取決于調度類型',
      `misfire_strategy` varchar(50) NOT NULL DEFAULT 'DO_NOTHING' COMMENT '調度過期策略',
      `executor_route_strategy` varchar(50) DEFAULT NULL COMMENT '執行器路由策略',
      `executor_handler` varchar(255) DEFAULT NULL COMMENT '執行器任務handler',
      `executor_param` varchar(512) DEFAULT NULL COMMENT '執行器任務參數',
      `executor_block_strategy` varchar(50) DEFAULT NULL COMMENT '阻塞處理策略',
      `executor_timeout` int(11) NOT NULL DEFAULT '0' COMMENT '任務執行超時時間,單位秒',
      `executor_fail_retry_count` int(11) NOT NULL DEFAULT '0' COMMENT '失敗重試次數',
      `glue_type` varchar(50) NOT NULL COMMENT 'GLUE類型',
      `glue_source` mediumtext COMMENT 'GLUE源代碼',
      `glue_remark` varchar(128) DEFAULT NULL COMMENT 'GLUE備注',
      `glue_updatetime` datetime DEFAULT NULL COMMENT 'GLUE更新時間',
      `child_jobid` varchar(255) DEFAULT NULL COMMENT '子任務ID,多個逗號分隔',
      `trigger_status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '調度狀態:0-停止,1-運行',
      `trigger_last_time` bigint(13) NOT NULL DEFAULT '0' COMMENT '上次調度時間',
      `trigger_next_time` bigint(13) NOT NULL DEFAULT '0' COMMENT '下次調度時間',
      PRIMARY KEY (`id`)
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
       
      CREATE TABLE `xxl_job_log` (
      `id` bigint(20) NOT NULL AUTO_INCREMENT,
      `job_group` int(11) NOT NULL COMMENT '執行器主鍵ID',
      `job_id` int(11) NOT NULL COMMENT '任務,主鍵ID',
      `executor_address` varchar(255) DEFAULT NULL COMMENT '執行器地址,本次執行的地址',
      `executor_handler` varchar(255) DEFAULT NULL COMMENT '執行器任務handler',
      `executor_param` varchar(512) DEFAULT NULL COMMENT '執行器任務參數',
      `executor_sharding_param` varchar(20) DEFAULT NULL COMMENT '執行器任務分片參數,格式如 1/2',
      `executor_fail_retry_count` int(11) NOT NULL DEFAULT '0' COMMENT '失敗重試次數',
      `trigger_time` datetime DEFAULT NULL COMMENT '調度-時間',
      `trigger_code` int(11) NOT NULL COMMENT '調度-結果',
      `trigger_msg` text COMMENT '調度-日志',
      `handle_time` datetime DEFAULT NULL COMMENT '執行-時間',
      `handle_code` int(11) NOT NULL COMMENT '執行-狀態',
      `handle_msg` text COMMENT '執行-日志',
      `alarm_status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '告警狀態:0-默認、1-無需告警、2-告警成功、3-告警失敗',
      PRIMARY KEY (`id`),
      KEY `I_trigger_time` (`trigger_time`),
      KEY `I_handle_code` (`handle_code`)
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
       
      CREATE TABLE `xxl_job_log_report` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `trigger_day` datetime DEFAULT NULL COMMENT '調度-時間',
      `running_count` int(11) NOT NULL DEFAULT '0' COMMENT '運行中-日志數量',
      `suc_count` int(11) NOT NULL DEFAULT '0' COMMENT '執行成功-日志數量',
      `fail_count` int(11) NOT NULL DEFAULT '0' COMMENT '執行失敗-日志數量',
      `update_time` datetime DEFAULT NULL,
      PRIMARY KEY (`id`),
      UNIQUE KEY `i_trigger_day` (`trigger_day`) USING BTREE
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
       
      CREATE TABLE `xxl_job_logglue` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `job_id` int(11) NOT NULL COMMENT '任務,主鍵ID',
      `glue_type` varchar(50) DEFAULT NULL COMMENT 'GLUE類型',
      `glue_source` mediumtext COMMENT 'GLUE源代碼',
      `glue_remark` varchar(128) NOT NULL COMMENT 'GLUE備注',
      `add_time` datetime DEFAULT NULL,
      `update_time` datetime DEFAULT NULL,
      PRIMARY KEY (`id`)
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
       
      CREATE TABLE `xxl_job_registry` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `registry_group` varchar(50) NOT NULL,
      `registry_key` varchar(255) NOT NULL,
      `registry_value` varchar(255) NOT NULL,
      `update_time` datetime DEFAULT NULL,
      PRIMARY KEY (`id`),
      KEY `i_g_k_v` (`registry_group`,`registry_key`,`registry_value`)
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
       
      CREATE TABLE `xxl_job_group` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `app_name` varchar(64) NOT NULL COMMENT '執行器AppName',
      `title` varchar(12) NOT NULL COMMENT '執行器名稱',
      `address_type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '執行器地址類型:0=自動注冊、1=手動錄入',
      `address_list` text COMMENT '執行器地址列表,多地址逗號分隔',
      `update_time` datetime DEFAULT NULL,
      PRIMARY KEY (`id`)
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
       
      CREATE TABLE `xxl_job_user` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `username` varchar(50) NOT NULL COMMENT '賬號',
      `password` varchar(50) NOT NULL COMMENT '密碼',
      `role` tinyint(4) NOT NULL COMMENT '角色:0-普通用戶、1-管理員',
      `permission` varchar(255) DEFAULT NULL COMMENT '權限:執行器ID列表,多個逗號分割',
      PRIMARY KEY (`id`),
      UNIQUE KEY `i_username` (`username`) USING BTREE
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
       
      CREATE TABLE `xxl_job_lock` (
      `lock_name` varchar(50) NOT NULL COMMENT '鎖名稱',
      PRIMARY KEY (`lock_name`)
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
       
      INSERT INTO `xxl_job_group`(`id`, `app_name`, `title`, `address_type`, `address_list`, `update_time`) VALUES (1, 'xxl-job-executor-sample', '示例執行器', 0, NULL, '2018-11-03 22:21:31' );
      INSERT INTO `xxl_job_info`(`id`, `job_group`, `job_desc`, `add_time`, `update_time`, `author`, `alarm_email`, `schedule_type`, `schedule_conf`, `misfire_strategy`, `executor_route_strategy`, `executor_handler`, `executor_param`, `executor_block_strategy`, `executor_timeout`, `executor_fail_retry_count`, `glue_type`, `glue_source`, `glue_remark`, `glue_updatetime`, `child_jobid`) VALUES (1, 1, '測試任務1', '2018-11-03 22:21:31', '2018-11-03 22:21:31', 'XXL', '', 'CRON', '0 0 0 * * ? *', 'DO_NOTHING', 'FIRST', 'demoJobHandler', '', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代碼初始化', '2018-11-03 22:21:31', '');
      INSERT INTO `xxl_job_user`(`id`, `username`, `password`, `role`, `permission`) VALUES (1, 'admin', 'e10adc3949ba59abbe56e057f20f883e', 1, NULL);
      INSERT INTO `xxl_job_lock` ( `lock_name`) VALUES ( 'schedule_lock');
       
      commit;

       

       

      mysql dev庫:

       

      CREATE USER `xxldev`@`%` IDENTIFIED WITH mysql_native_password BY 'xxldev' PASSWORD EXPIRE NEVER;    

      grant all on xxl_job_dev.* to 'xxldev'@'%';

      flush privileges;

       

       

      mysql qa庫:

       

      CREATE USER `xxlqa`@`%` IDENTIFIED WITH mysql_native_password BY 'xxlqa' PASSWORD EXPIRE NEVER;    

      grant all on xxl_job_qa.* to 'xxlqa'@'%';

      flush privileges;

       

      posted @ 2024-09-06 13:25  alexhe  閱讀(13)  評論(0)    收藏  舉報
      主站蜘蛛池模板: 乌兰浩特市| 国产a在视频线精品视频下载| 91精品国产午夜福利| 金阳县| 国产三级精品三级在线区| 国产香蕉尹人在线视频你懂的 | 免费无码又爽又刺激高潮虎虎视频| 亚洲精品日韩久久精品| 日韩av不卡一区二区在线| 午夜DY888国产精品影院| 日本丰满熟妇videossex一| 日韩一区日韩二区日韩三区| 亚洲日韩图片专区第1页 | 97亚洲熟妇自偷自拍另类图片| 欧洲码亚洲码的区别入口| 99精品国产高清一区二区麻豆| 免费看一区无码无a片www| 亚洲av尤物一区二区| 国产精品白浆在线观看免费| 国产精品乱码高清在线观看| 欧美 变态 另类 人妖| 国产熟睡乱子伦午夜视频| 国产极品粉嫩尤物一线天| 国产国产人免费人成免费| 美女无遮挡免费视频网站| 国产成人AV男人的天堂| 国产成人精品1024免费下载| 国产另类ts人妖一区二区| 丰满巨乳淫巨大爆乳| 最新午夜男女福利片视频| 色综合色综合色综合频道| 国产太嫩了在线观看| 国产成人片无码视频| 日韩中文字幕人妻精品| 久久久婷婷成人综合激情| 亚洲欧洲一区二区综合精品| 日韩一区二区三区精品区| 青草99在线免费观看| 隔壁老王国产在线精品| 一区二区不卡国产精品| 精品人妻伦一二三区久久aaa片|