免安装版postgres服务的“描述”怎么做
发布网友
发布时间:2022-04-30 22:37
我来回答
共2个回答
热心网友
时间:2022-05-01 00:06
提示说什么不能连接到postgres 数据库
错误:在Administrator这个用户的 密码验证失败!!
你最好有图形界面登录上去 才行
下面是一个例子:
希望可以帮你吧
在linux系统中创建postgres数据库- -
下面是创建数据库的例子和说明,数据库名为TestDB
1. in command line:
以postgres用户登录:
#su - postgres
2.初始化数据库:
$initdb
3.修改/var/lib/pgsql/data目录下的pg_hba.conf和postgresql.conf:
1)pg_hba.conf
将# IPv4-style local connections下面的内容换成:
# IPv4-style local connections:
host all all 127.0.0.1 255.255.255.255 trust
host all all 0.0.0.0 0.0.0.0 trust
2)postgresql.conf
将tcpip_socket 及max_connections改成:
tcpip_socket = true #采用tcpip连接的方式
max_connections = 100 #最大连结数
4.在service列表里,重新启动postgresql
5. 创建数据库TestDB,使用unicode编码
$createdb -E unicode -e TestDB
6.导入数据库表结构和数据(事先准备好sql文件output.sql)
$psql TestDB </var/lib/pgsql/data/output.sql
ok,导入完毕,然后使用pgadmin3客户端工具即可访问, 数据库名为TestDB, 用户名为postgres,密码为postgres,也可以不要密码。
如果Linux安装了防火墙,请到security level画面去禁止防火墙,以便客户端可以访问.
如果要导出表结构及数据,请使用命令:
pg_mp -d -f output.sql TestDB -h 192.168.0.1 -U postgres -P postgres
其中TestDB为数据库名称, 192.168.0.1为数据库服务器IP地址, postgres分别为数据库用户和密码
另外,如果有sql文件如output.sql需要事先从usb盘拷贝到linux,请参照如下步骤装载usb:
1.察看Linux是否已经正确安装usb驱动程序;
2.运行 fdisk -l /dev/sda 看系统是否能找到usb盘
3.创建usb目录
#mkdir /mnt/usb
4.装载usb设备
#mount -t msdos /dev/sda1 /mnt/usb
如果您的文件系统为fat32,则使用:
#mount -t vfat /dev/sda1 /mnt/usb
5.查看usb存储器中的文件:
ls /mnt/usb
热心网友
时间:2022-05-01 01:24
专业人事那有时间那这回答你呀
问题有人回就不错拉