0Pricing
Neo4j Graph Database Fundamentals · Leçon

Authentification et autorisation

Mettez en œuvre des méthodes d’authentification et configurez des règles d’autorisation pour contrôler qui peut accéder à vos données de graphe et les modifier.

Authentification et autorisation est une leçon Neo4j Graph Database Fundamentals gratuite sur CoddyKit. Ceci est la leçon 2 sur 4. Tu peux lire la leçon complète ci-dessous gratuitement — puis la pratiquer en direct dans le navigateur avec un éditeur de code intégré et un tuteur IA 24/7. Elle fait partie du parcours d'apprentissage Neo4j Graph Database Fundamentals, et ta progression se synchronise sur le web et l'application CoddyKit. Le cours Neo4j Graph Database Fundamentals comprend 4 leçons au total.

Certaines parties de cette leçon n'ont pas encore été traduites et s'affichent en anglais.

AuthN vs. AuthZ: The Basics

When we talk about database security, two key concepts are Authentication and Authorization. While they sound similar, they serve distinct purposes.

Authentication (AuthN) is about verifying who you are. It confirms your identity, typically using a username and password.

Authorization (AuthZ) is about determining what you can do. Once authenticated, the system decides what actions you're permitted to perform.

Neo4j Authentication Methods

Neo4j primarily uses native authentication, where user credentials (username and password) are stored and managed directly within the database.

For enterprise setups, Neo4j also supports integration with external authentication systems like LDAP or Kerberos, but for most applications, native authentication is sufficient and simpler to manage.

The Initial 'neo4j' User

Upon your first installation and startup of Neo4j, a default administrative user named neo4j is automatically created.

This user has full administrative privileges. It is crucial for security reasons to change the initial password for the neo4j user immediately after setup.

Changing User Passwords

You can change the password for the currently authenticated user using a built-in Cypher procedure. This is essential for managing security.

Try changing the password for the neo4j user. Remember to replace 'your_new_password' with a strong, unique password.

CALL dbms.security.changeUserPassword('your_new_password');

Understanding Authorization in Neo4j

Once a user is authenticated, Neo4j uses authorization to control their access. This is achieved through a system of roles and privileges.

  • Roles: Groups of users that share a common set of permissions.
  • Privileges: Specific permissions that define what actions can be performed (e.g., read, write, create nodes).

By assigning privileges to roles, and roles to users, you can manage access efficiently.

Common Privilege Types

Neo4j offers granular control over various operations. Here are some common privilege types:

  • ACCESS: Allows connection to a specific database.
  • READ: Permits reading data (nodes, relationships, properties).
  • WRITE: Allows creating, updating, or deleting data.
  • SCHEMA: Grants permission to manage schema elements like labels, relationship types, and indexes.
  • SHOW: Allows viewing database information and configurations.

Privileges can be scoped to specific graphs, labels, relationship types, or even properties.

Granting Privileges to Roles

The GRANT clause is used to assign privileges to a role. This allows users assigned to that role to perform specific actions.

For example, you might grant a viewer role the ability to read data on specific node labels within your graph.

GRANT READ {labels: ['Movie', 'Person']} ON GRAPH neo4j TO ROLE viewer;

Denying Privileges

The DENY clause explicitly forbids a privilege for a role. This is powerful because a DENY privilege always takes precedence over any GRANT privilege for the same action.

This means if a role is granted a privilege but also denied it, the deny will be enforced.

DENY WRITE ON GRAPH neo4j TO ROLE viewer;

Revoking Privileges

To remove a previously granted or denied privilege from a role, you use the REVOKE clause. This effectively removes the explicit permission or denial.

If a privilege was previously GRANTED and then REVOKED, the role will no longer have that specific permission.

REVOKE READ ON GRAPH neo4j TO ROLE viewer;

Quick Check: Security Actions

Consider the core concepts of Neo4j security. Which of the following statements are true?

Recap: Securing Your Graph

In this lesson, we established the difference between authentication (who you are) and authorization (what you can do) in Neo4j.

You learned about the default neo4j user and the importance of changing its password. We then explored how to manage privileges using GRANT, DENY, and REVOKE clauses to control access for various roles, ensuring your graph data remains secure and accessible only to authorized users.

Questions Fréquemment Posées

La leçon « Authentification et autorisation » est-elle gratuite ?

Oui — le texte complet de « Authentification et autorisation » est gratuit à lire ici sur le web. Pour la pratiquer de manière interactive (un éditeur de code intégré et un tuteur IA 24/7) et déverrouiller le reste du cours Neo4j Graph Database Fundamentals, passe à CoddyKit PRO. Le cours Neo4j Graph Database Fundamentals comprend 4 leçons au total.

Qu'est-ce que j'apprendrai dans « Authentification et autorisation » ?

Mettez en œuvre des méthodes d’authentification et configurez des règles d’autorisation pour contrôler qui peut accéder à vos données de graphe et les modifier. Tu pratiques Neo4j Graph Database Fundamentals avec du code pratique que tu exécutes directement dans le navigateur, et un tuteur IA 24/7 répond à tes questions au fur et à mesure que tu avances dans la leçon.

Dois-je avoir de l'expérience pour commencer Neo4j Graph Database Fundamentals ?

Aucune expérience préalable n'est requise. Neo4j Graph Database Fundamentals sur CoddyKit est structuré pour les débutants jusqu'aux apprenants avancés, donc tu peux commencer ici ou depuis le début et avancer à ton rythme. Ceci est la leçon 2 sur 4.

Combien de temps prend la leçon « Authentification et autorisation » ?

La plupart des leçons CoddyKit prennent environ 5–10 minutes. Chacune est courte et interactive, tu progresses régulièrement et tu repiques exactement où tu t'es arrêté sur le web et l'app.

Peux-tu écrire et exécuter du code dans cette leçon Neo4j Graph Database Fundamentals ?

Oui. Chaque leçon Neo4j Graph Database Fundamentals inclut un éditeur de code intégré, tu écris et exécutes du vrai code directement dans ton navigateur et tu reçois des retours IA instantanés — aucune configuration locale requise.

Toutes les leçons de ce cours

  1. Gestion des utilisateurs et des rôles
  2. Authentification et autorisation
  3. Sécuriser votre déploiement Neo4j
  4. Contrôle d’accès granulaire et audit
← Retour à Neo4j Graph Database Fundamentals