> ## Documentation Index
> Fetch the complete documentation index at: https://doc.lucidworks.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Users

export const LwTemplate = ({title = "Key questions to get you started", icon = "sparkles", cta = "Powered by Agent Studio", linkHref = "https://lucidworks.com/demo/?utm_source=docs&utm_medium=referral&utm_campaign=docs_cta_ai"}) => {
  const [isLoaded, setIsLoaded] = useState(false);
  useEffect(() => {
    const timer = setTimeout(() => {
      setIsLoaded(true);
    }, 500);
    return () => clearTimeout(timer);
  }, []);
  return <div className="lw-template-container">
      <Card title={title} icon={icon}>
        {isLoaded && <span dangerouslySetInnerHTML={{
    __html: `<lw-template id="a029c1a9-28be-427e-b0e1-5d918920246a"></lw-template
            >`
  }} />}
        <Link href={linkHref} className="agent-studio-link text-left text-gray-600 gap-2 dark:text-gray-400 text-sm font-medium flex flex-row items-center hover:text-primary dark:hover:text-primary-light group-hover:text-primary group-hover:dark:text-primary-light">Powered by Lucidworks Agent Studio</Link>
      </Card>
    </div>;
};

[old doc.lw link]: https//doc.lucidworks.com/fusion/5.9/ce5jc6

[localhost link]: http://localhost:3000/docs/5/fusion/operations/config-sync/objects/users

[mintlify link]: https://doc.lucidworks.com/docs/5/fusion/operations/config-sync/objects/users

User data files are stored within the directory `_lw_system/users`.
This designated location consolidates all user-related information, facilitating efficient data management and access.

<LwTemplate />

## File naming convention

The naming convention for user files is structured as `<USERNAME>---<REALM>`.
This format is carefully chosen to ensure uniqueness and organization within the system.
It allows for easy identification and retrieval of user-specific data by linking the username directly to their associated security realm.

## Components

* **Username**: This is a unique identifier for each user.\
  It is a string that distinguishes one user from another within the system.
* **Realm**: The realm refers to the security domain within which the user operates.\
  It is a critical component of the system’s security model, segregating users based on their access permissions and operational scope.

## Reference documentation

Detailed information about user management, including the specifics of user file naming and location, can be found in [Users](/docs/5/fusion/operations/security/access-control/users).
