美文网首页
postgresql创建用户与数据库

postgresql创建用户与数据库

作者: 岛在深海处 | 来源:发表于2018-05-19 13:57 被阅读0次

    安装完成之后,第一次使用PostgreSQL之前需要创建一个用户和一个数据库

    sudo -u postgres createuser user_name
    sudo -u postgres createdb -O user_name database_name</code>

    之后在终端中输入如下指令就能开始使用数据库了

    psql database_name

    其他功能

    //重启psql数据库
    sudo service postgresql restart
    
    //数据库配置文件
    /etc/postgresql/9.3/main/postgresql.conf
    启用或添加listen_addresses = '*'
    /etc/postgresql/9.3/main/pg_hba.conf
    并添加您的网络或主机地址:
    host    all             all             192.168.1.0/24          md5
    

    数据库备份

    pg_dump -d dbname -U username -h 127.0.0.1 > luyou_backend_c.sql
    

    数据库导入

    psql -d luyou_backend -h 127.0.0.1 -U luyou_user < C:\Users\Administrator\Desktop\backend\luyou_backend_c.sql
    或者
    pg_restore -d luyou_backend -h 127.0.0.1 -U luyou_user < C:\Users\Administrator\Desktop\backend\luyou_backend_c.sql
    

    [database] postgresql 常用操作
    Django 数据迁移

    相关文章

      网友评论

          本文标题:postgresql创建用户与数据库

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