Linux安装PostgreSql
在Linux上安装PostgreSQL的步骤取决于你所使用的Linux发行版。以下是在基于Debian的系统(如Ubuntu)和基于RPM的系统(如CentOS)上安装PostgreSQL的简要步骤。
对于Ubuntu/Debian系统:
更新包索引:
sudo apt-get update
安装PostgreSQL:
sudo apt-get install postgresql postgresql-contrib
对于CentOS/RHEL系统:
启用PostgreSQL Yum仓库:
sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-$(rpm -E %{rhel})-x86_64/pgdg-redhat-repo-latest.noarch.rpm
清除缓存并更新仓库:
sudo yum clean all sudo yum makecache
安装PostgreSQL:
sudo yum install -y postgresql12 postgresql12-server postgresql12-contrib
注意:上面的命令安装了PostgreSQL 12版本,根据需要可以安装其他版本,如
postgresql11
、postgresql13
等。初始化数据库并启动服务:
sudo /usr/pgsql-12/bin/postgresql-12-setup initdb sudo systemctl enable postgresql-12 sudo systemctl start postgresql-12
安装完成后,你可以使用如下命令来验证PostgreSQL是否正在运行:
sudo systemctl status postgresql-12
或者通过切换到postgres用户来访问数据库:
sudo -i -u postgres
psql
以上命令适用于基本安装和启动PostgreSQL。根据具体需求,你可能需要配置PostgreSQL以允许远程连接、设置用户权限、调整配置文件等。
评论已关闭