系统环境:
CentOS 6.4 64bit
在PostgreSQL 9.3的源码包中,已经有linux系统的启动示例,就是 postgresql-9.3.0/contrib/start-scripts/linux 这个文件。
具体步骤:
1. cp postgresql-9.3.0/contrib/start-scripts/linux /etc/init.d/postgresql
2.vim /etc/init.d/postgresql
修改 prefix=/postgresql 为实际的安装目录,即$PGHOME
修改 PGDATA="/pgdata" 为实际的数据库文件目录,即$PGDATA
3.chmod a+x /etc/init.d/postgresql
4.chkconfig --add postgresql
5.chkconfig --level 2345 postgresql on
阅读(2777) | 评论(0) | 转发(0) |