Stop postgresql

PostgreSQL is a powerful, open source relational database system.It offers an alternative to other database systems, such mySQL.

In this case, i want to stop postgresql, both services and system startup
# chkconfig --list
# chkconfig --levels 235 postgresql off
# service postgresql stop

To turn on system startup and start postgresql

# chkconfig --levels 235 postgresql on
# service postgresql start

Leave a Reply