Mudanças entre as edições de "Dataverse:FAQ"
Ir para navegação
Ir para pesquisar
| (2 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 | No servidor conecte-se com o usuário postgres | ||
| Linha 11: | Linha 13: | ||
select * from datasetlock; | select * from datasetlock; | ||
Se existir algum arquivo travado, delete-o | Se existir algum arquivo travado, delete-o | ||
| − | delete from datasetlock where id | + | 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 | Para sair | ||
\q | \q | ||
Edição atual tal como às 21h37min de 27 de novembro de 2022
Índice
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