postgres数据库的操作

postgres数据库的操作
1. 修改role密码 alter role postgres password 'postgres'; 2. 设置postgres远程连接 1). 修改listen addresses sudo vim /etc/postgresql/8.3/main/pg_hba.conf # listen_addresses = 'localhost' 设置为 listen_addresses = '*' 2). 添加ip sudo vim /etc/postgresql/8.3/main/postgresql.conf 在 最后一行添加 host all all 192.168.0.0/16 md5 3.数据库备份 pg_dump -h 192.168.4.217 --username admin RestaurantCenter >restaurantcenter1.sql 4. 恢复备份 psql -h 192.168.1.18 --username postgres RestaurantCenter < restaurantcenter1.sql

你可能感兴趣的:(postgres数据库的操作)