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

怎么为自己公司做网站东营聊城网站建设

怎么为自己公司做网站,东营聊城网站建设,系统客户管理软件,漳浦网页定制Linux中安装nacos 一、前言二、准备1、下载2、上传到服务器3、解压 三、配置1、备份配置文件2、导入sql3、修改前4、修改后 四、使用1、启动2、关闭 一、前言 最近国外的docker似乎是出什么问题#xff0c;试过很多手段都拉不下 nacos 镜像#xff0c;就打算在服务器装一下 … Linux中安装nacos 一、前言二、准备1、下载2、上传到服务器3、解压 三、配置1、备份配置文件2、导入sql3、修改前4、修改后 四、使用1、启动2、关闭 一、前言 最近国外的docker似乎是出什么问题试过很多手段都拉不下 nacos 镜像就打算在服务器装一下 nacos 。 二、准备 1、下载 nacos的下载地址如下 https://github.com/alibaba/nacos/tags 本地的 nacos 版本为 2.2.1 为了与本地保持一致这里选择 2.2.1 版本。 2、上传到服务器 这里上传到 /usr/local/nacos 目录 3、解压 解压命令如下 tar -zxvf nacos-server-2.2.1.tar.gz解压后的目录为 nacos 这里将它改为 nacos-2.2.1 三、配置 1、备份配置文件 先进入 nacos 的配置目录一般在根目录下的 conf 目录 然后备份一下配置文件命令如下 cp application.properties application_bk.properties2、导入sql 因为待会要用 mysql 存储配置这里导入 mysql 的相关sql 创建一个数据库可以自定义这里创建名为 nacos 的数据库命令如下 CREATE DATABASE nacos然后将 mysql-schema.sql 导入到 nacos 数据库中 3、修改前 修改配置这是原来的配置 # # Copyright 1999-2021 Alibaba Group Holding Ltd. # # Licensed under the Apache License, Version 2.0 (the License); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an AS IS BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ##*************** Spring Boot Related Configurations ***************# ### Default web context path: server.servlet.contextPath/nacos ### Include message field server.error.include-messageALWAYS ### Default web server port: server.port8848#*************** Network Related Configurations ***************# ### If prefer hostname over ip for Nacos server addresses in cluster.conf: # nacos.inetutils.prefer-hostname-over-ipfalse### Specify local servers IP: # nacos.inetutils.ip-address#*************** Config Module Related Configurations ***************# ### If use MySQL as datasource: ### Deprecated configuration property, it is recommended to use spring.sql.init.platform replaced. # spring.datasource.platformmysql # spring.sql.init.platformmysql### Count of DB: # db.num1### Connect URL of DB: # db.url.0jdbc:mysql://127.0.0.1:3306/nacos?characterEncodingutf8connectTimeout1000socketTimeout3000autoReconnecttrueuseUnicodetrueuseSSLfalseserverTimezoneUTC # db.user.0nacos # db.password.0nacos### Connection pool configuration: hikariCP db.pool.config.connectionTimeout30000 db.pool.config.validationTimeout10000 db.pool.config.maximumPoolSize20 db.pool.config.minimumIdle2#*************** Naming Module Related Configurations ***************#### If enable data warmup. If set to false, the server would accept request without local data preparation: # nacos.naming.data.warmuptrue### If enable the instance auto expiration, kind like of health check of instance: # nacos.naming.expireInstancetrue### Add in 2.0.0 ### The interval to clean empty service, unit: milliseconds. # nacos.naming.clean.empty-service.interval60000### The expired time to clean empty service, unit: milliseconds. # nacos.naming.clean.empty-service.expired-time60000### The interval to clean expired metadata, unit: milliseconds. # nacos.naming.clean.expired-metadata.interval5000### The expired time to clean metadata, unit: milliseconds. # nacos.naming.clean.expired-metadata.expired-time60000### The delay time before push task to execute from service changed, unit: milliseconds. # nacos.naming.push.pushTaskDelay500### The timeout for push task execute, unit: milliseconds. # nacos.naming.push.pushTaskTimeout5000### The delay time for retrying failed push task, unit: milliseconds. # nacos.naming.push.pushTaskRetryDelay1000### Since 2.0.3 ### The expired time for inactive client, unit: milliseconds. # nacos.naming.client.expired.time180000#*************** CMDB Module Related Configurations ***************# ### The interval to dump external CMDB in seconds: # nacos.cmdb.dumpTaskInterval3600### The interval of polling data change event in seconds: # nacos.cmdb.eventTaskInterval10### The interval of loading labels in seconds: # nacos.cmdb.labelTaskInterval300### If turn on data loading task: # nacos.cmdb.loadDataAtStartfalse#*************** Metrics Related Configurations ***************# ### Metrics for prometheus #management.endpoints.web.exposure.include*### Metrics for elastic search management.metrics.export.elastic.enabledfalse #management.metrics.export.elastic.hosthttp://localhost:9200### Metrics for influx management.metrics.export.influx.enabledfalse #management.metrics.export.influx.dbspringboot #management.metrics.export.influx.urihttp://localhost:8086 #management.metrics.export.influx.auto-create-dbtrue #management.metrics.export.influx.consistencyone #management.metrics.export.influx.compressedtrue#*************** Access Log Related Configurations ***************# ### If turn on the access log: server.tomcat.accesslog.enabledtrue### The access log pattern: server.tomcat.accesslog.pattern%h %l %u %t %r %s %b %D %{User-Agent}i %{Request-Source}i### The directory of access log: server.tomcat.basedirfile:.#*************** Access Control Related Configurations ***************# ### If enable spring security, this option is deprecated in 1.2.0: #spring.security.enabledfalse### The ignore urls of auth nacos.security.ignore.urls/,/error,/**/*.css,/**/*.js,/**/*.html,/**/*.map,/**/*.svg,/**/*.png,/**/*.ico,/console-ui/public/**,/v1/auth/**,/v1/console/health/**,/actuator/**,/v1/console/server/**### The auth system to use, currently only nacos and ldap is supported: nacos.core.auth.system.typenacos### If turn on auth system: nacos.core.auth.enabledfalse### Turn on/off caching of auth information. By turning on this switch, the update of auth information would have a 15 seconds delay. nacos.core.auth.caching.enabledtrue### Since 1.4.1, Turn on/off white auth for user-agent: nacos-server, only for upgrade from old version. nacos.core.auth.enable.userAgentAuthWhitefalse### Since 1.4.1, worked when nacos.core.auth.enabledtrue and nacos.core.auth.enable.userAgentAuthWhitefalse. ### The two properties is the white list for auth and used by identity the request from other server. nacos.core.auth.server.identity.key nacos.core.auth.server.identity.value### worked when nacos.core.auth.system.typenacos ### The token expiration in seconds: nacos.core.auth.plugin.nacos.token.cache.enablefalse nacos.core.auth.plugin.nacos.token.expire.seconds18000 ### The default token (Base64 String): nacos.core.auth.plugin.nacos.token.secret.key### worked when nacos.core.auth.system.typeldap{0} is Placeholder,replace login username #nacos.core.auth.ldap.urlldap://localhost:389 #nacos.core.auth.ldap.basedcdcexample,dcorg #nacos.core.auth.ldap.userDncnadmin,${nacos.core.auth.ldap.basedc} #nacos.core.auth.ldap.passwordadmin #nacos.core.auth.ldap.userdncn{0},dcexample,dcorg #nacos.core.auth.ldap.filter.prefixuid #nacos.core.auth.ldap.case.sensitivetrue#*************** Istio Related Configurations ***************# ### If turn on the MCP server: nacos.istio.mcp.server.enabledfalse#*************** Core Related Configurations ***************#### set the WorkerID manually # nacos.core.snowflake.worker-id### Member-MetaData # nacos.core.member.meta.site # nacos.core.member.meta.adweight # nacos.core.member.meta.weight### MemberLookup ### Addressing pattern category, If set, the priority is highest # nacos.core.member.lookup.type[file,address-server] ## Set the cluster list with a configuration file or command-line argument # nacos.member.list192.168.16.101:8847?raft_port8807,192.168.16.101?raft_port8808,192.168.16.101:8849?raft_port8809 ## for AddressServerMemberLookup # Maximum number of retries to query the address server upon initialization # nacos.core.address-server.retry5 ## Server domain name address of [address-server] mode # address.server.domainjmenv.tbsite.net ## Server port of [address-server] mode # address.server.port8080 ## Request address of [address-server] mode # address.server.url/nacos/serverlist#*************** JRaft Related Configurations ***************#### Sets the Raft cluster election timeout, default value is 5 second # nacos.core.protocol.raft.data.election_timeout_ms5000 ### Sets the amount of time the Raft snapshot will execute periodically, default is 30 minute # nacos.core.protocol.raft.data.snapshot_interval_secs30 ### raft internal worker threads # nacos.core.protocol.raft.data.core_thread_num8 ### Number of threads required for raft business request processing # nacos.core.protocol.raft.data.cli_service_thread_num4 ### raft linear read strategy. Safe linear reads are used by default, that is, the Leader tenure is confirmed by heartbeat # nacos.core.protocol.raft.data.read_index_typeReadOnlySafe ### rpc request timeout, default 5 seconds # nacos.core.protocol.raft.data.rpc_request_timeout_ms5000#*************** Distro Related Configurations ***************#### Distro data sync delay time, when sync task delayed, task will be merged for same data key. Default 1 second. # nacos.core.protocol.distro.data.sync.delayMs1000### Distro data sync timeout for one sync data, default 3 seconds. # nacos.core.protocol.distro.data.sync.timeoutMs3000### Distro data sync retry delay time when sync data failed or timeout, same behavior with delayMs, default 3 seconds. # nacos.core.protocol.distro.data.sync.retryDelayMs3000### Distro data verify interval time, verify synced data whether expired for a interval. Default 5 seconds. # nacos.core.protocol.distro.data.verify.intervalMs5000### Distro data verify timeout for one verify, default 3 seconds. # nacos.core.protocol.distro.data.verify.timeoutMs3000### Distro data load retry delay when load snapshot data failed, default 30 seconds. # nacos.core.protocol.distro.data.load.retryDelayMs30000### enable to support prometheus service discovery #nacos.prometheus.metrics.enabledtrue### Since 2.3 #*************** Grpc Configurations ***************### sdk grpc(between nacos server and client) configuration ## Sets the maximum message size allowed to be received on the server. #nacos.remote.server.grpc.sdk.max-inbound-message-size10485760## Sets the time(milliseconds) without read activity before sending a keepalive ping. The typical default is two hours. #nacos.remote.server.grpc.sdk.keep-alive-time7200000## Sets a time(milliseconds) waiting for read activity after sending a keepalive ping. Defaults to 20 seconds. #nacos.remote.server.grpc.sdk.keep-alive-timeout20000## Sets a time(milliseconds) that specify the most aggressive keep-alive time clients are permitted to configure. The typical default is 5 minutes #nacos.remote.server.grpc.sdk.permit-keep-alive-time300000## cluster grpc(inside the nacos server) configuration #nacos.remote.server.grpc.cluster.max-inbound-message-size10485760## Sets the time(milliseconds) without read activity before sending a keepalive ping. The typical default is two hours. #nacos.remote.server.grpc.cluster.keep-alive-time7200000## Sets a time(milliseconds) waiting for read activity after sending a keepalive ping. Defaults to 20 seconds. #nacos.remote.server.grpc.cluster.keep-alive-timeout20000## Sets a time(milliseconds) that specify the most aggressive keep-alive time clients are permitted to configure. The typical default is 5 minutes #nacos.remote.server.grpc.cluster.permit-keep-alive-time300000 4、修改后 这是修改后的配置里面有很多解决问题的办法初次安装不建议跳过 # # Copyright 1999-2021 Alibaba Group Holding Ltd. # # Licensed under the Apache License, Version 2.0 (the License); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an AS IS BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ##*************** Spring Boot Related Configurations ***************# ### Default web context path: server.servlet.contextPath/nacos ### Include message field server.error.include-messageALWAYS ### Default web server port: server.port8848#*************** Network Related Configurations ***************# ### If prefer hostname over ip for Nacos server addresses in cluster.conf: # nacos.inetutils.prefer-hostname-over-ipfalse### Specify local servers IP: # nacos.inetutils.ip-address#*************** Config Module Related Configurations ***************# ### If use MySQL as datasource: ### Deprecated configuration property, it is recommended to use spring.sql.init.platform replaced. spring.datasource.platformmysql spring.sql.init.platformmysql### Count of DB: db.num1### Connect URL of DB: db.url.0jdbc:mysql://127.0.0.1:3306/nacos?useUnicodetruecharacterEncodingutf8zeroDateTimeBehaviorconvertToNulluseSSLtrueserverTimezoneGMT%2B8 db.user.0root db.password.0123456### Connection pool configuration: hikariCP db.pool.config.connectionTimeout30000 db.pool.config.validationTimeout10000 db.pool.config.maximumPoolSize20 db.pool.config.minimumIdle2#*************** Naming Module Related Configurations ***************#### If enable data warmup. If set to false, the server would accept request without local data preparation: # nacos.naming.data.warmuptrue### If enable the instance auto expiration, kind like of health check of instance: # nacos.naming.expireInstancetrue### Add in 2.0.0 ### The interval to clean empty service, unit: milliseconds. # nacos.naming.clean.empty-service.interval60000### The expired time to clean empty service, unit: milliseconds. # nacos.naming.clean.empty-service.expired-time60000### The interval to clean expired metadata, unit: milliseconds. # nacos.naming.clean.expired-metadata.interval5000### The expired time to clean metadata, unit: milliseconds. # nacos.naming.clean.expired-metadata.expired-time60000### The delay time before push task to execute from service changed, unit: milliseconds. # nacos.naming.push.pushTaskDelay500### The timeout for push task execute, unit: milliseconds. # nacos.naming.push.pushTaskTimeout5000### The delay time for retrying failed push task, unit: milliseconds. # nacos.naming.push.pushTaskRetryDelay1000### Since 2.0.3 ### The expired time for inactive client, unit: milliseconds. # nacos.naming.client.expired.time180000#*************** CMDB Module Related Configurations ***************# ### The interval to dump external CMDB in seconds: # nacos.cmdb.dumpTaskInterval3600### The interval of polling data change event in seconds: # nacos.cmdb.eventTaskInterval10### The interval of loading labels in seconds: # nacos.cmdb.labelTaskInterval300### If turn on data loading task: # nacos.cmdb.loadDataAtStartfalse#*************** Metrics Related Configurations ***************# ### Metrics for prometheus #management.endpoints.web.exposure.include*### Metrics for elastic search management.metrics.export.elastic.enabledfalse #management.metrics.export.elastic.hosthttp://localhost:9200### Metrics for influx management.metrics.export.influx.enabledfalse #management.metrics.export.influx.dbspringboot #management.metrics.export.influx.urihttp://localhost:8086 #management.metrics.export.influx.auto-create-dbtrue #management.metrics.export.influx.consistencyone #management.metrics.export.influx.compressedtrue#*************** Access Log Related Configurations ***************# ### If turn on the access log: server.tomcat.accesslog.enabledtrue### The access log pattern: server.tomcat.accesslog.pattern%h %l %u %t %r %s %b %D %{User-Agent}i %{Request-Source}i### The directory of access log: server.tomcat.basedirfile:.#*************** Access Control Related Configurations ***************# ### If enable spring security, this option is deprecated in 1.2.0: #spring.security.enabledfalse### The ignore urls of auth nacos.security.ignore.urls/,/error,/**/*.css,/**/*.js,/**/*.html,/**/*.map,/**/*.svg,/**/*.png,/**/*.ico,/console-ui/public/**,/v1/auth/**,/v1/console/health/**,/actuator/**,/v1/console/server/**# 鉴权类型默认为nacos ### The auth system to use, currently only nacos and ldap is supported: nacos.core.auth.system.typenacos# 是否开启鉴权功能默认为false ### If turn on auth system: nacos.core.auth.enabledtrue# Base64加密前密码 0MHbMNvcICrwgabXJdbCii9NUmufJ85s # Base64加密后密码 ME1IYk1OdmNJQ3J3Z2FiWEpkYkNpaTlOVW11Zko4NXM # 加密网站https://www.qqxiuzi.cn/bianma/base64.htm # 自定义密钥在自定义密钥时推荐将配置项设置为Base64编码的字符串且原始密钥长度不得低于32字符。同nacos.core.auth.plugin.nacos.token.secret.key nacos.core.auth.default.token.secret.keyME1IYk1OdmNJQ3J3Z2FiWEpkYkNpaTlOVW11Zko4NXM### Turn on/off caching of auth information. By turning on this switch, the update of auth information would have a 15 seconds delay. nacos.core.auth.caching.enabledtrue# 关闭使用user-agent判断服务端请求并放行鉴权的功能 ### Since 1.4.1, Turn on/off white auth for user-agent: nacos-server, only for upgrade from old version. nacos.core.auth.enable.userAgentAuthWhitefalse# 自定义密钥时推荐将配置项设置为Base64编码的字符串且原始密钥长度不得低于32字符。 ### Since 1.4.1, worked when nacos.core.auth.enabledtrue and nacos.core.auth.enable.userAgentAuthWhitefalse. ### The two properties is the white list for auth and used by identity the request from other server. # 用于替换useragent白名单的身份识别key不可为空2.2.1后无默认值 nacos.core.auth.server.identity.keynacosKey # 用于替换useragent白名单的身份识别value不可为空2.2.1后无默认值 nacos.core.auth.server.identity.valuenacosValue### worked when nacos.core.auth.system.typenacos ### The token expiration in seconds: nacos.core.auth.plugin.nacos.token.cache.enablefalse# 用户登陆临时accessToken的过期时间默认18000 nacos.core.auth.plugin.nacos.token.expire.seconds18000# 默认鉴权插件用于生成用户登陆临时accessToken所使用的密钥在2.2.0.1后无默认值必须执行此变更否则无法启动其他版本为建议设置。 ### The default token (Base64 String): nacos.core.auth.plugin.nacos.token.secret.keyME1IYk1OdmNJQ3J3Z2FiWEpkYkNpaTlOVW11Zko4NXM### worked when nacos.core.auth.system.typeldap{0} is Placeholder,replace login username #nacos.core.auth.ldap.urlldap://localhost:389 #nacos.core.auth.ldap.basedcdcexample,dcorg #nacos.core.auth.ldap.userDncnadmin,${nacos.core.auth.ldap.basedc} #nacos.core.auth.ldap.passwordadmin #nacos.core.auth.ldap.userdncn{0},dcexample,dcorg #nacos.core.auth.ldap.filter.prefixuid #nacos.core.auth.ldap.case.sensitivetrue#*************** Istio Related Configurations ***************# ### If turn on the MCP server: nacos.istio.mcp.server.enabledfalse#*************** Core Related Configurations ***************#### set the WorkerID manually # nacos.core.snowflake.worker-id### Member-MetaData # nacos.core.member.meta.site # nacos.core.member.meta.adweight # nacos.core.member.meta.weight### MemberLookup ### Addressing pattern category, If set, the priority is highest # nacos.core.member.lookup.type[file,address-server] ## Set the cluster list with a configuration file or command-line argument # nacos.member.list192.168.16.101:8847?raft_port8807,192.168.16.101?raft_port8808,192.168.16.101:8849?raft_port8809 ## for AddressServerMemberLookup # Maximum number of retries to query the address server upon initialization # nacos.core.address-server.retry5 ## Server domain name address of [address-server] mode # address.server.domainjmenv.tbsite.net ## Server port of [address-server] mode # address.server.port8080 ## Request address of [address-server] mode # address.server.url/nacos/serverlist#*************** JRaft Related Configurations ***************#### Sets the Raft cluster election timeout, default value is 5 second # nacos.core.protocol.raft.data.election_timeout_ms5000 ### Sets the amount of time the Raft snapshot will execute periodically, default is 30 minute # nacos.core.protocol.raft.data.snapshot_interval_secs30 ### raft internal worker threads # nacos.core.protocol.raft.data.core_thread_num8 ### Number of threads required for raft business request processing # nacos.core.protocol.raft.data.cli_service_thread_num4 ### raft linear read strategy. Safe linear reads are used by default, that is, the Leader tenure is confirmed by heartbeat # nacos.core.protocol.raft.data.read_index_typeReadOnlySafe ### rpc request timeout, default 5 seconds # nacos.core.protocol.raft.data.rpc_request_timeout_ms5000#*************** Distro Related Configurations ***************#### Distro data sync delay time, when sync task delayed, task will be merged for same data key. Default 1 second. # nacos.core.protocol.distro.data.sync.delayMs1000### Distro data sync timeout for one sync data, default 3 seconds. # nacos.core.protocol.distro.data.sync.timeoutMs3000### Distro data sync retry delay time when sync data failed or timeout, same behavior with delayMs, default 3 seconds. # nacos.core.protocol.distro.data.sync.retryDelayMs3000### Distro data verify interval time, verify synced data whether expired for a interval. Default 5 seconds. # nacos.core.protocol.distro.data.verify.intervalMs5000### Distro data verify timeout for one verify, default 3 seconds. # nacos.core.protocol.distro.data.verify.timeoutMs3000### Distro data load retry delay when load snapshot data failed, default 30 seconds. # nacos.core.protocol.distro.data.load.retryDelayMs30000### enable to support prometheus service discovery #nacos.prometheus.metrics.enabledtrue### Since 2.3 #*************** Grpc Configurations ***************### sdk grpc(between nacos server and client) configuration ## Sets the maximum message size allowed to be received on the server. #nacos.remote.server.grpc.sdk.max-inbound-message-size10485760## Sets the time(milliseconds) without read activity before sending a keepalive ping. The typical default is two hours. #nacos.remote.server.grpc.sdk.keep-alive-time7200000## Sets a time(milliseconds) waiting for read activity after sending a keepalive ping. Defaults to 20 seconds. #nacos.remote.server.grpc.sdk.keep-alive-timeout20000## Sets a time(milliseconds) that specify the most aggressive keep-alive time clients are permitted to configure. The typical default is 5 minutes #nacos.remote.server.grpc.sdk.permit-keep-alive-time300000## cluster grpc(inside the nacos server) configuration #nacos.remote.server.grpc.cluster.max-inbound-message-size10485760## Sets the time(milliseconds) without read activity before sending a keepalive ping. The typical default is two hours. #nacos.remote.server.grpc.cluster.keep-alive-time7200000## Sets a time(milliseconds) waiting for read activity after sending a keepalive ping. Defaults to 20 seconds. #nacos.remote.server.grpc.cluster.keep-alive-timeout20000## Sets a time(milliseconds) that specify the most aggressive keep-alive time clients are permitted to configure. The typical default is 5 minutes #nacos.remote.server.grpc.cluster.permit-keep-alive-time300000四、使用 1、启动 进入根目录下的 bin 目录这里以单机版启动使用如下命令 sh startup.sh -m standalone然后在浏览器访问就可以看到 nacos 登录页了 2、关闭 进入根目录下的 bin 目录使用如下命令 sh shutdown.sh
http://www.zqtcl.cn/news/564877/

相关文章:

  • 搭建网站需要什么软件苏州吴中区建设局工程网站
  • 长沙市网站推广公司wordpress 弹窗登录插件
  • 网站策划怎么做内容朔州网站建设公司
  • 宁波拾谷网站建设蚌埠网站建设中心
  • 青岛专业设计网站公司加拿大广播公司
  • 盘锦市建设局网站地址八桂职教网技能大赛
  • 投资建设一个网站多少钱和淘宝同时做电商的网站
  • 做动物网站的素材icp备案 网站备案
  • 找人建网站唐山网络运营推广
  • 福建省住房建设厅网站6网站简历模板
  • 医疗网站模版杭州工商注册
  • 正保建设工程网站logo创意
  • 简洁个人博客网站模板下载用自己电脑做网站服务器-phpstudy+花生壳
  • 网页模板下载哪个网站好多个域名指定同一个网站好处
  • 北京网站建设有哪些公司微网站的案例
  • 常德经开区网站官网域名备案关闭网站吗
  • 做宠物网站的工作室做网站租服务器
  • 2017做那个网站致富网站换源码如何保留以前的文章
  • php网站开发实例教程书wordpress博客页面显示文章在哪
  • 地方o2o同城网站源码微信app开发价格表
  • 花木公司网站源码双语外贸网站源码
  • 什么公司做网站会提供源代码创业做招商加盟类网站赚钱
  • 东莞网站建设排名基因数据库网站开发价格
  • 天河区营销型网站建设科技自立自强
  • 网站域名账号江苏百度推广代理商
  • 专题网站建站对网站分析
  • 外贸出口网站建设如何搭建自己的网站服务器
  • 云南省建设厅网站职称评审房地产推广方案和推广思路
  • 湘潭建设路街道网站app的设计与开发
  • 《网站开发实践》 实训报告广告策划书案例完整版