PostgreSQL 8.2.5 安裝為 Windows 服務 (Service)

來源:互聯網
上載者:User
有時候安裝 PostgreSQL 的 Windows 版本時會在建立 Windows 服務時失敗,取消“安裝為服務”的選項後,如何手工把它安裝成服務呢?

1. 首先檢查使用者,即啟動 PostgreSQL 服務的使用者,預設使用者是 postgres,通過“控制台”->“電腦管理”-> “本機使用者和組”檢查是否有 postgres 使用者,如果有則先刪除此使用者。

2. 通過命令列添加 postgres 使用者,如下:C:\>net user postgres pass /add /expires:never /passwordchg:no

上面的命令,建立 postgres 使用者,密碼為 pass,使用者帳號不到期,使用者不能修改密碼。

使用者建立成功後,將使用者從Users組裡刪除,如下:C:\>net localgroup users postgres /delete

3. 建立 PostgreSQL 服務,命令如下:(假設我們的資料庫建立在 E:\pgsql\data下,建立資料庫用 createdb 命令)D:\Program Files\PostgreSQL\8.2\bin>pg_ctl register -N PostgreSQL -U postgres -P pass -D E:\pgsql\data

4. 指定 postgres 使用者的存取權限,如下:D:\Program Files\PostgreSQL\8.2>cacls . /T /E /P postgres:R

上面的命令,設定 postgres 使用者對 D:\Program Files\PostgreSQL\8.2 目錄可讀。

E:\pgsql>cacls . /T /E /P postgres:R
E:\pgsql>cacls data /T /E /P postgres:C

上面的命令,設定 postgres 使用者對 E:\pgsql\data 目錄可更改(可寫)

5. 去啟動一下服務中的PostgreSQL試試看吧。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.