📌  相关文章
📜  如何在 manjaro 中安装 postgresql - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:04.841000             🧑  作者: Mango

代码示例1
sudo pacman -S yay
yay -S postgresql pgadmin4

sudo -u postgres -i
initdb --locale $LANG -E UTF8 -D '/var/lib/postgres/data/'
exit

sudo systemctl enable --now postgresql
sudo systemctl status postgresql