【全栈项目上线(vue+node+mongodb)】常见问题收集(持续更新),有问题在下面留言。
Failed to start mongod.service: Unit mongod.service not found.
需要手动新建/lib/systemd/system/mongod.service文件,并写入下面内容:
编辑文件 /lib/systemd/system/mongod.service
vim /lib/systemd/system/mongod.service
把下面文件写入里面
[Unit]
Description=High-performance, schema-free document-oriented database
After=network.target
Documentation=https://docs.mongodb.org/manual
[Service]
User=mongodb
Group=mongodb
ExecStart=/usr/bin/mongod --quiet --config /etc/mongod.conf
[Install]
WantedBy=multi-user.target
然后执行 (激活mongod service)
sudo systemctl enable mongod
启动、重启和关闭命令
sudo service mongod start
sudo service mongod restart
sudo service mongod stop
unable to resolve host iZ2ze4xswj2tx5xmtq0f5pZ 主机名字不能解析
sudo: unable to resolve host iZ2ze4xswj2tx5xmtq0f5pZ
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package mongodb-org
解决方案
执行以下命令
cat /etc/hostname
把主机名字查出来
然后添加到
vim /etc/hosts
这个文件的localhost 后面 加个空格隔开
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。