start postgres service in linux code example
Example 1: how to run postgresql in linux
sudo service postgresql-9.3 initdb
sudo service postgresql-9.3 start
Example 2: start postgres server
brew services stop postgresql
sudo service postgresql-9.3 initdb
sudo service postgresql-9.3 start
brew services stop postgresql