zoukankan      html  css  js  c++  java
  • mysql启动不起来

    在刚编译安装完成mysql,启动mysql时报了下面错误:

    /etc/init.d/mysqld start
    Starting MySQL... ERROR! The server quit without updating PID file (/application/mysql-5.6.40/data/ZabbixServer.pid).

    显示是没有mysq的pid文件

    创建之后还是启动不起来,报上述错误。

    查看mysql错误日志:

    2018-09-14 08:28:25 2524 [Note] Plugin 'FEDERATED' is disabled.
    2018-09-14 08:28:25 2524 [Note] InnoDB: Using atomics to ref count buffer pool pages
    2018-09-14 08:28:25 2524 [Note] InnoDB: The InnoDB memory heap is disabled
    2018-09-14 08:28:25 2524 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
    2018-09-14 08:28:25 2524 [Note] InnoDB: Memory barrier is not used
    2018-09-14 08:28:25 2524 [Note] InnoDB: Compressed tables use zlib 1.2.3
    2018-09-14 08:28:25 2524 [Note] InnoDB: Using Linux native AIO
    2018-09-14 08:28:25 2524 [Note] InnoDB: Using CPU crc32 instructions
    2018-09-14 08:28:25 2524 [Note] InnoDB: Initializing buffer pool, size = 128.0M
    2018-09-14 08:28:25 2524 [Note] InnoDB: Completed initialization of buffer pool
    2018-09-14 08:28:25 2524 [Note] InnoDB: Highest supported file format is Barracuda.
    2018-09-14 08:28:25 2524 [Note] InnoDB: 128 rollback segment(s) are active.
    2018-09-14 08:28:25 2524 [Note] InnoDB: Waiting for purge to start
    2018-09-14 08:28:25 2524 [Note] InnoDB: 5.6.40 started; log sequence number 1626087
    2018-09-14 08:28:25 2524 [Note] Server hostname (bind-address): '*'; port: 3306
    2018-09-14 08:28:25 2524 [Note] IPv6 is available.
    2018-09-14 08:28:25 2524 [Note]   - '::' resolves to '::';
    2018-09-14 08:28:25 2524 [Note] Server socket created on IP: '::'.
    2018-09-14 08:28:25 2524 [ERROR] Can't start server : Bind on unix socket: Permission denie
    d
    2018-09-14 08:28:25 2524 [ERROR] Do you already have another mysqld server running on socke
    t: /application/mysql-5.6.40/tmp/mysql.sock ?
    2018-09-14 08:28:25 2524 [ERROR] Aborting

    socket套接字没有权限;那就加上权限chmod 777 tmp

    重启:/etc/init.d/mysqld start

    Starting MySQL. SUCCESS!

    启动成功,

    提示:遇到错误,首先要学会看报错日志,判断问题出现在什么地方,然后再上网查阅解决办法。

  • 相关阅读:
    js-jQuery对象与dom对象相互转换
    django模板{%for%}中的forloop的应用
    ubuntu MySQL数据库输入中文乱码 解决方案
    多线程下的神奇的IOCP
    类库服务寄宿到WebHost
    细说Asp.Net WebAPI消息处理管道
    项目发布Debug和Release版的区别
    linux yum命令详解
    Linux系统如何查看版本信息
    Linux查看物理CPU个数、核数、逻辑CPU个数
  • 原文地址:https://www.cnblogs.com/sykblogs/p/9644474.html
Copyright © 2011-2022 走看看