2016-01-21 142 views
30

我在Linux Mint機器上安裝了Postgresql 9.3和9.4。我怎樣才能重新啓動postgresql 9.4?一起重啓兩個版本的方法也很好。如何重新啓動Postgresql

+0

您是否搜索過網絡? http://www.codeproject.com/Articles/898303/Installing-and-Configuring-PostgreSQL-on-Linux-Min – kometen

+0

我建議將你的數據遷移到9.4,然後刪除9.3安裝。 –

+0

@kometen引用的文章沒有提供選擇性地啓動和停止每個實例的方法。 – Enzo

回答

53

試試這個,作爲root(也許你可以使用sudosu):

/etc/init.d/postgresql restart 

不帶任何參數的腳本還爲您提供了有關如何重新啓動某個特定版本

[[email protected] ~] /etc/init.d/postgresql 
Usage: /etc/init.d/postgresql {start|stop|restart|reload|force-reload|status} [version ..] 

同樣的提示,如果您使用的是systemd,您還可以使用service工具:

[[email protected] ~] service postgresql 
Usage: /etc/init.d/postgresql {start|stop|restart|reload|force reload|status} [version ..] 
+0

你能舉個例子嗎?版本號似乎沒有任何影響。 – FeedTheWeb

+0

您是否嘗試過,例如「/etc/init.d/postgresql status 10」? – Enzo