【问题标题】:Error establishing a database connection - WordPress and mysql建立数据库连接时出错 - WordPress 和 mysql
【发布时间】:2018-01-20 08:26:20
【问题描述】:

我的 WordPress 网站经常出现错误Error establishing a database connection

之前,我使用sudo chmod 755 /var/lib/mysqlsudo /etc/init.d/mysql restart 来修复它。然而,这一次,他们不能再工作了; sudo /etc/init.d/mysql返回

stop: Unknown instance: 
start: Job failed to start

然后mysqld --verbose返回了

180120  3:24:48 [Warning] Using unique option prefix key_buffer instead of key_buffer_size is deprecated and will be removed in a future release. Please use the full name instead.
180120  3:24:48 [Warning] Can't create test file /var/lib/mysql/chengtie.lower-test
180120  3:24:48 [Note] mysqld (mysqld 5.5.58-0ubuntu0.14.04.1) starting as process 20724 ...
180120  3:24:48 [Warning] Can't create test file /var/lib/mysql/chengtie.lower-test
180120  3:24:48 [Warning] Can't create test file /var/lib/mysql/chengtie.lower-test
180120  3:24:48 [Warning] One can only use the --user switch if running as root

180120  3:24:48 [Warning] Using unique option prefix myisam-recover instead of myisam-recover-options is deprecated and will be removed in a future release. Please use the full name instead.
180120  3:24:48 [Note] Plugin 'FEDERATED' is disabled.
mysqld: Can't find file: './mysql/plugin.frm' (errno: 13)
180120  3:24:48 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.
180120  3:24:48 InnoDB: The InnoDB memory heap is disabled
180120  3:24:48 InnoDB: Mutexes and rw_locks use GCC atomic builtins
180120  3:24:48 InnoDB: Compressed tables use zlib 1.2.8
180120  3:24:48 InnoDB: Using Linux native AIO
180120  3:24:48 InnoDB: Initializing buffer pool, size = 128.0M
InnoDB: mmap(137363456 bytes) failed; errno 12
180120  3:24:48 InnoDB: Completed initialization of buffer pool
180120  3:24:48 InnoDB: Fatal error: cannot allocate memory for the buffer pool
180120  3:24:48 [ERROR] Plugin 'InnoDB' init function returned error.
180120  3:24:48 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
180120  3:24:48 [ERROR] Unknown/unsupported storage engine: InnoDB
180120  3:24:48 [ERROR] Aborting

180120  3:24:48 [Note] mysqld: Shutdown complete

有人知道如何恢复我的网站吗?

【问题讨论】:

  • InnoDB: mmap(137363456 bytes) failed; errno 12 - 看起来您的实例内存不足?当你尝试启动 mysql 时,Droplet 有多少内存以及可用的内存有多少?
  • @Oliver 这个水滴有512MB,还有其他一些小网站也在上面运行。尝试启动 mysql 时如何查看可用内存量?

标签: mysql wordpress ubuntu-14.04 digital-ocean


【解决方案1】:

您的 Droplet 没有足够的内存来启动 MySQL。请参阅错误 InnoDB: mmap(137363456 bytes) failed; errno 12 - MySQL 在尝试分配 ~130MB 内存时失败。
运行free -m 以检查有多少内存可供应用程序使用。

您可以通过两种方式解决此问题:

  1. 增加液滴的大小。这将花费您更多的钱。
  2. Add (more) swap space to your droplet. 这很可能会影响性能,但会为您省钱。

【讨论】:

  • 确实,我将Droplet的内存从512MB增加到1G,现在可以了...谢谢...
猜你喜欢
  • 2021-05-28
  • 1970-01-01
  • 2015-08-11
  • 2012-12-29
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2019-05-27
相关资源
最近更新 更多