Mudanças entre as edições de "Dataverse:FAQ"

De BrapciWiki
Ir para navegação Ir para pesquisar
(Criou página com '=Erros= ===Publish in Progress – The dataset is locked while the persistent identifiers are being registered or updated, and/or the physical files are being validated.===')
 
 
(4 revisões intermediárias pelo mesmo usuário não estão sendo mostradas)
Linha 1: Linha 1:
 
=Erros=
 
=Erros=
===Publish in Progress – The dataset is locked while the persistent identifiers are being registered or updated, and/or the physical files are being validated.===
+
=Publish in Progress – The dataset is locked while the persistent identifiers are being registered or updated, and/or the physical files are being validated.=
 +
 
 +
=Publica em preocesso=
 +
 
 +
No servidor conecte-se com o usuário postgres
 +
su postgres
 +
Acesse o postgres
 +
psql
 +
Conecte-se no banco dvndb
 +
\c dvndb
 +
Verifique a tabela datasetlock
 +
select * from datasetlock;
 +
Se existir algum arquivo travado, delete-o
 +
delete from datasetlock where 1=1;
 +
ou
 +
delete from datasetlock where id=<NRID>;
 +
 
 +
===Alternativa===
 +
/usr/bin/psql -h localhost -p 5432 -U postgres -d dvndb -c 'delete from datasetlock where true'
 +
 
 +
 
 +
Para sair
 +
\q

Edição atual tal como às 21h37min de 27 de novembro de 2022

Erros

Publish in Progress – The dataset is locked while the persistent identifiers are being registered or updated, and/or the physical files are being validated.

Publica em preocesso

No servidor conecte-se com o usuário postgres

su postgres

Acesse o postgres

psql

Conecte-se no banco dvndb

\c dvndb

Verifique a tabela datasetlock

select * from datasetlock;

Se existir algum arquivo travado, delete-o

delete from datasetlock where 1=1;

ou

delete from datasetlock where id=<NRID>;

Alternativa

/usr/bin/psql -h localhost -p 5432 -U postgres -d dvndb -c 'delete from datasetlock where true'


Para sair

\q