美文网首页
linux(centos7)下设置mongodb开机启动(服务的

linux(centos7)下设置mongodb开机启动(服务的

作者: 21度C | 来源:发表于2020-12-25 09:16 被阅读0次

    MongoDB安装教程

    mongodb的安装比较简单,这里不作介绍,不动安装的朋友可以查看菜鸟教程,这里主要介绍如何设置mongodb开机启动

    Linux 平台安装 MongoDB | 菜鸟教程

    设置mongodb开机自动启动服务

    cd /lib/systemd/system 切换到/lib/systemd/system目录下

    执行vi mongodb.service新建mongodb.service

    [Unit]
    
    Description=mongodb
    
    After=network.target remote-fs.target nss-lookup.target
    
    [Service]
    
    Type=forking
    
    ExecStart=/usr/local/mongodb/bin/mongod --config /usr/local/mongodb/mongodb.conf
    
    ExecReload=/bin/kill -s HUP $MAINPID
    
    ExecStop=/usr/local/mongodb/bin/mongod --shutdown --config /usr/local/mongodb/mongodb.conf
    
    PrivateTmp=true
    
    [Install]
    
    WantedBy=multi-user.target
    

    mongodb.service服务
    设置mongodb.service权限

    chmod 754 mongodb.service

    系统mongodb.service操作命令

    启动服务
    systemctl start mongodb.service
    关闭服务
    systemctl stop mongodb.service
    开机启动
    systemctl enable mongodb.service

    相关文章

      网友评论

          本文标题:linux(centos7)下设置mongodb开机启动(服务的

          本文链接:https://www.haomeiwen.com/subject/bmlbnktx.html