美文网首页
ubuntu16.04 安装nodejs nginx mongo

ubuntu16.04 安装nodejs nginx mongo

作者: 一城叶秋风 | 来源:发表于2019-02-13 19:56 被阅读0次

    安装nodejs

    // 第一步 
    curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
    // 第二步 安装 nodejs
    sudo apt-get install nodejs
    // 第三步 安装 cnpm
    npm install -g cnpm --registry=https://registry.npm.taobao.org
    

    nodejs就ok了

    安装nginx

    // 第一步 更新 软件列表
    sudo apt-get update
    // 第二步 安装NGINX
    sudo apt-get install nginx
    cd /etc/nginx/conf.d
    
    // nginx一些命令
    nginx -t
    nginx -s reload
    nginx -s stop
    // 不展示nginx 版本
    // nginx.conf server_tokens off;
    

    安装mongodb

    // -d 指定数据库
    // -u 指定用户
    // -p 用户密码
    // -c 指定的集合
    // -o 指定数据存在位置
    
    //设置权限
    db.createUser({user:"testuser",pwd:"testpass",roles:["readWrite"]})
    
    //备份数据
    mongodump -d admin -u admin -p 123456 -c books -o E:\bk
    
    //还原数据
    mongorestore --drop -d admin -u admin -p 123456 -c books C:\Users\ye\Desktop\books.bson
    
    //导入数据
    mongoimport --drop -d mytest -c user --file F:\bk\user.json
    
    //导出数据
    mongoexport -d mytest -c user -o F:\bk\user.json
    
    
    // ubuntu 16.04安装mongodb
    
    apt-get install mongodb
    

    相关文章

      网友评论

          本文标题:ubuntu16.04 安装nodejs nginx mongo

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