Clickhouse备份恢复_clickhouse-client方式backup命令之备份目录的设置

想要backup database dbname to Disk('diskname','backupfilename.zip')成功的话,需要符合3点
1、diskname需要在/etc/clickhouse-server/config.d/backup_disk.xml在<storage_configuration><disks></disks></storage_configuration>中存在
2、diskname需要在/etc/clickhouse-server/config.d/backup_disk.xml在<backups><allowed_disk></allowed_disk></backups>中存在
3、diskname需要在select name,path,type from system.disks结果集中存在





案例1、备份目录配置及备份状况

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

[root@CHDBDEV ~]# cat /etc/clickhouse-server/config.d/backup_disk.xml

<clickhouse>

    <storage_configuration>

        <disks>

            <backups>

                <type>local</type>

                <path>/backups/123/</path>

            </backups>

        </disks>

    </storage_configuration>

    <backups>

        <allowed_disk>baks</allowed_disk>

        <allowed_path>/backups/345/</allowed_path>

    </backups>

</clickhouse>

CHDBDEV :) select name,path,type,is_read_only,is_write_once,is_remote,is_broken from system.disks;

   ┌─name────┬─path─────────────────────┬─type──┬─is_read_only─┬─is_write_once─┬─is_remote─┬─is_broken─┐

1. │ backups │ /backups/123/            │ Local │            0 │             0 │         0 │         0 │

2. │ default │ /chdata/clickhouse/data/ │ Local │            0 │             0 │         0 │         0 │

   └─────────┴──────────────────────────┴───────┴──────────────┴───────────────┴───────────┴───────────┘

CHDBDEV :) backup database lukestest1 to Disk('backups','lukestest1_2024.zip');

Received exception from server (version 24.4.1):

Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Disk ''backups'' 

is not allowed for backups, see the 'backups.allowed_disk' configuration parameter. (BAD_ARGUMENTS)

CHDBDEV :) backup database lukestest1 to Disk('default','lukestest1_2024.zip');

Received exception from server (version 24.4.1):

Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Disk ''default'' 

is not allowed for backups, see the 'backups.allowed_disk' configuration parameter. (BAD_ARGUMENTS)








案例2、备份目录配置及备份状况

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

[root@CHDBDEV ~]# cat /etc/clickhouse-server/config.d/backup_disk.xml

<clickhouse>

    <storage_configuration>

        <disks>

            <backups>

                <type>local</type>

                <path>/backups/123/</path>

            </backups>

        </disks>

    </storage_configuration>

    <backups>

        <allowed_disk>backups</allowed_disk>

        <allowed_path>/backups/123/</allowed_path>

    </backups>

</clickhouse>

CHDBDEV :) select name,path,type,is_read_only,is_write_once,is_remote,is_broken from system.disks;

   ┌─name────┬─path─────────────────────┬─type──┬─is_read_only─┬─is_write_once─┬─is_remote─┬─is_broken─┐

1. │ backups │ /backups/123/            │ Local │            0 │             0 │         0 │         0 │

2. │ default │ /chdata/clickhouse/data/ │ Local │            0 │             0 │         0 │         0 │

   └─────────┴──────────────────────────┴───────┴──────────────┴───────────────┴───────────┴───────────┘

CHDBDEV :) backup database lukestest1 to Disk('backups','lukestest1_2024.zip');

   ┌─id───────────────────────────────────┬─status─────────┐

1. │ 803d8178-49fe-4f82-bf82-b70881496f0e │ BACKUP_CREATED │

   └──────────────────────────────────────┴────────────────┘

CHDBDEV :) backup database lukestest1 to Disk('default','lukestest1_2024.zip');

Received exception from server (version 24.4.1):

Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Disk ''default'' 

is not allowed for backups, see the 'backups.allowed_disk' configuration parameter. (BAD_ARGUMENTS)






案例3、备份目录配置及备份状况

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

[root@CHDBDEV ~]# cat /etc/clickhouse-server/config.d/backup_disk.xml

<clickhouse>

    <storage_configuration>

        <disks>

            <backups>

                <type>local</type>

                <path>/backups/123/</path>

            </backups>

        </disks>

    </storage_configuration>

    <backups>

        <allowed_disk>backups</allowed_disk>

        <allowed_path>/backups/123/</allowed_path>

    </backups>

   <backups>

        <allowed_disk>default</allowed_disk>

        <allowed_path>/chdata/clickhouse/data/</allowed_path>

    </backups>

</clickhouse>

CHDBDEV :) select name,path,type,is_read_only,is_write_once,is_remote,is_broken from system.disks;

   ┌─name────┬─path─────────────────────┬─type──┬─is_read_only─┬─is_write_once─┬─is_remote─┬─is_broken─┐

1. │ backups │ /backups/123/            │ Local │            0 │             0 │         0 │         0 │

2. │ default │ /chdata/clickhouse/data/ │ Local │            0 │             0 │         0 │         0 │

   └─────────┴──────────────────────────┴───────┴──────────────┴───────────────┴───────────┴───────────┘

CHDBDEV :) backup database lukestest1 to Disk('backups','lukestest1_2024_02.zip');

   ┌─id───────────────────────────────────┬─status─────────┐

1. │ 739aa691-5e94-4853-8f39-3bb422a749d6 │ BACKUP_CREATED │

   └──────────────────────────────────────┴────────────────┘

CHDBDEV :) backup database lukestest1 to Disk('default','lukestest1_2024.zip');

Received exception from server (version 24.4.1):

Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Disk ''default'' 

is not allowed for backups, see the 'backups.allowed_disk' configuration parameter. (BAD_ARGUMENTS)




案例4、备份目录配置及备份状况

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

[root@CHDBDEV ~]# cat /etc/clickhouse-server/config.d/backup_disk.xml

<clickhouse>

    <storage_configuration>

        <disks>

            <backups>

                <type>local</type>

                <path>/backups/123/</path>

            </backups>

        </disks>

        <disks>

            <default>

                <type>local</type>

                <path>/chdata/clickhouse/data/</path>

            </default>

        </disks>

    </storage_configuration>

    <backups>

        <allowed_disk>backups</allowed_disk>

        <allowed_path>/backups/123/</allowed_path>

    </backups>

   <backups>

        <allowed_disk>default</allowed_disk>

        <allowed_path>/chdata/clickhouse/data/</allowed_path>

    </backups>

</clickhouse>

CHDBDEV :) select name,path,type,is_read_only,is_write_once,is_remote,is_broken from system.disks;

   ┌─name────┬─path─────────────────────┬─type──┬─is_read_only─┬─is_write_once─┬─is_remote─┬─is_broken─┐

1. │ backups │ /backups/123/            │ Local │            0 │             0 │         0 │         0 │

2. │ default │ /chdata/clickhouse/data/ │ Local │            0 │             0 │         0 │         0 │

   └─────────┴──────────────────────────┴───────┴──────────────┴───────────────┴───────────┴───────────┘

CHDBDEV :) backup database lukestest1 to Disk('backups','lukestest1_2024_03.zip');

   ┌─id───────────────────────────────────┬─status─────────┐

1. │ e5c9fe04-c24b-4760-b98e-dd5c366088a9 │ BACKUP_CREATED │

   └──────────────────────────────────────┴────────────────┘

CHDBDEV :) backup database lukestest1 to Disk('default','lukestest1_2024.zip');

Received exception from server (version 24.4.1):

Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Disk ''default'' 

is not allowed for backups, see the 'backups.allowed_disk' configuration parameter. (BAD_ARGUMENTS)




案例5、备份目录配置及备份状况

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

[root@CHDBDEV ~]# cat /etc/clickhouse-server/config.d/backup_disk.xml

<clickhouse>

    <storage_configuration>

        <disks>

            <backups>

                <type>local</type>

                <path>/backups/123/</path>

            </backups>

        </disks>

        <disks>

            <default2>

                <type>local</type>

                <path>/backups/345/</path>

            </default2>

        </disks>

    </storage_configuration>

    <backups>

        <allowed_disk>backups</allowed_disk>

        <allowed_path>/backups/123/</allowed_path>

    </backups>

   <backups>

        <allowed_disk>default2</allowed_disk>

        <allowed_path>/backups/345/</allowed_path>

    </backups>

</clickhouse>

CHDBDEV :) select name,path,type,is_read_only,is_write_once,is_remote,is_broken from system.disks;

   ┌─name────┬─path─────────────────────┬─type──┬─is_read_only─┬─is_write_once─┬─is_remote─┬─is_broken─┐

1. │ backups │ /backups/123/            │ Local │            0 │             0 │         0 │         0 │

2. │ default │ /chdata/clickhouse/data/ │ Local │            0 │             0 │         0 │         0 │

   └─────────┴──────────────────────────┴───────┴──────────────┴───────────────┴───────────┴───────────┘

CHDBDEV :) backup database lukestest1 to Disk('backups','lukestest1_2024_04.zip');

   ┌─id───────────────────────────────────┬─status─────────┐

1. │ 72d58abc-c82d-4705-952f-c0e493662fd1 │ BACKUP_CREATED │

   └──────────────────────────────────────┴────────────────┘

CHDBDEV :) backup database lukestest1 to Disk('default2','lukestest1_2024.zip');

Received exception from server (version 24.4.1):

Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Disk ''default2'' 

is not allowed for backups, see the 'backups.allowed_disk' configuration parameter. (BAD_ARGUMENTS)







案例6、备份目录配置及备份状况

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

[root@CHDBDEV ~]# cat /etc/clickhouse-server/config.d/backup_disk.xml

<clickhouse>

    <storage_configuration>

        <disks>

            <backups>

                <type>local</type>

                <path>/backups/123/</path>

            </backups>

        </disks>

    </storage_configuration>

    <backups>

        <allowed_disk>backups</allowed_disk>

        <allowed_path>/backups/123/</allowed_path>

    </backups>

    <storage_configuration>

        <disks>

            <default2>

                <type>local</type>

                <path>/backups/345/</path>

            </default2>

        </disks>

    </storage_configuration>

   <backups>

        <allowed_disk>default2</allowed_disk>

        <allowed_path>/backups/345/</allowed_path>

    </backups>

</clickhouse>

CHDBDEV :) select name,path,type,is_read_only,is_write_once,is_remote,is_broken from system.disks;

   ┌─name────┬─path─────────────────────┬─type──┬─is_read_only─┬─is_write_once─┬─is_remote─┬─is_broken─┐

1. │ backups │ /backups/123/            │ Local │            0 │             0 │         0 │         0 │

2. │ default │ /chdata/clickhouse/data/ │ Local │            0 │             0 │         0 │         0 │

   └─────────┴──────────────────────────┴───────┴──────────────┴───────────────┴───────────┴───────────┘

CHDBDEV :) backup database lukestest1 to Disk('default2','lukestest1_2024.zip');

Received exception from server (version 24.4.1):

Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Disk ''default2'' is not 

allowed for backups, see the 'backups.allowed_disk' configuration parameter. (BAD_ARGUMENTS)

CHDBDEV :) backup database lukestest1 to Disk('backups','lukestest1_2024_05.zip');

   ┌─id───────────────────────────────────┬─status─────────┐

1. │ b76f47d4-b6c9-4ff4-bff9-dcced56aa0b5 │ BACKUP_CREATED │

   └──────────────────────────────────────┴────────────────┘

图片素材:“https://ljkc.yushengbang.com/qzzx/XAwV9LND4X.html” 图片素材:“https://czm.oszine.com/toutiao/vlnohxrXnfPl.html” 图片素材:“https://czwj.nuochengzx.com/xingye/cNRyhMtrNj.html” 图片素材:“https://cxgd.yijiandaixiao.com/caijing/7JZvBZehjG.html” 图片素材:“https://jmgc.nuochengzx.com/pochan/fpTGOwdNZ2.html” 图片素材:“https://cxzy.oszine.com/caixun/le8a3HmGA4.html” 图片素材:“https://cxfx.nuochengzx.com/zhaiwu/98YM0xbi3V.html” 图片素材:“https://ljkc.yushengbang.com/zsjf/xbkx1KyMEw.html” 图片素材:“https://hcx.twitdw.com/kuaiwen/1JKNo4lu0s.html” 图片素材:“https://cxzy.oszine.com/caixun/Z7VitDX8k5.html” 图片素材:“https://ljkc.yushengbang.com/zsjf/shT0qTmYWA.html” 图片素材:“https://cxmb.twitdw.com/huankuan/6rBbgw3pXI.html” 图片素材:“https://cxzy.oszine.com/caixun/OGNrpFGSB1.html” 图片素材:“https://czm.oszine.com/toutiao/oYhP9pizTbrd.html” 图片素材:“https://cxmb.twitdw.com/huankuan/zQDxjMgoT2.html” 图片素材:“https://jmgc.nuochengzx.com/daikuan/3JSw7BGnlo.html” 图片素材:“https://czwj.nuochengzx.com/jinrong/guwGgGK1Dd.html” 图片素材:“https://czwj.nuochengzx.com/baoxian/SwUvUO3NmX.html” 图片素材:“https://ljkc.yushengbang.com/gzzs/UT980yw8fC.html” 图片素材:“https://jmgc.nuochengzx.com/xinyong/YZiNUVcMU3.html” 图片素材:“https://hcx.twitdw.com/lihun/3ced2TSsbj.html” 图片素材:“https://jlxj.yingtailawyer.com/zhuanti/cu4DCepElG.html” 图片素材:“https://www.qqkjcj.com/mtwdbhhysmhgmjrfxzyjd.html” 图片素材:“https://czwj.nuochengzx.com/jinrong/u1iAYgrTle.html” 图片素材:“https://cxmb.twitdw.com/shangan/zKx242WJAc.html” 图片素材:“https://cxgd.yijiandaixiao.com/zhaiwu/debnBXXBY3.html” 图片素材:“https://czk.yingtailawyer.com/baike/qlGCbYMLTW.html” 图片素材:“https://jqtc.yijiandaixiao.com/zhaiwu/ymqe48t9FZ.html” 图片素材:“https://hcx.twitdw.com/kuaiwen/FSZkpD0lG6.html” 图片素材:“https://cxmb.twitdw.com/zhaiwu/T8lUMcJp2T.html” 图片素材:“https://jmgc.nuochengzx.com/xinyong/OAXvjFLEBA.html” 图片素材:“https://jmgc.nuochengzx.com/zhaiwu/2So4QNMjTf.html” 图片素材:“https://jzxy.yingtailawyer.com/shenghuo/yN4NgLAbRM.html” 图片素材:“https://cxzy.oszine.com/gezhai/YOjZZdLvHE.html” 图片素材:“https://jlxj.yingtailawyer.com/xinwen/WJ6BecR9Wa.html” 图片素材:“https://jlxj.yingtailawyer.com/zhaiwu/fAu3WY2O6q.html” 图片素材:“https://czm.oszine.com/zhaiwu/XIUdYb87mUB4.html” 图片素材:“https://ljkc.yushengbang.com/zsjf/ycJQFXE4Fg.html” 图片素材:“https://czwj.nuochengzx.com/xingye/GWZFXtajFy.html” 图片素材:“https://ljkc.yushengbang.com/jrsc/GqB40pMoBV.html” 图片素材:“https://cdh.twitdw.com/hunyin/u9GAgIoVk2.html” 图片素材:“https://czwj.nuochengzx.com/xingye/Xzm0ihtcyw.html” 图片素材:“https://czk.yingtailawyer.com/huankuan/LeQSEE3mZu.html” 图片素材:“https://jmgc.nuochengzx.com/zhaiwu/gYwW9bB5RS.html” 图片素材:“https://cxmb.twitdw.com/daikuan/ERsWglpERK.html” 图片素材:“https://jlxj.yingtailawyer.com/xinwen/OwzvwgQAlv.html” 图片素材:“https://hcx.twitdw.com/shangan/YwolnUWHYG.html” 图片素材:“https://jqtc.yijiandaixiao.com/zhaiwu/b56kNAwjgq.html” 图片素材:“https://www.qqkjcj.com/paxdhbszmbbwjrzyjd.html” 图片素材:“https://czwj.nuochengzx.com/baoxian/sPgYbfdoTI.html” 图片素材:“https://cdh.twitdw.com/pingtai/leoF5ZqFQE.html” 图片素材:“https://jmgc.nuochengzx.com/caiwu/ILBrQMHKkE.html” 图片素材:“https://czwj.nuochengzx.com/jinrong/WLFUQyIEfK.html” 图片素材:“https://cxzy.oszine.com/yuqi/8lOfnnNSu6.html” 图片素材:“https://cxfx.nuochengzx.com/licai/gTT7xHxjmq.html” 图片素材:“https://cxgd.yijiandaixiao.com/yuqi/ckWYVAmB05.html” 图片素材:“https://cxgd.yijiandaixiao.com/zhaiwu/MvK4DCw727.html” 图片素材:“https://cdh.twitdw.com/qita/kYqLMgX7hV.html” 图片素材:“https://jzxy.yingtailawyer.com/gezhai/qmo7SnWAYc.html” 图片素材:“https://cxfx.nuochengzx.com/zhaiquan/Wn3M8w8Hm8.html” 图片素材:“https://jmgc.nuochengzx.com/xinyong/4OHNYiY0fA.html” 图片素材:“https://czwj.nuochengzx.com/caijing/hhBpSp5FFH.html” 图片素材:“https://ljkc.yushengbang.com/gzzs/UO2tr15Vys.html” 图片素材:“https://jzxy.yingtailawyer.com/shenghuo/ISXanKeDA7.html” 图片素材:“https://jqtc.yijiandaixiao.com/zhaiwu/gLsQd0Q8IC.html” 图片素材:“https://cxmb.twitdw.com/xieshang/OBagoboVXj.html” 图片素材:“https://czk.yingtailawyer.com/shenka/h7Yvn8Q4UF.html” 图片素材:“https://czwj.nuochengzx.com/jinri/hys7ThaIej.html” 图片素材:“https://cxfx.nuochengzx.com/yuqi/irBAOUoBg6.html” 图片素材:“https://cxmb.twitdw.com/xieshang/8hHv1NpLha.html” 图片素材:“https://jzxy.yingtailawyer.com/gezhai/AAfpL4Uddy.html” 图片素材:“https://czk.yingtailawyer.com/baike/mbqXiiSvE6.html” 图片素材:“https://cdh.twitdw.com/geren/GmuHQwKVNA.html” 图片素材:“https://czwj.nuochengzx.com/xingye/aDspFYtje9.html” 图片素材:“https://jqtc.yijiandaixiao.com/zhaiwu/Oen8SLhAfK.html” 图片素材:“https://czm.oszine.com/redian/n8kEcbQJReJn.html” 图片素材:“https://jmgc.nuochengzx.com/pochan/CrSioKQq5b.html” 图片素材:“https://cxmb.twitdw.com/zhaiwu/QTprpyXNhv.html” 图片素材:“https://hcx.twitdw.com/anli/QxSP7K2V2A.html” 图片素材:“https://cxmb.twitdw.com/shangan/WtBh7kSS67.html” 图片素材:“https://czm.oszine.com/xingye/rhbKvv6Uag5O.html” 图片素材:“https://cdh.twitdw.com/pingtai/KnkTH2ELxQ.html” 图片素材:“https://czwj.nuochengzx.com/xingye/KL0N8I72No.html” 图片素材:“https://hcx.twitdw.com/kuaiwen/9wSH94B35q.html” 图片素材:“https://czk.yingtailawyer.com/baike/JF3AzfPOtL.html” 图片素材:“https://hcx.twitdw.com/zhengxin/toTE71F0Zp.html” 图片素材:“https://www.qqkjcj.com/fqlxsycxhkszyxzhmbwjrzyjd.html” 图片素材:“https://jmgc.nuochengzx.com/pochan/avO8GBRLDL.html” 图片素材:“https://jmgc.nuochengzx.com/caiwu/1tpCvp1kbG.html” 图片素材:“https://cxgd.yijiandaixiao.com/zhaiwu/f9wSEEE3eS.html” 图片素材:“https://cxmb.twitdw.com/shangan/CC8YEOhlAh.html” 图片素材:“https://cxgd.yijiandaixiao.com/touzi/aMkQzacVDA.html” 图片素材:“https://ljkc.yushengbang.com/jrsc/Cvryi9o1xa.html” 图片素材:“https://jxtx.oszine.com/gezhai/2MppfL9ocl.html” 图片素材:“https://czwj.nuochengzx.com/jinri/eVvk74pgHc.html” 图片素材:“https://jzxy.yingtailawyer.com/fuwu/xACkFQUuUa.html” 图片素材:“https://jxtx.oszine.com/zhaiwu/sLuKtsTOzt.html” 图片素材:“https://czwj.nuochengzx.com/shenghuo/RXA7r62AC4.html” 图片素材:“https://hcx.twitdw.com/xinyong/WCexrtONrM.html” 图片素材:“https://jqtc.yijiandaixiao.com/zhaiwu/M67bzrbl7q.html” 图片素材:“https://cxfx.nuochengzx.com/zhaiwu/ME0DhWLyPu.html” 图片素材:“https://jlxj.yingtailawyer.com/zhuanti/lCPusmo4Oq.html” 图片素材:“https://cxgd.yijiandaixiao.com/zhaiwu/IVjF2sRpOr.html” 图片素材:“https://www.qqkjcj.com/yqhblkzmbsdlshhzlmxjzcykbz.html” 图片素材:“https://jzxy.yingtailawyer.com/gezhai/D5e3Yt1AZI.html” 图片素材:“https://czwj.nuochengzx.com/jinri/orVnJxXOQU.html” 图片素材:“https://cxzy.oszine.com/caixun/vB5UwTBMLA.html” 图片素材:“https://www.qqkjcj.com/qxyknzgtmzmhjrjmykbz.html” 图片素材:“https://cxmb.twitdw.com/huankuan/xiFMX7tElb.html” 图片素材:“https://ljkc.yushengbang.com/zsjf/VSKI4Km1mG.html” 图片素材:“https://czwj.nuochengzx.com/jinri/9rL8iJF9Bs.html” 图片素材:“https://cxfx.nuochengzx.com/licai/WybuvxOhB0.html” 图片素材:“https://jmgc.nuochengzx.com/zhaiwu/YU0LSPrAMp.html” 图片素材:“https://cxmb.twitdw.com/xieshang/V2QxhUfys2.html” 图片素材:“https://cxfx.nuochengzx.com/licai/jPvyox80PU.html” 图片素材:“https://cdh.twitdw.com/fangchan/LRIScmeQRF.html” 图片素材:“https://czm.oszine.com/jinrong/tkU4Sz1Ut0IG.html” 图片素材:“https://jzxy.yingtailawyer.com/wenda/oeP6SnSucJ.html” 图片素材:“https://jmgc.nuochengzx.com/xinyong/MqUWIFEaQ4.html” 图片素材:“https://cxfx.nuochengzx.com/yuqi/geRF6bkkqz.html” 图片素材:“https://www.qqkjcj.com/1068fldckxxszdmjrbzsx.html” 图片素材:“https://cxmb.twitdw.com/zhaiwu/vTzqFJLQBt.html” 图片素材:“https://cxgd.yijiandaixiao.com/zhaiwu/Lpf6y2KrS9.html” 图片素材:“https://cxgd.yijiandaixiao.com/touzi/tbR5zIwgjY.html” 图片素材:“https://czm.oszine.com/jinrong/lNnhpkRdix8h.html” 图片素材:“https://cdh.twitdw.com/pingtai/JK1HM60NEx.html” 图片素材:“https://jzxy.yingtailawyer.com/caijing/v3dzmD66u6.html” 图片素材:“https://cxfx.nuochengzx.com/zhaiwu/cIp6UucogR.html” 图片素材:“https://czk.yingtailawyer.com/shenka/GMKyWAvkql.html” 图片素材:“https://cxmb.twitdw.com/shangan/FyYzBBmTET.html” 图片素材:“https://jlxj.yingtailawyer.com/zhuanti/CSksGfuxPi.html” 图片素材:“https://czwj.nuochengzx.com/jinrong/tzByZulSQg.html” 图片素材:“https://czk.yingtailawyer.com/zhaiwu/t7Jpt0CSfG.html” 图片素材:“https://hcx.twitdw.com/lihun/6tzpxAIZpL.html” 图片素材:“https://cxgd.yijiandaixiao.com/fuzhai/IWV7NyIoK9.html” 图片素材:“https://cxfx.nuochengzx.com/yuqi/ruYce25cNI.html” 图片素材:“https://hcx.twitdw.com/anli/Kr6NQzOpFr.html” 图片素材:“https://cxzy.oszine.com/yuqi/ZBIpGzVq2q.html” 图片素材:“https://cxgd.yijiandaixiao.com/yuqi/xxC80npmrJ.html” 图片素材:“https://ljkc.yushengbang.com/jrsc/lXDwRDMCi8.html” 图片素材:“https://cdh.twitdw.com/qiye/NofiWL6EV8.html” 图片素材:“https://jqtc.yijiandaixiao.com/zhaiwu/K9mZFEwGMa.html” 图片素材:“https://hcx.twitdw.com/yuqi/99QolhHusK.html” 图片素材:“https://cxfx.nuochengzx.com/licai/L9ednbnZIT.html” 图片素材:“https://czk.yingtailawyer.com/huankuan/8pfeJBh3Tl.html” 图片素材:“https://cxfx.nuochengzx.com/caijing/IUjk4IBKsS.html” 图片素材:“https://czk.yingtailawyer.com/daikuan/NGyICHQdho.html” 图片素材:“https://czk.yingtailawyer.com/shenka/YH0VvLaaVx.html” 图片素材:“https://cxgd.yijiandaixiao.com/yuqi/A5Vnp8Hp8a.html” 图片素材:“https://czwj.nuochengzx.com/shenghuo/PIBi6BBYb3.html” 图片素材:“https://jqtc.yijiandaixiao.com/zhaiwu/uAoY4D0o7B.html” 图片素材:“https://hcx.twitdw.com/anli/2FEDzEv3TY.html” 图片素材:“https://czwj.nuochengzx.com/xingye/c39x3Akahy.html” 图片素材:“https://jmgc.nuochengzx.com/xinyong/DlvcrFEdQd.html” 图片素材:“https://cxmb.twitdw.com/zhaiwu/SgeVRDOeU3.html” 图片素材:“https://www.qqkjcj.com/jxdxykhkykxqmtop1jd.html” 图片素材:“https://cxmb.twitdw.com/xieshang/UbDucj5NG2.html” 图片素材:“https://hcx.twitdw.com/zhengxin/6PGbG1o3Bu.html” 图片素材:“https://cxmb.twitdw.com/huankuan/yfMVUdAgiG.html” 图片素材:“https://cxfx.nuochengzx.com/zhaiwu/oWAp7aPdcy.html” 图片素材:“https://www.qqkjcj.com/360jtqdschqshsmjrgnzyjd.html” 图片素材:“https://ljkc.yushengbang.com/qzzx/000tQx5TC5.html” 图片素材:“https://jmgc.nuochengzx.com/zhaiwu/fRDD9Znojo.html” 图片素材:“https://www.qqkjcj.com/jtyxyqlgysyqwjjrfxzyjd.html” 图片素材:“https://jxtx.oszine.com/qiye/GUVJAuUpit.html” 图片素材:“https://jzxy.yingtailawyer.com/caijing/tCtgk3Qp0B.html”

  • 18
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值