mysql5.7+pid+file_can't create PID file问题处理

今天在启动MYSQL数据库时,报如下错误:

[root@ora10g mysql]# ./bin/mysqld_safe --user=mysql &

[1] 4005

[root@ora10g mysql]# 101209 16:37:19 mysqld_safe Logging to '/var/log/mysqld.log'.

[root@ora10g mysql]# 101209 16:37:20 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql

[root@ora10g mysql]#

[root@ora10g mysql]#

[root@ora10g mysql]# 101209 16:37:25 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended

[1]+  Done                    ./bin/mysqld_safe --user=mysql

[root@ora10g mysql]#

[root@ora10g mysql]#

[root@ora10g mysql]# more /var/run/mysqld/mysqld.pid

/var/run/mysqld/mysqld.pid: No such file or directory

[root@ora10g mysql]# more /var/log/mysqld.log

101209 16:37:20 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql

101209 16:37:20 InnoDB: The InnoDB memory heap is disabled

101209 16:37:20 InnoDB: Mutexes and rw_locks use InnoDB's own implementation

101209 16:37:20 InnoDB: Compressed tables use zlib 1.2.3

101209 16:37:20 InnoDB: Initializing buffer pool, size = 128.0M

101209 16:37:20 InnoDB: Completed initialization of buffer pool

InnoDB: The first specified data file ./ibdata1 did not exist:

InnoDB: a new database to be created!

101209 16:37:21  InnoDB: Setting file ./ibdata1 size to 10 MB

InnoDB: Database physically writes the file full: wait...

101209 16:37:22  InnoDB: Log file ./ib_logfile0 did not exist: new to be created

InnoDB: Setting log file ./ib_logfile0 size to 5 MB

InnoDB: Database physically writes the file full: wait...

101209 16:37:22  InnoDB: Log file ./ib_logfile1 did not exist: new to be created

InnoDB: Setting log file ./ib_logfile1 size to 5 MB

InnoDB: Database physically writes the file full: wait...

InnoDB: Doublewrite buffer not found: creating new

InnoDB: Doublewrite buffer created

InnoDB: 127 rollback segment(s) active.

InnoDB: Creating foreign key constraint system tables

InnoDB: Foreign key constraint system tables created

101209 16:37:24  InnoDB: Waiting for the background threads to start

101209 16:37:25 InnoDB: 1.1.5 started; log sequence number 0

101209 16:37:25 [ERROR] /usr/local/mysql/bin/mysqld: Can't create/write to file '/var/run/mysqld/mysqld.pid' (Errcode: 2)

101209 16:37:25 [ERROR] Can't start server: can't create PID file: No such file or directory

101209 16:37:25 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended

从表面上来看,这应该是访问权限不够,确认:

1、到/var/run目录下查看:

[root@ora10g mysql]# cd /var/run

[root@ora10g run]# ls -l mysqld*

ls: mysqld*: No such file or directory

2、创建该目录,并将其权限赋给mysql用户

[root@ora10g run]# mkdir mysqld

[root@ora10g run]# cd mysqld

[root@ora10g mysqld]# ls -l

total 0

[root@ora10g mysqld]# cd ..

[root@ora10g run]# chown -R mysql:mysql /var/run/mysqld

[root@ora10g run]#

3、启动mysql数据库进程

[root@ora10g run]# cd /usr/local/mysql

[root@ora10g mysql]# bin/mysqld_safe --user=mysql &

[1] 4350

[root@ora10g mysql]# 101209 16:46:00 mysqld_safe Logging to '/var/log/mysqld.log'.

101209 16:46:00 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql

4、确认

[root@ora10g mysql]# tail -10f /var/log/mysqld.log

InnoDB: Restoring possible half-written data pages from the doublewrite

InnoDB: buffer...

InnoDB: Doing recovery: scanned up to log sequence number 1595675

101209 16:46:00  InnoDB: Starting an apply batch of log records to the database...

InnoDB: Progress in percents: 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99

InnoDB: Apply batch completed

101209 16:46:00 InnoDB: 1.1.5 started; log sequence number 1595675

101209 16:46:00 [Note] Event Scheduler: Loaded 0 events

101209 16:46:00 [Note] /usr/local/mysql/bin/mysqld: ready for connections.

Version: '5.5.9'  socket: '/var/lib/mysql/mysql.sock'  port: 3306  Source distribution

[root@ora10g mysql]# mysql

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 1

Server version: 5.5.9 Source distribution

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> show databases;

+--------------------+

| Database           |

+--------------------+

| information_schema |

| mysql              |

| performance_schema |

| test               |

+--------------------+

4 rows in set (0.00 sec)

mysql> \q

Bye

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值