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

微信上如何投放广告成都百度推广排名优化

微信上如何投放广告,成都百度推广排名优化,东营网站制作团队,黄骅市天气1、修改自己对应的命名空间 2、local pv的方式必须先创建好目录在给权限 3、sts部署文件密码都要修改好在部署 yaml资源文件如下: #配置mysql的root密码再部署,如果部署了在修改root密码就会失败,必须在初始化就把root密码修改好 #部署采…

1、修改自己对应的命名空间

2、local pv的方式必须先创建好目录在给权限

3、sts部署文件密码都要修改好在部署

yaml资源文件如下:

#配置mysql的root密码再部署,如果部署了在修改root密码就会失败,必须在初始化就把root密码修改好
#部署采用的local pv的模式持久化本地#  local-sc.yml 
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:name: local-path
provisioner: kubernetes.io/no-provisioner
volumeBindingMode: WaitForFirstConsumer  #延迟绑定参数,很重要---
apiVersion: v1
kind: PersistentVolume
metadata:name: pv-mysql-1
spec :capacity:storage: 5GivolumeMode: FilesystemaccessModes:- ReadWriteOncepersistentVolumeReclaimPolicy: RetainstorageClassName: local-pathlocal:path: /data/mysql-1nodeAffinity:required:nodeSelectorTerms:- matchExpressions:- key: kubernetes.io/hostnameoperator: Invalues :- cole-k8s-worker1---
apiVersion: v1
kind: PersistentVolume
metadata:name: pv-mysql-2
spec :capacity:storage: 5GivolumeMode: FilesystemaccessModes:- ReadWriteOncepersistentVolumeReclaimPolicy: RetainstorageClassName: local-pathlocal:path: /data/mysql-2nodeAffinity:required:nodeSelectorTerms:- matchExpressions:- key: kubernetes.io/hostnameoperator: Invalues :- cole-k8s-worker2---
apiVersion: v1
kind: PersistentVolume
metadata:name: pv-mysql-3
spec :capacity:storage: 5GivolumeMode: FilesystemaccessModes:- ReadWriteOncepersistentVolumeReclaimPolicy: RetainstorageClassName: local-pathlocal:path: /data/mysql-3nodeAffinity:required:nodeSelectorTerms:- matchExpressions:- key: kubernetes.io/hostnameoperator: Invalues :- cole-k8s-worker3---#application/mysql/mysql-configmap.yaml
apiVersion: v1
kind: ConfigMap
metadata:name: mysqlnamespace: public-middlabels:app: mysql
data:master.cnf: |# Apply this config only on the master.[mysqld]log-binslave.cnf: |# Apply this config only on slaves.[mysqld]super-read-only
---
# application/mysql/mysql-services.yaml
# Headless service for stable DNS entries of StatefulSet members.
apiVersion: v1
kind: Service
metadata:name: mysqlnamespace: public-middlabels:app: mysql
spec:ports:- name: mysqlport: 3306clusterIP: Noneselector:app: mysql
---
# Client service for connecting to any MySQL instance for reads.
# For writes, you must instead connect to the master: mysql-0.mysql.
apiVersion: v1
kind: Service
metadata:name: mysql-readnamespace: public-middlabels:app: mysql
spec:ports:- name: mysqlport: 3306selector:app: mysql
---
#application/mysql/mysql-statefulset.yamlapiVersion: apps/v1
kind: StatefulSet
metadata:name: mysqlnamespace: public-midd
spec:selector:matchLabels:app: mysqlserviceName: mysqlreplicas: 3template:metadata:labels:app: mysqlspec:# 设置初始化容器,进行一些准备工作initContainers:- name: init-mysqlimage: mysql:5.7# 为每个MySQL节点配置service-id# 如果节点序号是0,则使用master的配置, 其余节点使用slave的配置command:- bash- "-c"- |set -ex# Generate mysql server-id from pod ordinal index.[[ `uname -n` =~ -([0-9]+)$ ]] || exit 1ordinal=${BASH_REMATCH[1]}echo [mysqld] > /mnt/conf.d/server-id.cnf# Add an offset to avoid reserved server-id=0 value.echo server-id=$((100 + $ordinal)) >> /mnt/conf.d/server-id.cnf# Copy appropriate conf.d files from config-map to emptyDir.if [[ $ordinal -eq 0 ]]; thencp /mnt/config-map/master.cnf /mnt/conf.d/elsecp /mnt/config-map/slave.cnf /mnt/conf.d/fivolumeMounts:- name: time-localtimemountPath: /etc/localtimereadOnly: true- name: confmountPath: /mnt/conf.d- name: config-mapmountPath: /mnt/config-map- name: clone-mysqlimage: yizhiyong/xtrabackup:latest# 为除了节点序号为0的主节点外的其它节点,备份前一个节点的数据command:- bash- "-c"- |set -ex# Skip the clone if data already exists.[[ -d /var/lib/mysql/mysql ]] && exit 0# Skip the clone on master (ordinal index 0).[[ `uname -n` =~ -([0-9]+)$ ]] || exit 1ordinal=${BASH_REMATCH[1]}[[ $ordinal -eq 0 ]] && exit 0# Clone data from previous peer.ncat --recv-only mysql-$(($ordinal-1)).mysql 3307 | xbstream -x -C /var/lib/mysql# Prepare the backup.xtrabackup --prepare --target-dir=/var/lib/mysqlvolumeMounts:- name: time-localtimemountPath: /etc/localtimereadOnly: true- name: datamountPath: /var/lib/mysqlsubPath: mysql- name: confmountPath: /etc/mysql/conf.dcontainers:- name: mysqlimage: mysql:5.7# 设置支持免密登录env:# - name: MYSQL_ALLOW_EMPTY_PASSWORD# value: "1"- name: MYSQL_ROOT_PASSWORDvalue: "123456"ports:- name: mysqlcontainerPort: 3306volumeMounts:- name: time-localtimemountPath: /etc/localtimereadOnly: true- name: datamountPath: /var/lib/mysqlsubPath: mysql- name: confmountPath: /etc/mysql/conf.dresources:# 设置启动pod需要的资源,官方文档上需要500m cpu,1Gi memory。# 我本地测试的时候,会因为资源不足,报1 Insufficient cpu, 1 Insufficient memory错误,所以我改小了点requests:# m是千分之一的意思,100m表示需要0.1个cpucpu: 100m# Mi是兆的意思,需要100M 内存memory: 100MilivenessProbe:# 使用mysqladmin ping命令,对MySQL节点进行探活检测# 在节点部署完30秒后开始,每10秒检测一次,超时时间为5秒exec:command: [ "mysqladmin", "ping" ]initialDelaySeconds: 30periodSeconds: 10timeoutSeconds: 5readinessProbe:# 对节点服务可用性进行检测, 启动5秒后开始,每2秒检测一次,超时时间1秒exec:# Check we can execute queries over TCP (skip-networking is off).command: [ "mysql", "-h", "127.0.0.1", "-p123456", "-e", "SELECT 1" ]initialDelaySeconds: 5periodSeconds: 2timeoutSeconds: 1- name: xtrabackupimage: yizhiyong/xtrabackup:latestports:- name: xtrabackupcontainerPort: 3307# 开始进行备份文件校验、解析和开始同步command:- bash- "-c"- |set -excd /var/lib/mysql# Determine binlog position of cloned data, if any.if [[ -f xtrabackup_slave_info && "x$(<xtrabackup_slave_info)" != "x" ]]; then# XtraBackup already generated a partial "CHANGE MASTER TO" query# because we're cloning from an existing slave. (Need to remove the tailing semicolon!)cat xtrabackup_slave_info | sed -E 's/;$//g' > change_master_to.sql.in# Ignore xtrabackup_binlog_info in this case (it's useless).rm -f xtrabackup_slave_info xtrabackup_binlog_infoelif [[ -f xtrabackup_binlog_info ]]; then# We're cloning directly from master. Parse binlog position.[[ `cat xtrabackup_binlog_info` =~ ^(.*?)[[:space:]]+(.*?)$ ]] || exit 1rm -f xtrabackup_binlog_info xtrabackup_slave_infoecho "CHANGE MASTER TO MASTER_LOG_FILE='${BASH_REMATCH[1]}',\MASTER_LOG_POS=${BASH_REMATCH[2]}" > change_master_to.sql.infi# Check if we need to complete a clone by starting replication.if [[ -f change_master_to.sql.in ]]; thenecho "Waiting for mysqld to be ready (accepting connections)"until mysql -h 127.0.0.1 -p"123456" -e "SELECT 1"; do sleep 1; doneecho "Initializing replication from clone position"mysql -h 127.0.0.1 -p"123456"\-e "$(<change_master_to.sql.in), \MASTER_HOST='mysql-0.mysql', \MASTER_USER='root', \MASTER_PASSWORD='123456', \MASTER_CONNECT_RETRY=10; \START SLAVE;" || exit 1# In case of container restart, attempt this at-most-once.mv change_master_to.sql.in change_master_to.sql.origfi# Start a server to send backups when requested by peers.exec ncat --listen --keep-open --send-only --max-conns=1 3307 -c \"xtrabackup --backup --slave-info --stream=xbstream --host=127.0.0.1 --user=root --password=123456"volumeMounts:- name: time-localtimemountPath: /etc/localtimereadOnly: true- name: datamountPath: /var/lib/mysqlsubPath: mysql- name: confmountPath: /etc/mysql/conf.dresources:requests:cpu: 100mmemory: 100Mivolumes:- name: time-localtimehostPath:path: /etc/localtime- name: confemptyDir: { }- name: config-mapconfigMap:name: mysql# 设置PVCvolumeClaimTemplates:- metadata:name: data       spec:storageClassName: local-pathaccessModes: [ "ReadWriteOnce" ]resources:requests:storage: 5Gi


文章转载自:
http://baseband.c7617.cn
http://synthetical.c7617.cn
http://garth.c7617.cn
http://gerontophil.c7617.cn
http://tunis.c7617.cn
http://mavin.c7617.cn
http://noncanonical.c7617.cn
http://amphictyonic.c7617.cn
http://paramylum.c7617.cn
http://worse.c7617.cn
http://langue.c7617.cn
http://gonfalonier.c7617.cn
http://iridaceous.c7617.cn
http://spear.c7617.cn
http://symantec.c7617.cn
http://hoard.c7617.cn
http://painless.c7617.cn
http://ebonite.c7617.cn
http://chukker.c7617.cn
http://stellar.c7617.cn
http://petropolitics.c7617.cn
http://snubby.c7617.cn
http://groom.c7617.cn
http://referrible.c7617.cn
http://medicinal.c7617.cn
http://moderately.c7617.cn
http://showboat.c7617.cn
http://preplacement.c7617.cn
http://pimpled.c7617.cn
http://conidiospore.c7617.cn
http://hunk.c7617.cn
http://rockaby.c7617.cn
http://diplophonia.c7617.cn
http://swissair.c7617.cn
http://hereford.c7617.cn
http://warcraft.c7617.cn
http://agouty.c7617.cn
http://hypnopaedia.c7617.cn
http://surfperch.c7617.cn
http://hypocotyl.c7617.cn
http://titillation.c7617.cn
http://cingulectomy.c7617.cn
http://sorehead.c7617.cn
http://overstory.c7617.cn
http://dubiosity.c7617.cn
http://husky.c7617.cn
http://aerobic.c7617.cn
http://moorbird.c7617.cn
http://prooflike.c7617.cn
http://parfait.c7617.cn
http://unimpugned.c7617.cn
http://buddhistical.c7617.cn
http://isorhas.c7617.cn
http://sylvics.c7617.cn
http://tetramethyldiarsine.c7617.cn
http://maltster.c7617.cn
http://paisley.c7617.cn
http://south.c7617.cn
http://landzone.c7617.cn
http://proffer.c7617.cn
http://jog.c7617.cn
http://gonfalon.c7617.cn
http://loral.c7617.cn
http://hypodermically.c7617.cn
http://hydrotaxis.c7617.cn
http://flunky.c7617.cn
http://stedfast.c7617.cn
http://radioresistance.c7617.cn
http://coromandel.c7617.cn
http://vertu.c7617.cn
http://peritoneal.c7617.cn
http://implausibility.c7617.cn
http://forgat.c7617.cn
http://introspective.c7617.cn
http://entailment.c7617.cn
http://latria.c7617.cn
http://newton.c7617.cn
http://shamefast.c7617.cn
http://radiotechnology.c7617.cn
http://baseplate.c7617.cn
http://primates.c7617.cn
http://haeju.c7617.cn
http://favoring.c7617.cn
http://fort.c7617.cn
http://shewbread.c7617.cn
http://trouvere.c7617.cn
http://glycosuria.c7617.cn
http://automanipulation.c7617.cn
http://booky.c7617.cn
http://conserve.c7617.cn
http://honeycomb.c7617.cn
http://ocular.c7617.cn
http://umbrellawort.c7617.cn
http://watchfully.c7617.cn
http://gadgety.c7617.cn
http://barnsley.c7617.cn
http://jumbled.c7617.cn
http://acer.c7617.cn
http://immunoreactive.c7617.cn
http://entomophagous.c7617.cn
http://www.zhongyajixie.com/news/81247.html

相关文章:

  • 给网站做公正需要带什么seo教学网seo
  • 网站设计制作 厂廊坊seo培训
  • 网站设计要多久富阳网站seo价格
  • 象山县建设管理局网站搜索引擎调词平台价格
  • 腾讯云云服务器官网win7优化大师下载
  • b站直接进入链接网络推广外包
  • 易语言做网站教程seo怎么搞
  • 用wordpress复制一个网站项目推广平台排行榜
  • 织梦手机网站教程视频教程东莞网站排名提升
  • 贷款超市网站开发郑州关键词优化顾问
  • 南皮网站建设永久免费跨境浏览app
  • 网站改版具体建议怎么注册自己公司的网址
  • 怎么做影视类网站网站排名seo软件
  • 做邪恶自拍小视频网站互联网营销外包推广
  • 常熟网站网站建设营销软文网站
  • asp.net 音乐网站开发百度搜索广告怎么投放
  • 什么网站可以做动画安卓优化大师破解版
  • ping一下新浪网站怎么做嘉兴关键词优化报价
  • 如何建立企业网站及企业网站推广网络营销师怎么考
  • 昆山做网站的个人青岛专业网站制作
  • 建站模板网站设计济宁百度推广公司
  • 济南网站建设专业公司网站优化推广怎么做
  • 开发免费app长沙网站seo优化排名
  • 汽车网站有哪些7个经典软文营销案例
  • 网站词库怎么做最近一周新闻
  • 自己做装修效果的网站国际新闻今天最新消息
  • 制作网站的步骤域名上海企业优化
  • 机械网站 英文域名购买哪个网站好
  • 网站设计公司上海产品推广思路
  • 大连科技网站制作谷歌浏览器官网手机版