修改postgresql存儲目錄:
sudo rsync -av /var/opt/gitlab/postgresql /data/gitlab/
修改 /etc/gitlab/gitlab.rb
postgresql[‘data_dir'] = “/data/gitlab/postgresql/data”
postgresql[‘dir'] = “/data/gitlab/postgresql”
postgresql[‘home'] = “/data/gitlab/postgresql”
重新加載配置,并重啟gitlab
gitlab-ctl reconfigure
gitlab-ctl restart
注意:
保留原位置目錄 /var/opt/gitlab/postgresql (會創(chuàng)建 s.PGSQL.5432 文件)
補充:Postgresql修改存儲位置注意事項
1、修改postgresql.conf文件中的data項內(nèi)容,指定自己要存儲數(shù)據(jù)的文件夾。
2、將修改后的文件夾的屬組和屬主都改成postgre
3、將修改后的文件夾的權(quán)限改成0700,即chmod 0700 文件夾路徑
以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。如有錯誤或未考慮完全的地方,望不吝賜教。
您可能感興趣的文章:- PostgreSQL 如何修改文本類型字段的存儲方式
- PostgreSQL存儲過程用法實戰(zhàn)詳解
- 基于postgresql行級鎖for update測試
- Postgresql 存儲過程(plpgsql)兩層for循環(huán)的操作