‘壹’ 如何远程连接POSTGRESQL数据库
安装PostgreSQL数据库之后,默认是只接受本地访问连接。如果想在其他主机上访问PostgreSQL数据库服务器,就需要进行相 应的配置。配置远程连接PostgreSQL数据库的步骤很简单,只需要修改data目录下的pg_hba.conf和postgresql.conf, 其中pg_hba.conf是用来配置对数据库的访问权限,postgresql.conf文件用来配置PostgreSQL数据库服务器的相应的参数。 下面介绍配置的步骤:
1.修改pg_hba.conf文件,配置用户的访问权限:
# TYPE DATABASE USER CIDR-ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all trust
# IPv4 local connections:
host all all 127.0.0.1/32 trust
host all all 192.168.1.0/24 md5
# IPv6 local connections:
host all all ::1/128 trust
其中红色标识的内容为新添加的内容,表示允许网段192.168.1.0上的所有主机使用所有合法的数据库用户名访问数据库,并提供加密的密码验 证。在我们的环境中,我们需要在主机192.168.1.5上使用postgres用户访问192.168.1.9上的PostgreSQL数据库。
2.修改postgresql.conf文件,将数据库服务器的监听模式修改为监听所有主机发出的连接请求。
定位到#listen_addresses='localhost'。PostgreSQL安装完成后,默认是只接受来在本机localhost的连接请 求,通过将改行内容修改为listen_addresses='*'来允许数据库服务器监听来自任何主机的连接请求:
listen_addresses = '*' # what IP address(es) to listen on;
# comma-separated list of addresses;
# defaults to 'localhost', '*' = all
# (change requires restart)
修改之后,保存并退出,然后重起数据库,就可以在在远程机器上访问PostgreSQL数据库了。
另外,数据库管理小贴士:
matrix数据库使用的是PostgreSQL数据库。你可以安装一个类似phpmyadmin的管理
‘贰’ .NET2005如何连接PgSQL数据库
下载后安装在.net的安装目录下。会在.NET2005工具栏出现PostgreSQLDirect组件包含了PgSqlConnection
PgSqlCommand
PgSqlDataAdapter
等控件,然后在项目里添加引用:CoreLab.Data和CoreLab.PostgreSql,可以拖放控件连接数据库,使用方法2005的和自带控件基本相同。也可以写代码连接数据库,具体代码如下:
PgSqlDataSetds=newPgSqlDataSet();
stringsql="select*fromonetestwheretid=3000";
PgSqlConnectioncon=newPgSqlConnectio
("userid=postgres;Password=111111;
host=LOCALHOST;database=postgres");
PgSqlDataAdapterda=newPgSqlDataAdapter(sql,con);
da.Fill(ds);
this.dataGridView1.DataSource=ds;
this.dataGridView1.DataMember=ds.Tables[0].ToString();
方法二:
下载:Npgsql1.0-bin-ms2.0.zip。
解压缩后将其中的两个dll文件复制到工程目录下(和bin同级),然后在项目里添加引:Mono.Security和NPgSQL,在代码里添加using
NpgSQL;具体代码如下:
stringsql="select*fromonetestwheretid=3000";
NpgsqlConnectioncon=newNpgsqlConnection
("server=localhost;uid=postgres;pwd=111111;database=postgres");
NpgsqlDataAdapterda=newNpgsqlDataAdapter(sql,con);
DataSetds=newDataSet();
‘叁’ 如何让erlang代理服务器连接到postgresql数据库
一、背景介绍:
本文所述PostgreSQL服务端运行在RedHat linux上,IP为:192.168.230.128
客户端安装在Windows XP上, IP为:192.168.230.1
二、配置方法:
1.修改服务端/opt/postgresql/data/postgresql.conf文件,将:
#listen_address='localhost'
改成
listen_address='*'
2.修改/opt/postgresql/data/gp_hba.conf文件:
在其中增加客户端的ip,如下,注意最后一行:
# TYPE DATABASE USER CIDR-ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all trust
# IPv4 local connections:
host all all 127.0.0.1/32 trust
# IPv6 local connections:
host all all ::1/128 trust
#kevin add
# IPv4 local connections:
host all all 192.168.230.1/32 trust
3.重启PG服务:
[postgres@localhost data]$ pg_ctl restart
waiting for server to shut down....LOG: received smart shutdown request
LOG: autovacuum launcher shutting down
LOG: shutting down
LOG: database system is shut down
done
server stopped
server starting
[postgres@localhost data]$ LOG: database system was shut down at 2011-07-09 14:54:29 CST
LOG: autovacuum launcher started
LOG: database system is ready to accept connections
[postgres@localhost data]$
4. 使用客户端连接,配置如下:
5.点击“确定”进行连接。
‘肆’ .NET2005如何连接PgSQL数据库
下载后安装在.net的安装目录下。会在.NET2005工具栏出现PostgreSQLDirect组件包含了PgSqlConnection PgSqlCommand PgSqlDataAdapter 等控件,然后在项目里添加引用:CoreLab.Data和CoreLab.PostgreSql,可以拖放控件连接数据库,使用方法2005的和自带控件基本相同。也可以写代码连接数据库,具体代码如下: PgSqlDataSetds=newPgSqlDataSet(); stringsql="select*fromonetestwheretid=3000"; PgSqlConnectioncon=newPgSqlConnectio ("userid=postgres;Password=111111; host=LOCALHOST;database=postgres"); PgSqlDataAdapterda=newPgSqlDataAdapter(sql,con); da.Fill(ds); this.dataGridView1.DataSource=ds; this.dataGridView1.DataMember=ds.Tables[0].ToString(); 方法二: 下载:Npgsql1.0-bin-ms2.0.zip。 解压缩后将其中的两个dll文件复制到工程目录下(和bin同级),然后在项目里添加引:Mono.Security和NPgSQL,在代码里添加using NpgSQL;具体代码如下: stringsql="select*fromonetestwheretid=3000"; NpgsqlConnectioncon=newNpgsqlConnection ("server=localhost;uid=postgres;pwd=111111;database=postgres"); NpgsqlDataAdapterda=newNpgsqlDataAdapter(sql,con); DataSetds=newDataSet();
‘伍’ 如何用linux连接pgsql
不考虑系统版本、安装的系统是不是最小化安装、pgsql版本等问题,那么正常应该是下面的安装方法就可以成功的,如果想可以远程连接,则要在防火墙里开放端口5432。
三、安装PostgreSQL
# cd /usr/local/src/
# tar zxf postgresql-9.2.4.tar.gz
# cd postgresql-9.2.4
# ./configure --prefix=/usr/local/pgsql
# make
# make install
//和mysql一样建立组和用户
# groupadd postgres
# useradd -g postgres postgres
‘陆’ 怎么链接服务器上的数据库
需要在“开始”-“程序”里设置一下。
‘柒’ 怎么链接服务器上的数据库
需要在“开始”-“程序”里设置一下。