Postgresql集群初始化

发布于 2024-10-03 16:53:55 字数 124 浏览 2 评论 0原文

SQL 分发预初始化的目录集群,但对于 postgresql,我们需要使用 initdb 和网络服务帐户初始化集群。它在少数情况下会失败并造成一些痛苦!

可以自己初始化集群并分发预初始化的集群吗?

谢谢

SQL distributes pre-initialized catalog cluster but for postgresql we need initialize cluster using initdb and a network service account. It fails in few cases and causing bit of misery!

Can initialize cluster ourselves and distribute pre-initialized cluster?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷心人i 2024-10-10 16:53:55

“集群”(或数据目录)取决于操作系统和体系结构。因此,在 32 位 Linux 上使用 initdb 初始化的数据目录将无法在 64 位 Windows 上运行。

但你不需要这样做。仅当您想将 PostgreSQL 作为服务运行时,才需要服务帐户。

您可以轻松地使用 ZIP 发行版来安装和启动 Postgres,而无需完整的安装或服务帐户。

执行此操作的步骤如下:

  1. 解压缩二进制文件
  2. 运行 initdb,将其指向应创建数据库集群的目录。
  3. 运行 pg_ctl 启动服务器。

请注意,步骤 2) 和 3) 必须使用同一用户运行,否则服务器将没有权限写入数据目录。

这些步骤可以轻松地放入批处理文件或 shell 脚本中。

The "cluster" (or data directory) depends on the operating system and the architecture. So a data directory that was initialized with initdb on a 32bit Linux will not work on a 64bit Windows.

But you don't need to do that. A service account is only necessary if you want to run PostgreSQL as a service.

You can easily use the ZIP distribution to install and start Postgres without the need for a full-fledge installation or a service account.

The steps to do so are:

  1. Unzip the binaries
  2. Run initdb pointing it to the directory where the database cluster should be created.
  3. Run pg_ctl to start the server.

Note that the steps 2) and 3) must be run using the same user, otherwise the server will have no priviliges to write to the data directory.

These steps can easily be put into a batch file or shell script.

一绘本一梦想 2024-10-10 16:53:55

很难理解你的问题,但我认为你正在谈论 PostgreSQL 的 Windows 安装程序。正确的?什么版本、什么安装程序、错误消息、日志记录等如何?

安装程序可以在此处找到。

SQL = 数据库语言,SQL Server =
微软数据库产品

Hard to understand your question, but I think you are talking about the Windows installer for PostgreSQL. Right? What version, what installer, what about error messages, loggings, etc. ?

The installer can be found here.

SQL = database language, SQL Server =
Microsoft database product

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文