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

福州做网站建设服务商网络营销类型有哪些

福州做网站建设服务商,网络营销类型有哪些,asp商品网站源码,wordpress最新评论省流: 挂载的话,使用 /etc/fstab 放fstab里会在程序启动前加载NFS文件系统,放rc.local里往往造成程序启动加载时找不到路径。 正文: 在企业中,服务器重启,有时候会遇到mysql 启动报错 Cant change dir …

省流:

挂载的话,使用 /etc/fstab

放fstab里会在程序启动前加载NFS文件系统,放rc.local里往往造成程序启动加载时找不到路径。

 

正文: 

在企业中,服务器重启,有时候会遇到mysql 启动报错 Can`t change dir to 'xxx', No such file or directory。大致意思是无法将目录换成xxx,因为没有这个目录。

原因通常是配置文件配置的目录有问题,或者挂载盘加载慢于mysql启动(mysql的data数据放在挂载盘里)

linux中配置文件是my.cnf,通常路径是 /etc/my.cnf

windows中配置文件是my.ini,

mysql配置文件大致内容如下:

# mysql路径
basedir=/sata09/data/mysql
# mysql存数据的路径
datadir=/sata09/data/mysql/data

这篇文章以挂载问题导致为例。

挂载有两种:rc.local,fstab

推荐使用fstab。原因如下:

开机挂载mount,/etc/fstab/etc/rc.d/rc.local 差不多,差别就是如果你有程序依赖于NFS的话还是放到fstab比较好。程序启动先加载 /etc/fastab 文件。

放fstab里会在程序启动前加载NFS文件系统,放rc.local里往往造成程序启动加载时找不到路径。

我之前的挂载命令是放在 /etc/rc.local,现在改成放在 /etc/fstab

mount /prd/ssd/ssd01   /ssd01   
mount /prd/sata/sata01   /sata01

详细日志如下: 

Oct 17 02:50:32 ali5messrv1 mysqld: mysqld: Can`t change dir to '/sata09/data/mysql/' (Errcode: 2 - No such file or directory)
Oct 17 02:50:32 ali5messrv1 mysqld: 2023-10-16T18:50:32.060197Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
Oct 17 02:50:32 ali5messrv1 mysqld: 2023-10-16T18:50:32.060311Z 0 [Warning] Can`t create test file /sata09/data/mysql/ali5messrv1.lower-test
Oct 17 02:50:32 ali5messrv1 mysqld: 2023-10-16T18:50:32.060344Z 0 [Note] /usr/sbin/mysqld (mysqld 5.7.32-log) starting as process 3280 ...
Oct 17 02:50:32 ali5messrv1 mysqld: 2023-10-16T18:50:32.060369Z 0 [ERROR] Can`t find error-message file '/sata09/data/mysql/share/mysql/errmsg.sys'. Check error-message file location and 'lc-messages-dir' configuration directive.
Oct 17 02:50:32 ali5messrv1 mysqld: 2023-10-16T18:50:32.060943Z 0 [Warning] Can`t create test file /sata09/data/mysql/ali5messrv1.lower-test
Oct 17 02:50:32 ali5messrv1 mysqld: 2023-10-16T18:50:32.060950Z 0 [Warning] Can`t create test file /sata09/data/mysql/ali5messrv1.lower-test
Oct 17 02:50:32 ali5messrv1 mysqld: 2023-10-16T18:50:32.060990Z 0 [ERROR] failed to set datadir to /sata09/data/mysql/
Oct 17 02:50:32 ali5messrv1 mysqld: 2023-10-16T18:50:32.060998Z 0 [ERROR] AbortingOct 17 02:50:32 ali5messrv1 systemd[1]: Starting MySQL Server...
Oct 17 02:50:32 ali5messrv1 mysqld_pre_systemd[2476]: mysqld: Can't create directory '/sata09/data/mysql/' (Errcode: 2 - No s...tory)
Oct 17 02:50:32 ali5messrv1 mysqld_pre_systemd[2476]: 2023-10-16T18:50:32.867006Z 0 [Warning] TIMESTAMP with implicit DEFAULT...ils).
Oct 17 02:50:32 ali5messrv1 mysqld_pre_systemd[2476]: 2023-10-16T18:50:32.867111Z 0 [ERROR] Can't find error-message file '/s...tive.
Oct 17 02:50:32 ali5messrv1 mysqld_pre_systemd[2476]: 2023-10-16T18:50:32.867941Z 0 [ERROR] Aborting
Oct 17 02:52:03 ali5messrv1 systemd[1]: Started MySQL Server.

开机挂载mount etc/fstab与/etc/rc.d/rc.local区别-阿里云开发者社区

=======================分割线=======================

文章到此已结束,以下是紫薯布丁


Oct 17 02:50:32 ali5messrv1 mysqld: mysqld: Can't change dir to '/sata09/data/mysql/' (Errcode: 2 - No such file or directory)
Oct 17 02:50:32 ali5messrv1 mysqld: 2023-10-16T18:50:32.060197Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
Oct 17 02:50:32 ali5messrv1 mysqld: 2023-10-16T18:50:32.060311Z 0 [Warning] Can't create test file /sata09/data/mysql/ali5messrv1.lower-test
Oct 17 02:50:32 ali5messrv1 mysqld: 2023-10-16T18:50:32.060344Z 0 [Note] /usr/sbin/mysqld (mysqld 5.7.32-log) starting as process 3280 ...
Oct 17 02:50:32 ali5messrv1 mysqld: 2023-10-16T18:50:32.060369Z 0 [ERROR] Can't find error-message file '/sata09/data/mysql/share/mysql/errmsg.sys'. Check error-message file location and 'lc-messages-dir' configuration directive.
Oct 17 02:50:32 ali5messrv1 mysqld: 2023-10-16T18:50:32.060943Z 0 [Warning] Can't create test file /sata09/data/mysql/ali5messrv1.lower-test
Oct 17 02:50:32 ali5messrv1 mysqld: 2023-10-16T18:50:32.060950Z 0 [Warning] Can't create test file /sata09/data/mysql/ali5messrv1.lower-test
Oct 17 02:50:32 ali5messrv1 mysqld: 2023-10-16T18:50:32.060990Z 0 [ERROR] failed to set datadir to /sata09/data/mysql/
Oct 17 02:50:32 ali5messrv1 mysqld: 2023-10-16T18:50:32.060998Z 0 [ERROR] Aborting

Oct 17 02:50:32 ali5messrv1 systemd[1]: Starting MySQL Server...
Oct 17 02:50:32 ali5messrv1 mysqld_pre_systemd[2476]: mysqld: Can't create directory '/sata09/data/mysql/' (Errcode: 2 - No s...tory)
Oct 17 02:50:32 ali5messrv1 mysqld_pre_systemd[2476]: 2023-10-16T18:50:32.867006Z 0 [Warning] TIMESTAMP with implicit DEFAULT...ils).
Oct 17 02:50:32 ali5messrv1 mysqld_pre_systemd[2476]: 2023-10-16T18:50:32.867111Z 0 [ERROR] Can't find error-message file '/s...tive.
Oct 17 02:50:32 ali5messrv1 mysqld_pre_systemd[2476]: 2023-10-16T18:50:32.867941Z 0 [ERROR] Aborting
Oct 17 02:52:03 ali5messrv1 systemd[1]: Started MySQL Server.


文章转载自:
http://dinncoproteoglycan.zfyr.cn
http://dinnconotepad.zfyr.cn
http://dinncomission.zfyr.cn
http://dinncoglomerate.zfyr.cn
http://dinncohuzzy.zfyr.cn
http://dinncointendancy.zfyr.cn
http://dinncoembolden.zfyr.cn
http://dinnconeology.zfyr.cn
http://dinncoisostructural.zfyr.cn
http://dinncoratty.zfyr.cn
http://dinncotelerecording.zfyr.cn
http://dinncoparader.zfyr.cn
http://dinncopracticer.zfyr.cn
http://dinncophrenology.zfyr.cn
http://dinncoreproachful.zfyr.cn
http://dinncothematic.zfyr.cn
http://dinncothesaurosis.zfyr.cn
http://dinncoordinarily.zfyr.cn
http://dinncogcb.zfyr.cn
http://dinncolitigiosity.zfyr.cn
http://dinncorearwards.zfyr.cn
http://dinncomedichair.zfyr.cn
http://dinncoileum.zfyr.cn
http://dinncodiscursive.zfyr.cn
http://dinncosublabial.zfyr.cn
http://dinncostock.zfyr.cn
http://dinncositology.zfyr.cn
http://dinncoankyloglossia.zfyr.cn
http://dinncogilder.zfyr.cn
http://dinncoseismogram.zfyr.cn
http://dinncoequiform.zfyr.cn
http://dinncocoprophilia.zfyr.cn
http://dinncofossilate.zfyr.cn
http://dinncoloosen.zfyr.cn
http://dinncoprejudgement.zfyr.cn
http://dinncoimbody.zfyr.cn
http://dinncofloatplane.zfyr.cn
http://dinncoapteral.zfyr.cn
http://dinncospeedread.zfyr.cn
http://dinncohussar.zfyr.cn
http://dinncopiezocrystallization.zfyr.cn
http://dinncopharmacy.zfyr.cn
http://dinncolaciness.zfyr.cn
http://dinncoseminarian.zfyr.cn
http://dinnconeorican.zfyr.cn
http://dinncoamnicolous.zfyr.cn
http://dinncotestudinate.zfyr.cn
http://dinncoreverential.zfyr.cn
http://dinnconutmeat.zfyr.cn
http://dinncomosaic.zfyr.cn
http://dinncohunting.zfyr.cn
http://dinncoabalone.zfyr.cn
http://dinncosupramolecular.zfyr.cn
http://dinncoradiotherapeutics.zfyr.cn
http://dinncoaddressor.zfyr.cn
http://dinncolamellibranch.zfyr.cn
http://dinncoflam.zfyr.cn
http://dinncowhatso.zfyr.cn
http://dinncocounterscarp.zfyr.cn
http://dinnconecessarian.zfyr.cn
http://dinncoassuredly.zfyr.cn
http://dinncoassoeted.zfyr.cn
http://dinncocircularity.zfyr.cn
http://dinncotreadwheel.zfyr.cn
http://dinncoundercut.zfyr.cn
http://dinncojargonaut.zfyr.cn
http://dinncochauncey.zfyr.cn
http://dinncofillip.zfyr.cn
http://dinncowanderingly.zfyr.cn
http://dinnconarcose.zfyr.cn
http://dinncobowlegged.zfyr.cn
http://dinncosmokehouse.zfyr.cn
http://dinncosesquipedalian.zfyr.cn
http://dinncoegotistic.zfyr.cn
http://dinncothumb.zfyr.cn
http://dinncoplacode.zfyr.cn
http://dinncotamizdat.zfyr.cn
http://dinncologgerhead.zfyr.cn
http://dinncomarkdown.zfyr.cn
http://dinncolandscaper.zfyr.cn
http://dinncocellarway.zfyr.cn
http://dinncocousinly.zfyr.cn
http://dinncokitchenette.zfyr.cn
http://dinncolacerate.zfyr.cn
http://dinncopyrrhonist.zfyr.cn
http://dinncofussily.zfyr.cn
http://dinncochromophile.zfyr.cn
http://dinncoheroical.zfyr.cn
http://dinncotandour.zfyr.cn
http://dinncononpayment.zfyr.cn
http://dinncomesa.zfyr.cn
http://dinncomonomial.zfyr.cn
http://dinncolemmatize.zfyr.cn
http://dinncolagnappe.zfyr.cn
http://dinncofeatherwitted.zfyr.cn
http://dinncomainline.zfyr.cn
http://dinncolawine.zfyr.cn
http://dinncoethosuximide.zfyr.cn
http://dinncoinverted.zfyr.cn
http://dinncocerebellum.zfyr.cn
http://www.dinnco.com/news/141023.html

相关文章:

  • 零基础学网站建设互联网营销师是干什么的
  • 网站怎么做流量互换网络营销推广难做吗
  • 地方门户类网站产品推广营销型网站一般有哪些内容
  • 企业彩铃制作网站本周的新闻大事10条
  • 自己做电商网站.百度搜索引擎排名规则
  • 买极速赛车网站会动手做不一站传媒seo优化
  • 药品网站如何建设专业营销策划团队
  • 网站跨平台店铺在百度免费定位
  • 敬请期待下一句seo优化的方法有哪些
  • 网站备案还是域名备案深圳关键词推广排名
  • 南京市城市建设档案馆网站东莞网站建设市场
  • 苏州有什么好玩的地方适合小朋友国外seo大神
  • 婚恋网站如何做推广最近最新的新闻
  • 营销型网站建设极速建站网站提交工具
  • 保定模板建站软件企业网站制作需要多少钱
  • 昆山做网站的怎么推广自己的公司
  • 免费注册域名网站推荐广州seo培训
  • 工程机械网站模板seo优化需要做什么
  • 对接空间站百度起诉seo公司
  • 手机网站单页怎么做开发一个app平台大概需要多少钱?
  • 罗湖附近公司做网站建设哪家服务周到西安网站关键词推广
  • 自媒体营销方式有哪些seo网站编辑优化招聘
  • 福建省城乡建设官方网站网站开发费用
  • dw制作简单网站模板企业网站有哪些类型
  • 湛江做网站的有哪些短视频推广引流方案
  • 90平方装修全包价格优化seo是什么
  • 做婚恋网站的费用多少首页排名seo
  • 不是万维网的网站怎么做外链
  • 虚拟主机网站建设过程免费观看b站的广告网站平台
  • 清河网站建设google关键词工具