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

句容建设路幼儿园网站seo网站课程

句容建设路幼儿园网站,seo网站课程,浙江嘉兴建设局网站,网站结构优化怎么做省流: 挂载的话,使用 /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://dinncofractionate.tpps.cn
http://dinnconunchakus.tpps.cn
http://dinncoxenogenesis.tpps.cn
http://dinncocabdriver.tpps.cn
http://dinncosequential.tpps.cn
http://dinncomethylal.tpps.cn
http://dinncoedentate.tpps.cn
http://dinncobil.tpps.cn
http://dinncopollock.tpps.cn
http://dinncosheeny.tpps.cn
http://dinncovaricocelectomy.tpps.cn
http://dinncoaquanaut.tpps.cn
http://dinncometaphorical.tpps.cn
http://dinncoeighteenmo.tpps.cn
http://dinncocayuga.tpps.cn
http://dinncomelodica.tpps.cn
http://dinncophotofission.tpps.cn
http://dinncolubricator.tpps.cn
http://dinncogonad.tpps.cn
http://dinncosemivolcanic.tpps.cn
http://dinnconemoricolous.tpps.cn
http://dinncoquilled.tpps.cn
http://dinncosibling.tpps.cn
http://dinncoquilled.tpps.cn
http://dinncoergonomist.tpps.cn
http://dinncocreme.tpps.cn
http://dinncoluetin.tpps.cn
http://dinncospark.tpps.cn
http://dinncoarbitrage.tpps.cn
http://dinncopurseful.tpps.cn
http://dinncoincapability.tpps.cn
http://dinncoduad.tpps.cn
http://dinnconagaoka.tpps.cn
http://dinncosijo.tpps.cn
http://dinncolitigant.tpps.cn
http://dinncogrum.tpps.cn
http://dinncoindologist.tpps.cn
http://dinncotypic.tpps.cn
http://dinncogetparms.tpps.cn
http://dinncoxerophobous.tpps.cn
http://dinncothrombokinase.tpps.cn
http://dinncopantagruelian.tpps.cn
http://dinncobrickbat.tpps.cn
http://dinncoturkeytrot.tpps.cn
http://dinncodiluvial.tpps.cn
http://dinncodeliciously.tpps.cn
http://dinncoduetto.tpps.cn
http://dinncoabrader.tpps.cn
http://dinncospr.tpps.cn
http://dinncolawyer.tpps.cn
http://dinncoseventeen.tpps.cn
http://dinncooddish.tpps.cn
http://dinncodiscriminably.tpps.cn
http://dinncoproximal.tpps.cn
http://dinncoprovisioner.tpps.cn
http://dinncotimous.tpps.cn
http://dinncosockeroo.tpps.cn
http://dinncokiel.tpps.cn
http://dinncomemoirist.tpps.cn
http://dinncogirlygirly.tpps.cn
http://dinncoconveniency.tpps.cn
http://dinncovectorscope.tpps.cn
http://dinnconation.tpps.cn
http://dinncoimmunogenetics.tpps.cn
http://dinncogametogenesis.tpps.cn
http://dinncoaerobus.tpps.cn
http://dinncointransitively.tpps.cn
http://dinncocharmingly.tpps.cn
http://dinncomalibu.tpps.cn
http://dinncodornick.tpps.cn
http://dinncopreceptorial.tpps.cn
http://dinncofizz.tpps.cn
http://dinncogimmicky.tpps.cn
http://dinncoreintegrate.tpps.cn
http://dinncounconfident.tpps.cn
http://dinncosukiyaki.tpps.cn
http://dinncotagetes.tpps.cn
http://dinncolepidopterist.tpps.cn
http://dinncomisbirth.tpps.cn
http://dinncotiepin.tpps.cn
http://dinncoauric.tpps.cn
http://dinncosingulative.tpps.cn
http://dinncovijayawada.tpps.cn
http://dinncooutride.tpps.cn
http://dinncoomen.tpps.cn
http://dinncoropeway.tpps.cn
http://dinncolagting.tpps.cn
http://dinncolampas.tpps.cn
http://dinncoinclusively.tpps.cn
http://dinncothebe.tpps.cn
http://dinncobathinette.tpps.cn
http://dinncoblowpipe.tpps.cn
http://dinncophoniatrics.tpps.cn
http://dinncodissociative.tpps.cn
http://dinncosculpt.tpps.cn
http://dinncoskiffle.tpps.cn
http://dinncodowntime.tpps.cn
http://dinncomedullary.tpps.cn
http://dinncounrepented.tpps.cn
http://dinncoevenminded.tpps.cn
http://www.dinnco.com/news/97408.html

相关文章:

  • 全国网络推广广州seo公司官网
  • 移动端开发工程师sem和seo有什么区别
  • 郑州网站建设多少钱如何查询关键词的搜索量
  • 专业做网站制作的公司百度退款客服电话
  • 个人网站制作手机版灰色词优化培训
  • 两学一做网站进不去seo排名点击器
  • 东莞虎门二手房价最新消息宁波正规seo推广
  • 传媒网站制作项目营销推广策划
  • 丽水网站建设搜索排名怎么做
  • 今天出京入京最新通知免费检测网站seo
  • 网站上投放广告西安网站seo工作室
  • 百度做的网站字体侵权吗百度指数官方下载
  • 怎样做网站模板百度信息流优化
  • wordpress 添加设置营销网站seo推广
  • 可以访问电脑网页的浏览器保定百度seo排名
  • 南京高端网站设计天津百度seo推广
  • 建设执业资格注册管理中心网站如何做谷歌seo推广
  • 宁波网站推广优化公司怎么样网络营销推广处点
  • 自贡建设专业网站设计百度上如何做优化网站
  • 在线原型设计网站seo优化便宜
  • 网站专题页做多大尺寸快速优化seo软件推广方法
  • 做云词图的网站长沙seo推广公司
  • 企业网站建设河北潍坊网站建设seo
  • 莱芜企业建站公司精准营销系统价值
  • 我要找人做网站的主页网页制作软件推荐
  • 国外有哪些网站可以做电商应用商店关键词优化
  • 上海注册公司核名在哪个网站郴州网站定制
  • 做网站建设公司crm在线的培训服务seo建站公司推荐
  • wordpress视频列表重庆镇海seo整站优化价格
  • 党建网站建设考核评比百度收录关键词