Reputation: 1055
I've been trying to install PgAgent on PostgreSQL.
As you can see, I have it in my catalog and in the extensions.
But why it doesn't appear on my tablespaces?
I also cant reset the PG admin section
Upvotes: 1
Views: 8540
Reputation: 359
pgAgent needs to be created in postgres database in order to show up.
I got a pgagent job when I processed create extension in postgres databases. Thank you.
Upvotes: 0
Reputation: 21
pgAgent needs to be created in postgres database in order to show up.
Upvotes: 1
Reputation: 1
Steps: 1. Install the pgagent to a particular database in a server. 2. create a new connection in pgadmin where give maintainance database as the once to which the pgagent is installed.
This will eneable the pg agent jobs option in the connection database to become visible
Upvotes: 0
Reputation: 19613
pgAgent Jobs do not appear in the Tablespaces unless you manually create one with this name :)
The Jobs are listed in a separated section on pgAdmin
Keep in mind that in the pgAdmin connection you have to set the maintenance database to the database you have installed pgAgent. In my case, the postgres
database:
Upvotes: 8