0

CentOS 6.2 サーバーでソースから pgagentを正常にコンパイルしました。

次のコマンドでpgagentを起動しようとすると:

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

次のエラー メッセージが表示されます。

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

問題の原因について何か考えはありますか?

4

1 に答える 1

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

ディスク容量が不足しているか、または (ほとんどありませんが) データベース ユーザーのディスク アクセス クォータ制限に達しています。一部のプラットフォームやファイル システムでは、ファイル システムの inode が不足している可能性もあります。確認してくださいdf

于 2012-09-07T07:44:31.783 に答える