# Reset de Senha – GAIO Community

Este procedimento permite redefinir manualmente a senha de um usuário na versão **GAIO Community** via terminal.

***

### 1. Abrir o Terminal como Administrador

Abra o terminal (Prompt de Comando ou PowerShell) com privilégios de administrador.

***

### 2. Listar os Containers em Execução

Execute o comando abaixo para identificar o container onde o GAIO está rodando:

```bash
docker ps
```

Localize o **CONTAINER ID** correspondente ao GAIO.

***

### 3. Acessar o Container

Substitua `<container_id>` pelo ID do container identificado no passo anterior:

```bash
docker exec -it <container_id> /bin/bash
```

***

### 4. Acessar o Cliente ClickHouse

Dentro do container, execute:

```bash
clickhouse-client -u default --password Ldnq8y04MekEH4QCYPscVA
```

***

### 5. Atualizar a Senha do Usuário

Execute o comando abaixo substituindo `YOUR-EMAIL-HERE` pelo e-mail do usuário que terá a senha redefinida:

```bash
ALTER TABLE gaioadmin.user 
UPDATE password = '$argon2id$v=19$m=65536,t=2,p=1$f6hAIuOvqcyxcN3XN1mo/Qu4O1EBYzICvpZhTHSJNZw$x5uYYg6xJxv1GY9ZguS45qWNtZdTmAoRFnaNtCEz0/o' 
WHERE email = 'YOUR-EMAIL-HERE';
```

***

### 6. Realizar Login no GAIO

Após executar o comando com sucesso, o usuário poderá acessar o GAIO utilizando a seguinte senha temporária:

```
@GAIO123
```

{% hint style="danger" %}
Recomenda-se alterar a senha imediatamente após o primeiro login.
{% endhint %}

***

### Precisa de Ajuda?

Estamos disponíveis para suporte: <https://gaio.discourse.group/>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.gaiodataos.com/gaio-dataos-portuguese/getting-started/instalacao-com-o-docker/reset-de-senha-gaio-community.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
