Failed to start mongod.service: Unit not found
Posted 瓶子2333
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Failed to start mongod.service: Unit not found相关的知识,希望对你有一定的参考价值。
其实自己用惯的是mysql,然后项目最后一步完善数据读写的部分,本来打算用mysql的,然而在centOS系统上发现安装总是出问题,后来查找一下资料,发现centOS系统上一般用的是Mariadb,这是一个MYSQL的分支,说是因为甲骨文收购了MYSQL后,为了避免闭源的风险,社区开始使用并维护这个MariaDB。
然后我安装Maria,一直卡在那里。。。
可是话说为什么我一个前端,要搞这些东西呢。。。
然后我还是退出来使用mongodb算了。。。
然后启动mongodb的时候报这个错误:Failed to start mongod.service: Unit not found
此刻的心情。。。。
再是一番查阅,看了好多帖子终于找到解决方法:
1创建配置文件:
sudo nano /etc/systemd/system/mongodb.service
2.在里面追加文本:
1 [Unit] 2 Description=High-performance, schema-free document-oriented database 3 After=network.target 4 5 [Service] 6 User=mongodb 7 ExecStart=/usr/bin/mongod --quiet --config /etc/mongod.conf 8 9 [Install] 10 WantedBy=multi-user.target
3.按ctrl+X退出
4.启动服务
sudo systemctl start mongodb sudo systemctl status mongodb
5.让它永久启动
sudo systemctl enable mongodb
莫名心累。。。
附一篇在centOS安装MYSQL的帖子:
centos7 mysql数据库安装和配置
以上是关于Failed to start mongod.service: Unit not found的主要内容,如果未能解决你的问题,请参考以下文章
启动项目报错——A child container failed during start——解决Failed to start component [StandardEngine[Catalina]
CentOS 7 防火墙 出现Failed to start iptables.service: Unit iptables.service failed to load
zookeeper启动时Starting zookeeper ... FAILED TO START问题处理
service docker start 报错 :Failed to start docker.se
The required Server component failed to start so Tomcat is unable to start解决之一