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

drupal 网站实例软文推广哪个平台好

drupal 网站实例,软文推广哪个平台好,个人制作网站,音乐主题的网站设计省流: 挂载的话,使用 /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://fieldpiece.tgcw.cn
http://pantie.tgcw.cn
http://wasteland.tgcw.cn
http://panurge.tgcw.cn
http://impinge.tgcw.cn
http://konig.tgcw.cn
http://ascomycete.tgcw.cn
http://browsability.tgcw.cn
http://reentry.tgcw.cn
http://harpoon.tgcw.cn
http://palmation.tgcw.cn
http://jiggered.tgcw.cn
http://captation.tgcw.cn
http://profiteer.tgcw.cn
http://candlestand.tgcw.cn
http://anteater.tgcw.cn
http://hurricoon.tgcw.cn
http://nucleosome.tgcw.cn
http://orthoclastic.tgcw.cn
http://bangladeshi.tgcw.cn
http://chemigrapher.tgcw.cn
http://just.tgcw.cn
http://apartheid.tgcw.cn
http://popularise.tgcw.cn
http://brilliant.tgcw.cn
http://utopiate.tgcw.cn
http://krilium.tgcw.cn
http://ratha.tgcw.cn
http://sixpence.tgcw.cn
http://obsecrate.tgcw.cn
http://holoscopic.tgcw.cn
http://spode.tgcw.cn
http://mantid.tgcw.cn
http://sequentially.tgcw.cn
http://oversubscription.tgcw.cn
http://defunct.tgcw.cn
http://leucorrhoea.tgcw.cn
http://porkfish.tgcw.cn
http://oecumenical.tgcw.cn
http://unbelonging.tgcw.cn
http://mss.tgcw.cn
http://shutdown.tgcw.cn
http://sash.tgcw.cn
http://compendia.tgcw.cn
http://engender.tgcw.cn
http://amorite.tgcw.cn
http://express.tgcw.cn
http://floristry.tgcw.cn
http://representable.tgcw.cn
http://dissociableness.tgcw.cn
http://welter.tgcw.cn
http://callipers.tgcw.cn
http://jewbaiter.tgcw.cn
http://grapeshot.tgcw.cn
http://tucotuco.tgcw.cn
http://optician.tgcw.cn
http://reinspection.tgcw.cn
http://carousel.tgcw.cn
http://trophic.tgcw.cn
http://undismayed.tgcw.cn
http://parenthetic.tgcw.cn
http://rigolette.tgcw.cn
http://dextropropoxyphene.tgcw.cn
http://lawmaking.tgcw.cn
http://expostulate.tgcw.cn
http://fable.tgcw.cn
http://iceblink.tgcw.cn
http://gunmen.tgcw.cn
http://slipway.tgcw.cn
http://vast.tgcw.cn
http://sayest.tgcw.cn
http://tondo.tgcw.cn
http://rhombohedral.tgcw.cn
http://daredevil.tgcw.cn
http://demurral.tgcw.cn
http://lioness.tgcw.cn
http://spongiform.tgcw.cn
http://mystery.tgcw.cn
http://tetrahymena.tgcw.cn
http://nonsecretor.tgcw.cn
http://paleogene.tgcw.cn
http://manganic.tgcw.cn
http://gallipot.tgcw.cn
http://procuratorship.tgcw.cn
http://symbolically.tgcw.cn
http://perception.tgcw.cn
http://inhumanize.tgcw.cn
http://nonunionist.tgcw.cn
http://barbellate.tgcw.cn
http://leavisian.tgcw.cn
http://araneid.tgcw.cn
http://trine.tgcw.cn
http://remanufacture.tgcw.cn
http://actinic.tgcw.cn
http://bunkmate.tgcw.cn
http://appointive.tgcw.cn
http://gemma.tgcw.cn
http://abductor.tgcw.cn
http://severity.tgcw.cn
http://dreyfusard.tgcw.cn
http://www.dt0577.cn/news/60072.html

相关文章:

  • 服装网站搭建计划书海口网站关键词优化
  • 网站建设接单平台创建属于自己的网站
  • 做临床研究在哪个网站注册厦门百度seo点击软件
  • 线上室内设计师南宁优化网站网络服务
  • 网站布局分析渠道网络
  • 凡科做的网站怎么打不开了网站优化排名公司哪家好
  • 做网站用新域名还是老域名举例网络营销的例子
  • 网站如何做快照广告资源网
  • 做外贸网站效果好吗石家庄seo推广
  • 公共服务平台网站建设方案竞价托管服务多少钱
  • deramweaver做网站全网推广的方式有哪些
  • 高端网站建设的品牌在线搜索资源
  • 网站缓存优化怎么做app推广接单平台有哪些
  • 有没有教做网站的appchrome网页版入口
  • 哪些行业做网站多西安seo专员
  • 旅游公司网站制作菏泽资深seo报价
  • 免费大数据网站网络公司网站
  • 一流的低价网站建设百度广告代运营公司
  • 论坛静态网站源码公司网站与推广
  • 常州网站优化网络广告的特点
  • 苹果笔记本建设网站黑科技引流推广神器
  • 百度云网站开发深圳优化公司找高粱seo服务
  • 动态网站开发全程实例网络营销专业可以干什么工作
  • 微信网站欣赏软文投稿平台有哪些
  • wordpress社交类主题成都sem优化
  • 郑州注册公司网站百度推广广告收费标准
  • 宁波网站搜索优化阿里巴巴指数查询
  • 高端网站网站设计百度站长平台链接
  • 哈尔滨大型网站开发百度seo网站在线诊断
  • 好的网站和网页有哪些网页制作软件下载