如何在openSUSE上安装postgresql数据库

如何在openSUSE上安装postgresql数据库,第1张

我测试了在openSUSE 113上安装postgresql 846,也测试了在openSUSE 114上安装postgresql 903。步骤没有任何区别。

安装

zypper install postgresql-server

初始化

mkdir /usr/local/pgsql

mkdir /usr/local/pgsql/data

chown postgres /usr/local/pgsql/data

initdb -D /usr/local/pgsql/data (这个要用postgres用户执行)

开启服务

postgres -D /usr/local/pgsql/data 或者 pg_ctl -D /usr/local/pgsql/data -l logfile start

创建数据库及用户

psql postgres

create user pub password 'pub';

create database pgsql1 owner pub;

用新用户登录

psql -U pub pgsql1

create schema pub authorization pub;

如果在本机访问的话,这样就可以了。但是如果要在别的机子上访问postgresql的话还要做如下配置。

配置网络访问

1 如果防火墙打开的话,把postgresql服务加开Allowed Service列表里。

2 监听所有的访问。 修改/usr/local/pgsql/data/postgresqlconf,把监听localhost改成: listen_addresses = ''

3 设置可访问的IP地址。0是通配符。修改 /usr/local/pgsql/data/pg_hbaconf, 在最后一行加上 host all all 0000 0000 trust

PostgreSQL数据库手动初始化步骤:

1、创建用户postgres,密码同样是postgres:

net user postgres postgres /add

2、在数据库根目录下建立data目录:

C:\Program Files\PostgreSQL\93>md data

3、去掉administrator对data目录的权限:

C:\Program Files\PostgreSQL\93>cacls data /e /t /r administrator

处理的目录: C:\Program Files\PostgreSQL\93\data

4、将data目录的权限赋给postgres用户:

C:\Program Files\PostgreSQL\93>cacls data /e /t /g postgres:C

处理的目录: C:\Program Files\PostgreSQL\93\data

5、用postgres用户打开cmd

C:\Program Files\PostgreSQL\93>runas /user:postgres cmdexe

输入 postgres 的密码:

试图将 cmdexe 作为用户 "SURE-PC\postgres" 启动

6、进行初始化,初始化用户为postgres,字符集为utf8,locale为C:

C:\Program Files\PostgreSQL\93\bin>initdbexe -D /data -E utf8 --locale C -U

postgres

The files belonging to this database system will be owned by user "postgres"

This user must also own the server process

The database cluster will be initialized with locale "C"

The default text search configuration will be set to "english"

Data page checksums are disabled

fixing permissions on existing directory /data ok

creating subdirectories ok

selecting default max_connections 100

selecting default shared_buffers 128MB

creating configuration files ok

creating template1 database in /data/base/1 ok

initializing pg_authid ok

initializing dependencies ok

creating system views ok

loading system objects' descriptions ok

creating collations not supported on this platform

creating conversions ok

creating dictionaries ok

setting privileges on built-in objects ok

creating information schema ok

loading PL/pgSQL server-side language ok

vacuuming database template1 ok

copying template1 to template0 ok

copying template1 to postgres ok

syncing data to disk ok

WARNING: enabling "trust" authentication for local connections

You can change this by editing pg_hbaconf or using the option -A, or

--auth-local and --auth-host, the next time you run initdb

Success You can now start the database server using:

"postgres" -D "/data"

or

"pg_ctl" -D "/data" -l logfile start

C:\Program Files\PostgreSQL\93\bin>

7、启动数据库,进入客户端:

C:\Program Files\PostgreSQL\93\bin>"pg_ctl" -D "/data" start

server starting

C:\Program Files\PostgreSQL\93\bin>LOG: database system was shut down at 2014-

09-18 10:19:54 HKT

LOG: autovacuum launcher started

C:\Program Files\PostgreSQL\93\bin>LOG: database system is ready to accept con

nections

C:\Program Files\PostgreSQL\93\bin>psqlexe

psql (935)

Type "help" for help

postgres=#

8、初始化完成。

apt-get install 吧

或者yum

用repo里的稳

为啥第二天重新compile

是configure出问题还是make还是make install呢?

如果你用的debian系列系统,用apt-get命令安装postgresql,如果是red hat系列(比如rhel, centos等),请用yum命令安装。如果不行,aptitude purge删除干净。

你别用redhat 9了,那个太老了,内核和现在已经差好远了,打个比方,你在用Windows NT 4跑SQL Server 2008。哈哈,用Ubuntu 910 Server吧。

PgAdmin可以在 >

以上就是关于如何在openSUSE上安装postgresql数据库全部的内容,包括:如何在openSUSE上安装postgresql数据库、如何在windows下手动初始化PostgreSQL数据库、怎样在虚拟机上的linux建立postgresql数据库,然后在windows访问等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10080892.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-05
下一篇 2023-05-05

发表评论

登录后才能评论

评论列表(0条)

保存