【全棧項目上線(vue+node+mongodb)】常見問題收集(持續更新)

【全棧項目上線(vue+node+mongodb)】常見問題收集(持續更新),有問題在下面留言。

Failed to start mongod.service: Unit mongod.service not found.

須要手動新建/lib/systemd/system/mongod.service文件,並寫入下面內容:vue

編輯文件 /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-orgnode

clipboard.png

解決方案

執行如下命令

cat /etc/hostname

把主機名字查出來mongodb

而後添加到vim

vim /etc/hosts

這個文件的localhost 後面 加個空格隔開ui

clipboard.png

相關文章
相關標籤/搜索