1. 程式人生 > >non-root用戶執行psql的問題

non-root用戶執行psql的問題

perm 發現 一個 gin res 不可訪問 而是 fail usr

安裝postgresql後,普通用戶執行psql報錯:
‘‘‘
Can‘t locate strict.pm: /usr/local/lib/x86_64-linux-gnu/perl/5.22.1/strict.pm: Permission denied at /usr/bin/psql line 19.
BEGIN failed--compilation aborted at /usr/bin/psql line 19.
‘‘‘

雖然strict.pm在/usr/lib下而不是/usr/local/lib下,但是當perl加載模塊遇到路徑不可訪問後,不會再繼續搜索其它路徑,而是直接拋出錯誤。檢查發現是由於/usr/local目錄權限設置成了700, 屬主和屬組被設置為了另一個用戶。

更正/usr/local目錄權限後正常執行。

non-root用戶執行psql的問題