当前位置: 首页 > news >正文

v2017网站开发手机网站设计图尺寸

v2017网站开发,手机网站设计图尺寸,软件开发管理平台,少儿编程机构OceanBase社区版单节点安装搭建#xff08;Docker#xff09; 文章目录 OceanBase社区版单节点安装搭建#xff08;Docker#xff09;一、环境检查及Docker配置1.1 安装docker1.2 配置docker镜像源 二、OB镜像下载三、obd部署单节点数据库四、创建业务租户、数据库、表4.1 …OceanBase社区版单节点安装搭建Docker 文章目录 OceanBase社区版单节点安装搭建Docker一、环境检查及Docker配置1.1 安装docker1.2 配置docker镜像源 二、OB镜像下载三、obd部署单节点数据库四、创建业务租户、数据库、表4.1 创建租户4.2 创建数据库、表 五、参考链接 一、环境检查及Docker配置 本文采用redhat7.9作为测试环境虚拟机安装操作系统的步骤不再列出。 官方的docker镜像要求主机资源至少为2C10G。本机主机资源配置4c16G磁盘100G [rootrac04 ~]# lscpu CPU(s): 4 [rootrac04 ~]# free -mtotal used free shared buff/cache available Mem: 15866 981 14534 12 350 14606 Swap: 8063 0 8063 [rootrac04 ~]# df -h 文件系统 容量 已用 可用 已用% 挂载点 devtmpfs 7.8G 0 7.8G 0% /dev tmpfs 7.8G 0 7.8G 0% /dev/shm tmpfs 7.8G 13M 7.8G 1% /run tmpfs 7.8G 0 7.8G 0% /sys/fs/cgroup /dev/mapper/rhel-root 92G 4.2G 87G 5% / /dev/sda1 1014M 183M 832M 19% /boot tmpfs 1.6G 8.0K 1.6G 1% /run/user/42 tmpfs 1.6G 0 1.6G 0% /run/user/01.1 安装docker #内核版本不低于3.10。 uname -a#设置docker源仓库 yum install -y yum-utils device-mapper-persistent-data lvm2 yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo#安装docker yum install -y docker-ce docker-ce-cli containerd.io#启动docker服务 systemctl start docker #激活docker服务开机自启动 systemctl enable docker.service#校验 [rootrac04 ~]# docker version Client: Docker Engine - CommunityVersion: 25.0.3API version: 1.44Go version: go1.21.6Git commit: 4debf41Built: Tue Feb 6 21:17:10 2024OS/Arch: linux/amd64Context: defaultServer: Docker Engine - CommunityEngine:Version: 25.0.3API version: 1.44 (minimum version 1.24)Go version: go1.21.6Git commit: f417435Built: Tue Feb 6 21:16:08 2024OS/Arch: linux/amd64Experimental: falsecontainerd:Version: 1.6.28GitCommit: ae07eda36dd25f8a1b98dfbf587313b99c0190bbrunc:Version: 1.1.12GitCommit: v1.1.12-0-g51d5e94docker-init:Version: 0.19.0GitCommit: de40ad01.2 配置docker镜像源 国内从 DockerHub 拉取镜像有时会遇到困难此时可以配置镜像加速器。Docker 官方和国内很多云服务商都提供了国内加速器服务参考Docker Hub 镜像源 - 掘金 (juejin.cn) vi /etc/docker/daemon.json{registry-mirrors: [https://dockerproxy.com,https://hub-mirror.c.163.com,https://mirror.baidubce.com,https://ccr.ccs.tencentyun.com] }#重启docker服务 systemctl restart docker.service #校验镜像源 [rootrac04 ~]# docker info |grep Mirrors -A 5Registry Mirrors:https://dockerproxy.com/https://hub-mirror.c.163.com/https://mirror.baidubce.com/https://ccr.ccs.tencentyun.com/Live Restore Enabled: false二、OB镜像下载 下载地址https://hub.docker.com/r/oceanbase/oceanbase-ce/tags该地址可能需要使用代理访问。这里直接贴出来docker pull oceanbase/oceanbase-ce:3.1.3 找到3.1.3版本复制拉取命令 [rootrac04 ~]# docker pull oceanbase/oceanbase-ce:3.1.3 3.1.3: Pulling from oceanbase/oceanbase-ce 13add961a70d: Pull complete 1cf396138e36: Pull complete de207e7387d3: Pull complete Digest: sha256:22c2d82e5e7223ee510b1c53400edd05e622d9a09bc33987bd85ce560bb0781a Status: Downloaded newer image for oceanbase/oceanbase-ce:3.1.3 docker.io/oceanbase/oceanbase-ce:3.1.3[rootrac04 ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE oceanbase/oceanbase-ce 3.1.3 66c986c2d478 23 months ago 783MB三、obd部署单节点数据库 运行docker容器 [rootrac04 ~]# docker run -d -m 12G --cpus 4 --name oceanbase-ce oceanbase/oceanbase-ce:3.1.3 61d0ccd3ea95e36938527701c07d85f89fe950921004c4b133302dd32051dc5c[rootrac04 ~]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 61d0ccd3ea95 oceanbase/oceanbase-ce:3.1.3 /bin/sh -c _boot 8 seconds ago Up 8 seconds oceanbase-ce 检查docker日志 [rootrac04 ~]# docker logs oceanbase-ce generate boot.yaml ... create boot dirs and deploy ob cluster ... Package oceanbase-ce-3.1.3 is available. install oceanbase-ce-3.1.3 for local ok Cluster param config check ok Open ssh connection ok Generate observer configuration ok oceanbase-ce-3.1.3 already installed. ------------------------------------------------------------------------------------------- | Packages | ---------------------------------------------------------------------------------------- | Repository | Version | Release | Md5 | ---------------------------------------------------------------------------------------- | oceanbase-ce | 3.1.3 | 10000292022032916.el7 | eab08e5d473bd4884fdf2ac4d7dff6a329b68abe | ---------------------------------------------------------------------------------------- Repository integrity check ok Parameter check ok Open ssh connection ok Remote oceanbase-ce-3.1.3-eab08e5d473bd4884fdf2ac4d7dff6a329b68abe repository install ok Remote oceanbase-ce-3.1.3-eab08e5d473bd4884fdf2ac4d7dff6a329b68abe repository lib check !! [WARN] 127.0.0.1 oceanbase-ce-3.1.3-eab08e5d473bd4884fdf2ac4d7dff6a329b68abe require: libmariadb.so.3Try to get lib-repository Package oceanbase-ce-libs-3.1.3 is available. install oceanbase-ce-libs-3.1.3 for local ok Use oceanbase-ce-libs-3.1.3-c68c3aca8a1329a360fe5d65e1c3d4fa0f93f2d5 for oceanbase-ce-3.1.3-eab08e5d473bd4884fdf2ac4d7dff6a329b68abe Remote oceanbase-ce-libs-3.1.3-c68c3aca8a1329a360fe5d65e1c3d4fa0f93f2d5 repository install ok Remote oceanbase-ce-3.1.3-eab08e5d473bd4884fdf2ac4d7dff6a329b68abe repository lib check ok Cluster status check ok Initializes observer work home ok obcluster deployed Get local repositories and plugins ok Open ssh connection ok Load cluster param plugin ok Check before start observer ok [WARN] (127.0.0.1) clog and data use the same disk (/)Start observer ok observer program health check ok Connect to observer ok Initialize cluster Cluster bootstrap ok Wait for observer init ok --------------------------------------------- | observer | ----------------------------------------- | ip | version | port | zone | status | ----------------------------------------- | 127.0.0.1 | 3.1.3 | 2881 | zone1 | active | -----------------------------------------obcluster running Get local repositories and plugins ok Open ssh connection ok Connect to observer ok Create tenant test ok start ob cluster ... Get local repositories and plugins ok Open ssh connection ok Load cluster param plugin ok Cluster status check ok Deploy obcluster is running boot success!#切换终端到docker容器 [rootrac04 ~]# docker exec -it oceanbase-ce bash #检查集群状态 [root61d0ccd3ea95 /]# obd cluster list ------------------------------------------------------------ | Cluster List | ---------------------------------------------------------- | Name | Configuration Path | Status (Cached) | ---------------------------------------------------------- | obcluster | /root/.obd/cluster/obcluster | running | docker镜像已经部署好了一个集群——obcluster这里不再部署。附上obd操作集群的常用命令 #启动集群 obd cluster start 集群名 #停止集群 obd cluster stop 集群名 #重启集群 obd cluster restart 集群名 #查看集群状况 obd cluster list obd cluster display 集群名 #查看集群配置,也可以根据模板重新建一个配置文件重新部署新集群 obd cluster edit-config 集群名四、创建业务租户、数据库、表 连接数据库默认root密码为空 obclient -h127.0.0.1 -P2881 -urootsys -p -c -A -Doceanbase-- 修改root密码 alter user root identified by root;4.1 创建租户 检查资源状况 select zone, concat(svr_ip, :, svr_port) observer, cpu_capacity, cpu_total, cpu_assigned, cpu_assigned_percent, mem_capacity/1024/1024, mem_total/1024/1024, mem_assigned/1024/1024, mem_assigned_percent, disk_total/1024/1024, disk_assigned/1024/1024, disk_assigned_percent, unit_Num, round(load, 2) load, round(cpu_weight, 2) cpu_weight, round(memory_weight, 2) mem_weight, leader_count from __all_virtual_server_stat order by zone, svr_ip\G*************************** 1. row ***************************zone: zone1observer: 127.0.0.1:2882cpu_capacity: 14cpu_total: 14cpu_assigned: 11.5cpu_assigned_percent: 82mem_capacity/1024/1024: 4096.00000000mem_total/1024/1024: 4096.00000000mem_assigned/1024/1024: 3891.20000076mem_assigned_percent: 95disk_total/1024/1024: 27648.00000000 disk_assigned/1024/1024: 55296.00000000disk_assigned_percent: 200unit_Num: 2load: 0.00cpu_weight: 0.00mem_weight: 0.00leader_count: 1318 1 row in set, 3 warnings (0.001 sec)MySQL [oceanbase] show parameters like system_memory\G *************************** 1. row ***************************zone: zone1svr_type: observersvr_ip: 127.0.0.1svr_port: 2882name: system_memorydata_type: NULLvalue: 4Ginfo: the memory reserved for internal use which cannot be allocated to any outer-tenant, and should be determined to guarantee every server functions normally. Range: [0M,)section: OBSERVERscope: CLUSTERsource: DEFAULT edit_level: DYNAMIC_EFFECTIVE 1 row in set (0.002 sec)MySQL [oceanbase] select * from __all_unit_config; ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | gmt_create | gmt_modified | unit_config_id | name | max_cpu | min_cpu | max_memory | min_memory | max_iops | min_iops | max_disk_size | max_session_num | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | 2024-03-07 14:35:29.704258 | 2024-03-07 14:35:29.704258 | 1 | sys_unit_config | 5 | 2.5 | 1288490188 | 1073741824 | 10000 | 5000 | 28991029248 | 9223372036854775807 | | 2024-03-07 14:35:40.537529 | 2024-03-07 14:35:40.537529 | 1001 | test_unit | 9 | 9 | 3006477108 | 3006477108 | 128 | 128 | 28991029248 | 64 | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2 rows in set (0.001 sec)MySQL [oceanbase] select * from gv$unit; ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | unit_id | unit_config_id | unit_config_name | resource_pool_id | resource_pool_name | zone | tenant_id | tenant_name | svr_ip | svr_port | migrate_from_svr_ip | migrate_from_svr_port | max_cpu | min_cpu | max_memory | min_memory | max_iops | min_iops | max_disk_size | max_session_num | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | 1 | 1 | sys_unit_config | 1 | sys_pool | zone1 | 1 | sys | 127.0.0.1 | 2882 | | 0 | 5 | 2.5 | 1288490188 | 1073741824 | 10000 | 5000 | 28991029248 | 9223372036854775807 | | 1001 | 1001 | test_unit | 1001 | test_pool | zone1 | 1001 | test | 127.0.0.1 | 2882 | | 0 | 9 | 9 | 3006477108 | 3006477108 | 128 | 128 | 28991029248 | 64 | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2 rows in set (0.001 sec)-- 剩余的资源已经不足修改system_memory参数为2G,调小test租户的资源占用 alter system set system_memory2G; alter resource unit test_unit min_cpu1,max_cpu2,min_memory1G,max_memory1G;-- 再次检查资源 *************************** 1. row ***************************zone: zone1observer: 127.0.0.1:2882cpu_capacity: 14cpu_total: 14cpu_assigned: 3.5cpu_assigned_percent: 25mem_capacity/1024/1024: 6144.00000000mem_total/1024/1024: 6144.00000000mem_assigned/1024/1024: 2048.00000000mem_assigned_percent: 33disk_total/1024/1024: 27648.00000000 disk_assigned/1024/1024: 55296.00000000disk_assigned_percent: 200unit_Num: 2load: 0.00cpu_weight: 0.00mem_weight: 0.00leader_count: 1318创建资源单元 CREATE resource unit u1 max_cpu1, min_cpu1, max_memory1G, min_memory1G, max_iops10000, min_iops1000, max_session_num1000000, max_disk_size5G;创建资源池 create resource pool pool1 unitu1, unit_num1, zone_list(zone1) ;创建mysql类型业务租户允许所有连接关闭回收站 create tenant yw charsetutf8mb4,zone_list(zone1),resource_pool_list(pool1),comment业务租户1 set ob_compatibility_modemysql,ob_tcp_invited_nodes%,recyclebin off;检查 MySQL [oceanbase] select * from __all_tenant where tenant_nameyw\G *************************** 1. row ***************************gmt_create: 2024-03-07 15:50:54.994276gmt_modified: 2024-03-07 15:50:54.994276tenant_id: 1002tenant_name: ywreplica_num: -1zone_list: zone1primary_zone: RANDOMlocked: 0collation_type: 0info: 业务租户1read_only: 0rewrite_merge_version: 0locality: FULL{1}zone1logonly_replica_num: 0previous_locality: storage_format_version: 0 storage_format_work_version: 0default_tablegroup_id: -1compatibility_mode: 0drop_tenant_time: -1status: TENANT_STATUS_NORMALin_recyclebin: 0 1 row in set (0.002 sec) 4.2 创建数据库、表 连接业务租户yw obclient -h127.0.0.1 -P2881 -urootyw -p -c -A -Doceanbasealter user root identified by root;-- 创建数据库 MySQL [oceanbase] create database ywdb charsetutf8mb4 read write; Query OK, 1 row affected (0.013 sec)MySQL [oceanbase] use ywdb Database changed MySQL [ywdb] create table t1(name char(20)); Query OK, 0 rows affected (0.072 sec) -- 创建分区表 MySQL [ywdb] create table t3(id int(10),t3name char(20)) partition by hash(id) partitions 5; Query OK, 0 rows affected (0.058 sec) -- 创建表组 MySQL [ywdb] create tablegroup tbgroup1 partition by hash partitions 5; Query OK, 0 rows affected (0.019 sec) -- 创建分区表并加入表组 MySQL [ywdb] create table t4(t4id int(10)) tablegrouptbgroup1 partition by hash(t4id) partitions 5; Query OK, 0 rows affected (0.033 sec) -- 将表加入表组 MySQL [ywdb] alter table t3 tablegrouptbgroup1; Query OK, 0 rows affected (0.021 sec) -- 查看表的创建语句 MySQL [ywdb] SHOW CREATE TABLE t3; -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | Table | Create Table | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | t3 | CREATE TABLE t3 (id int(10) DEFAULT NULL,t3name char(20) DEFAULT NULL ) DEFAULT CHARSET utf8mb4 ROW_FORMAT COMPACT COMPRESSION zstd_1.3.8 REPLICA_NUM 1 BLOCK_SIZE 16384 USE_BLOOM_FILTER FALSE TABLET_SIZE 134217728 PCTFREE 0 TABLEGROUP tbgroup1partition by hash(id) (partition p0, partition p1, partition p2, partition p3, partition p4) | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 1 row in set (0.027 sec)五、参考链接 Linux安装Docker完整教程 - 哈哈哈嗝 - 博客园 (cnblogs.com) Docker Hub 镜像源 - 掘金 (juejin.cn) 快速体验 OceanBase-OceanBase 数据库-OceanBase文档中心-分布式数据库使用文档
文章转载自:
http://www.morning.nrlsg.cn.gov.cn.nrlsg.cn
http://www.morning.kqbjy.cn.gov.cn.kqbjy.cn
http://www.morning.cokcb.cn.gov.cn.cokcb.cn
http://www.morning.lmqfq.cn.gov.cn.lmqfq.cn
http://www.morning.lxhrq.cn.gov.cn.lxhrq.cn
http://www.morning.txjrc.cn.gov.cn.txjrc.cn
http://www.morning.xjpnq.cn.gov.cn.xjpnq.cn
http://www.morning.pmsl.cn.gov.cn.pmsl.cn
http://www.morning.snjpj.cn.gov.cn.snjpj.cn
http://www.morning.bhxzx.cn.gov.cn.bhxzx.cn
http://www.morning.xylxm.cn.gov.cn.xylxm.cn
http://www.morning.qytyt.cn.gov.cn.qytyt.cn
http://www.morning.bkfdf.cn.gov.cn.bkfdf.cn
http://www.morning.xdwcg.cn.gov.cn.xdwcg.cn
http://www.morning.bccls.cn.gov.cn.bccls.cn
http://www.morning.nnpfz.cn.gov.cn.nnpfz.cn
http://www.morning.qlkjh.cn.gov.cn.qlkjh.cn
http://www.morning.wrfk.cn.gov.cn.wrfk.cn
http://www.morning.fpxsd.cn.gov.cn.fpxsd.cn
http://www.morning.bnqcm.cn.gov.cn.bnqcm.cn
http://www.morning.nbdtdjk.cn.gov.cn.nbdtdjk.cn
http://www.morning.djpps.cn.gov.cn.djpps.cn
http://www.morning.qmwzz.cn.gov.cn.qmwzz.cn
http://www.morning.nnhrp.cn.gov.cn.nnhrp.cn
http://www.morning.yswxq.cn.gov.cn.yswxq.cn
http://www.morning.lhygbh.com.gov.cn.lhygbh.com
http://www.morning.jltmb.cn.gov.cn.jltmb.cn
http://www.morning.wqnc.cn.gov.cn.wqnc.cn
http://www.morning.rqmqr.cn.gov.cn.rqmqr.cn
http://www.morning.wrlqr.cn.gov.cn.wrlqr.cn
http://www.morning.hmdn.cn.gov.cn.hmdn.cn
http://www.morning.ypktc.cn.gov.cn.ypktc.cn
http://www.morning.yrdkl.cn.gov.cn.yrdkl.cn
http://www.morning.plhyc.cn.gov.cn.plhyc.cn
http://www.morning.snmth.cn.gov.cn.snmth.cn
http://www.morning.rpstb.cn.gov.cn.rpstb.cn
http://www.morning.nqpxs.cn.gov.cn.nqpxs.cn
http://www.morning.qjbxt.cn.gov.cn.qjbxt.cn
http://www.morning.pttrs.cn.gov.cn.pttrs.cn
http://www.morning.ykswq.cn.gov.cn.ykswq.cn
http://www.morning.tkrwm.cn.gov.cn.tkrwm.cn
http://www.morning.mytmn.cn.gov.cn.mytmn.cn
http://www.morning.nfqyk.cn.gov.cn.nfqyk.cn
http://www.morning.xdxpq.cn.gov.cn.xdxpq.cn
http://www.morning.yktwr.cn.gov.cn.yktwr.cn
http://www.morning.stbhn.cn.gov.cn.stbhn.cn
http://www.morning.mgmyt.cn.gov.cn.mgmyt.cn
http://www.morning.dsxgc.cn.gov.cn.dsxgc.cn
http://www.morning.trlhc.cn.gov.cn.trlhc.cn
http://www.morning.wxqmc.cn.gov.cn.wxqmc.cn
http://www.morning.sgmis.com.gov.cn.sgmis.com
http://www.morning.yqgbw.cn.gov.cn.yqgbw.cn
http://www.morning.kxrhj.cn.gov.cn.kxrhj.cn
http://www.morning.hlwzd.cn.gov.cn.hlwzd.cn
http://www.morning.nzhzt.cn.gov.cn.nzhzt.cn
http://www.morning.lrwsk.cn.gov.cn.lrwsk.cn
http://www.morning.bksbx.cn.gov.cn.bksbx.cn
http://www.morning.gkgb.cn.gov.cn.gkgb.cn
http://www.morning.ckdgj.cn.gov.cn.ckdgj.cn
http://www.morning.ysskn.cn.gov.cn.ysskn.cn
http://www.morning.sqmlw.cn.gov.cn.sqmlw.cn
http://www.morning.rgxcd.cn.gov.cn.rgxcd.cn
http://www.morning.paoers.com.gov.cn.paoers.com
http://www.morning.kpgft.cn.gov.cn.kpgft.cn
http://www.morning.mpnff.cn.gov.cn.mpnff.cn
http://www.morning.kmqwp.cn.gov.cn.kmqwp.cn
http://www.morning.bpmnl.cn.gov.cn.bpmnl.cn
http://www.morning.vnuwdy.cn.gov.cn.vnuwdy.cn
http://www.morning.xysdy.cn.gov.cn.xysdy.cn
http://www.morning.phjyb.cn.gov.cn.phjyb.cn
http://www.morning.ftznb.cn.gov.cn.ftznb.cn
http://www.morning.grqlc.cn.gov.cn.grqlc.cn
http://www.morning.mjqms.cn.gov.cn.mjqms.cn
http://www.morning.pyncm.cn.gov.cn.pyncm.cn
http://www.morning.wnjrf.cn.gov.cn.wnjrf.cn
http://www.morning.kwqwp.cn.gov.cn.kwqwp.cn
http://www.morning.dgsx.cn.gov.cn.dgsx.cn
http://www.morning.xfxqj.cn.gov.cn.xfxqj.cn
http://www.morning.c-ae.cn.gov.cn.c-ae.cn
http://www.morning.mmxt.cn.gov.cn.mmxt.cn
http://www.tj-hxxt.cn/news/264333.html

相关文章:

  • 做网站赚金币网络备案信息查询
  • 曹县网站开发网站流量一直做不起来
  • 手机浏览器网站开发嘉峪关市建设局建管科资质网站
  • 临沂科技网站建设六安网站建设招商
  • 北京网站设计公司youx成都柚米科技15淘宝上找网站建设好吗
  • 西安专业网站开发公司网站建设杭州
  • 产品如何做网站推广wordpress上传图片x
  • 九台区建设银行网站济南WordPress培训
  • 企业服务类型有哪些塘沽网站建设优化
  • 如何自己建设淘宝网站设计公司怎么找
  • 网站建设汇卓涿州做网站公司
  • 莆田网站建设设计上海网站开发公
  • 网站建设技术是什么宁夏住房和城乡建设部网站
  • 重庆奉节网站建设公司哪里有哪个公司的软件系统开发
  • 网站怎么申请备案常用软件开发平台
  • 建网站的流程和费用加油卡系统搭建
  • 有哪些网站是用php做的东莞市专注网站建设平台
  • 如何给网站增加图标给小说网站做编辑
  • 网文网站开发方案装饰公司网站模板下载
  • 个人域名备案做企业网站泰安做网站哪里好
  • 网站建设公司哪个好呀金融网站建设个人网站备案名称大全
  • 灵犀科技 高端网站建设平台网站建设的公司
  • 没有营业执照怎么样做百度企业网站建筑工程网课代字幕
  • 网站制作1000元关键词排名查询工具
  • 网站建设氵金手指专业windows优化大师免费
  • 婚礼设计方案网站襄阳做淘宝网站推广
  • 烟台网站建设联系企汇互联专业注册代理记账
  • 能上国外网站的dns西安市建设工程交易中心网站
  • 校园内部网站平台建设方案建设网站公司哪里好相关的热搜问题
  • 服务器安装网站高端网站开发的公司