When I am using
postgres -D /usr/local/pgsql/data
to start the postgresql
progress, I send a ctrl+z
signal to stop it.
And now when I used createuser
and psql
, it has no response.
what can I do?
When I am using
postgres -D /usr/local/pgsql/data
to start the postgresql
progress, I send a ctrl+z
signal to stop it.
And now when I used createuser
and psql
, it has no response.
what can I do?
After you press ctrl+z
it will pause execution of the current process and move it to the background. If you wish to start running it in the background, then type bg
after pressing ctrl-z
.
If you wish to have it run in the foreground (and take away your ability to enter new commands into the prompt), type fg
after pressing ctrl-z
If you wish to run it in the background right from the beginning use &
at the end of your command.
postgres -D /usr/local/pgsql/data &
After you press ctrl+z
it will pause execution of the current process and move it to the background. If you wish to start running it in the background, then type bg
after pressing ctrl-z
.
If you wish to have it run in the foreground (and take away your ability to enter new commands into the prompt), type fg
after pressing ctrl-z
If you wish to run it in the background right from the beginning use &
at the end of your command.
postgres -D /usr/local/pgsql/data &
If you send a process to background usning ctrl-z
it will pause itself.
You can resume that using bg
and it will stay running in background.
If this is not what you want then stop postgres and start it again, I would use service postgres start
and service postgres stop
.
If those ain't working try /etc/init.d/postgres stop
and /etc/init.d/postgres start
.
© 2022 - 2024 — McMap. All rights reserved.
bg
to resume your process on the background – Steeplechase