yum报Segmentation fault错误

[root@dev ~]# yum install php54
Freeing read locks for locker 0x13: 7827/140579576342272
Freeing read locks for locker 0x15: 7827/140579576342272
Loaded plugins: auto-update-debuginfo, fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
 * remi-safe: mirrors.tuna.tsinghua.edu.cn
Segmentation fault
[root@dev ~]# yum update
Loaded plugins: auto-update-debuginfo, fastestmirror
Setting up Update Process
Loading mirror speeds from cached hostfile
 * remi-safe: mirrors.tuna.tsinghua.edu.cn
Segmentation fault

今天打算装个扩展包,使用yum发现报错了

根据提示发现是remi源引发的错误,于是注释了remi源并yum clean all

 

clean all之后发现仍然报错

[root@dev ~]# yum list php54*
Loaded plugins: auto-update-debuginfo, fastestmirror
Determining fastest mirrors
base                                                                                                                      | 3.7 kB     00:00     
base/primary_db                                                                                                           | 4.7 MB     00:52     
debug                                                                                                                     | 2.5 kB     00:00     
debug/primary_db                                                                                                          | 1.6 MB     00:47     
epel                                                                                                                      | 4.3 kB     00:00     
epel/primary_db                                                                                                           | 5.8 MB     00:04     
extras                                                                                                                    | 3.4 kB     00:00     
extras/primary_db                                                                                                         |  37 kB     00:01     
hop5                                                                                                                      | 2.9 kB     00:01     
hop5/primary_db                                                                                                           | 166 kB     00:15     
ngodb                                                                                                                     |  951 B     00:00     
ngodb/primary                                                                                                             |  45 kB     00:00     
Segmentation fault

发现mongoDB没有启动,于是抱着试一试的心态把mongoDB启动起来…

[root@dev ~]# service mongod restart
Stopping mongod: [FAILED]
Starting mongod: about to fork child process, waiting until server is ready for connections.
forked process: 1630
all output going to: /var/log/mongo/mongod.log
child process started successfully, parent exiting
[  OK  ]
[root@dev ~]# chkconfig mongod on

问题解决