简体   繁体   English

pgagent centos 6.2

[英]pgagent centos 6.2

I have successfully compiled pgagent from source on a CentOS 6.2 server . 我已经从CentOS 6.2服务器上的源代码成功编译了pgagent

When I try to launch pgagent with the following command : 当我尝试使用以下命令启动pgagent时:

/usr/bin/pgagent -l 2 hostaddr=serveur.com dbname=postgres user=postgres

I get the following error messages : 我收到以下错误消息:

DEBUG:      user         : postgres
DEBUG:      port         : 0
DEBUG:      host         : server.com
DEBUG:      dbname       : postgres
DEBUG:      password     : 
DEBUG:      conn timeout : 0
DEBUG: Connection Information:
DEBUG:      user         : postgres
DEBUG:      port         : 0
DEBUG:      host         : server.com
DEBUG:      dbname       : postgres
DEBUG:      password     : 
DEBUG:      conn timeout : 0
DEBUG: Creating DB connection: user=postgres host=server.com dbname=postgres
DEBUG: Database sanity check
DEBUG: Clearing zombies
WARNING: Query error: ERROR:  could not extend file "base/12870/12615": No space left on device
HINT:  Check free disk space.

WARNING: Query error: ERROR:  relation "pga_tmp_zombies" does not exist
LINE 1: INSERT INTO pga_tmp_zombies (jagpid) SELECT jagpid   FROM pg...
                    ^

WARNING: Query error: ERROR:  table "pga_tmp_zombies" does not exist

WARNING: Query error: ERROR:  could not extend file "base/12870/17167": No space left on device
HINT:  Check free disk space.

WARNING: Couldn't create the primary connection (attempt 1): ERROR:  could not extend file "base/12870/17167": No space left on device
HINT:  Check free disk space.
DEBUG: Clearing all connections
DEBUG: Connection stats: total - 1, free - 0, deleted - 1

Any idea of the source of the problem ? 对问题的根源有任何想法吗?

WARNING: Query error: ERROR:  could not extend file "base/12870/12615": No space left on device
HINT:  Check free disk space.

You're out of disk space, or (rather unlikely) a disk access quota limit has been hit for the database user. 您的磁盘空间不足,或者(不太可能)数据库用户达到了磁盘访问配额限制。 It's also possible you've run out of inodes on the file system for some platforms and file systems. 对于某些平台和文件系统,文件系统上的inode也可能用完了。 Check df . 检查df

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM