NAME

initlocation - 建立一個從屬的 PostgreSQL資料庫儲存區
 

SYNOPSIS

initlocation directory

DESCRIPTION 描述

initlocation 建立一個新的PostgreSQL從屬資料庫儲存區。參閱 CREATE DATABASE [ create_database(7)] 裡關於如何管理和使用從屬儲存區的討論。 如果引數不包含一個斜槓而且也不是一個有效的路徑, 它會被認為是一個環境變數而引用。參考下面的例子。

為使用這條命令,你必須以資料庫超級使用者登入(例如,使用 su)

EXAMPLES 例子


用環境變數在一個可選位置建立一個數據庫:
 
$  export PGDATA2=/opt/postgres/data
 
啟動並停止postmaster這樣它就能看到PGDATA2環境變數。 系統必須配置為 postmaster每次啟動都能看到PGDATA2。 最後:
 
$  initlocation PGDATA2
$  createdb -D PGDATA2 testdb
 

或者,如果允許你使用絕對路徑,你可以這樣:
 
$  initlocation /opt/postgres/data
$  createdb -D /opt/postgres/data/testdb testdb
 

譯者

Postgresql 中文網站 何偉平 <[email protected]>

本頁面中文版由中文 man 手冊頁計劃提供。
 
中文 man 手冊頁計劃: https://github.com/man-pages-zh/manpages-zh

Recommended readings

Pages related to initlocation you should read also: