0Pricing
Neo4j Graph Database Fundamentals · Aula

Gerenciamento de Usuários e Funções

Aprenda a criar e gerenciar usuários, atribuir funções e definir privilégios de acesso personalizados no Neo4j.

Gerenciamento de Usuários e Funções é uma aula grátis de Neo4j Graph Database Fundamentals no CoddyKit. Esta é a aula 1 de 4. Você pode ler a aula completa abaixo gratuitamente — depois pratica ao vivo no navegador com um editor de código integrado e um tutor de IA 24/7. Faz parte do caminho de aprendizado de Neo4j Graph Database Fundamentals, e seu progresso é sincronizado entre a web e o app CoddyKit. O curso de Neo4j Graph Database Fundamentals inclui 4 aulas no total.

Partes desta aula ainda não foram traduzidas e aparecem em inglês.

Secure Your Graph Data

Welcome to securing your Neo4j database! Just like any valuable asset, your graph data needs protection.

This lesson introduces the essential steps to manage who can access and modify your Neo4j database.

Control Access to Your Data

Why bother with user management? Imagine a bank vault without proper access control – chaos!

  • Security: Prevent unauthorized access.
  • Accountability: Track who does what.
  • Compliance: Meet regulatory requirements.

It's about making sure only the right people have the right permissions.

AuthN vs. AuthZ

These terms are often confused, but they're distinct:

  • Authentication (AuthN): Who are you? This verifies a user's identity (e.g., username and password).
  • Authorization (AuthZ): What can you do? This determines what actions an authenticated user is allowed to perform.

First, we prove who we are (AuthN), then the system decides what we can do (AuthZ).

Meet the Default Admin

When you first install Neo4j, a default administrative user named neo4j is created.

  • It has full administrative privileges.
  • The initial password is also neo4j.
  • Important: Always change this default password immediately after installation for security!

This user is your entry point to managing the database.

Adding New Users

To add new individuals or applications to your database, you'll create new user accounts.

Each user needs a unique username and a strong password. This ensures proper authentication before any actions are taken.

Let's see how to do this using Cypher, Neo4j's query language.

Creating Users with Cypher

The CREATE USER command is straightforward. Remember to choose a secure password!

Try running this example in your Neo4j Browser or cypher-shell:

CREATE USER 'alice' SET PASSWORD 'securePassword123';

Changing Passwords

Passwords should be changed regularly, and users might forget them. Neo4j provides commands to manage user passwords.

  • Change your own password: ALTER CURRENT USER SET PASSWORD 'newPassword';
  • Change another user's password (admin only): ALTER USER 'alice' SET PASSWORD 'anotherNewPass';

Always use strong, unique passwords!

What are Roles?

Roles are collections of privileges that can be assigned to users. Instead of giving individual permissions to each user, you assign them a role.

Neo4j comes with several built-in roles, such as:

  • admin: Full administrative access.
  • architect: Can create/manage schema (nodes, relationships, properties).
  • publisher: Can write data.
  • reader: Can only read data.

This simplifies managing permissions across many users.

Granting Roles

Once you've created users and understand roles, the next step is to grant specific roles to users. A user can have multiple roles.

Use the GRANT ROLE command to assign roles. To remove a role, use REVOKE ROLE.

Let's grant our new user 'alice' the 'reader' role:

GRANT ROLE reader TO alice;

Check Your Understanding

You've learned how to create users and assign roles. Let's test your knowledge!

Lesson Summary

Great job! In this lesson, we covered the fundamentals of user management and roles in Neo4j:

  • The importance of authentication and authorization.
  • How to create new users using CREATE USER.
  • Managing user passwords with ALTER USER.
  • Understanding built-in roles like admin, reader, and publisher.
  • Assigning roles to users with GRANT ROLE.

This knowledge is crucial for securing your graph database! Next, we'll dive deeper into defining custom access privileges.

Perguntas Frequentes

A aula “Gerenciamento de Usuários e Funções” é grátis?

Sim — o texto completo de “Gerenciamento de Usuários e Funções” é grátis para ler aqui na web. Para praticá-la interativamente (um editor de código integrado e um tutor de IA 24/7) e desbloquear o restante do curso de Neo4j Graph Database Fundamentals, atualize para CoddyKit PRO. O curso de Neo4j Graph Database Fundamentals inclui 4 aulas no total.

O que vou aprender em “Gerenciamento de Usuários e Funções”?

Aprenda a criar e gerenciar usuários, atribuir funções e definir privilégios de acesso personalizados no Neo4j. Você pratica Neo4j Graph Database Fundamentals com código prático que executa diretamente no navegador, e um tutor de IA 24/7 responde suas dúvidas enquanto trabalha na aula.

Preciso ter experiência prévia para começar Neo4j Graph Database Fundamentals?

Nenhuma experiência prévia é necessária. Neo4j Graph Database Fundamentals no CoddyKit é estruturado para alunos iniciantes até avançados, então você pode começar aqui ou desde o início e aprender no seu ritmo. Esta é a aula 1 de 4.

Quanto tempo leva a aula “Gerenciamento de Usuários e Funções”?

A maioria das aulas CoddyKit leva cerca de 5–10 minutos. Cada uma é compacta e interativa, então você faz progresso constante e retoma exatamente de onde parou entre web e app.

Posso escrever e executar código nesta aula de Neo4j Graph Database Fundamentals?

Sim. Cada aula de Neo4j Graph Database Fundamentals inclui um editor de código integrado, então você escreve e executa código real direto no navegador e recebe feedback de IA instantaneamente — nenhuma configuração local necessária.

Todas as aulas deste curso

  1. Gerenciamento de Usuários e Funções
  2. Autenticação e Autorização
  3. Protegendo sua Implantação do Neo4j
  4. Controle de Acesso Granular e Auditoria
← Voltar para Neo4j Graph Database Fundamentals