Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for userPassword (0.06 sec)

  1. docs/distributed/samples/bootstrap-partial.ldif

    objectClass: inetOrgPerson
    cn: Alice Smith
    sn: Smith
    uid: alice1
    mail: ******@****.***
    userPassword: {SSHA}Yeh2/IV/q/HjG2yzN3YdE9CAF3EJFCLu
    
    dn: uid=bobfisher,ou=people,ou=hwengg,dc=min,dc=io
    objectClass: inetOrgPerson
    cn: Robert Fisher
    sn: Fisher
    uid: bobfisher
    mail: ******@****.***
    userPassword: {SSHA}LktfbhK5oXSdDWCNzauJ9JA+Poxinl3y
    
    dn: uid=cody3,ou=people,ou=hwengg,dc=min,dc=io
    objectClass: inetOrgPerson
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 12 15:59:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. docs/distributed/samples/bootstrap-complete.ldif

    objectClass: inetOrgPerson
    cn: Alice Smith
    sn: Smith
    uid: alice1
    mail: ******@****.***
    userPassword: {SSHA}Yeh2/IV/q/HjG2yzN3YdE9CAF3EJFCLu
    
    dn: uid=bobfisher,ou=people,ou=hwengg,dc=min,dc=io
    objectClass: inetOrgPerson
    cn: Robert Fisher
    sn: Fisher
    uid: bobfisher
    mail: ******@****.***
    userPassword: {SSHA}LktfbhK5oXSdDWCNzauJ9JA+Poxinl3y
    
    dn: uid=cody3,ou=people,ou=hwengg,dc=min,dc=io
    objectClass: inetOrgPerson
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 12 15:59:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. docs/em/docs/tutorial/sql-databases.md

    👉 🖼, 👥 "🔗" 🗄 💽 (📂 📁 ⏮️ 🗄 💽).
    
    📁 🔜 🔎 🎏 📁 📁 `sql_app.db`.
    
    👈 ⚫️❔ 🏁 🍕 `./sql_app.db`.
    
    🚥 👆 ⚙️ **✳** 💽 ↩️, 👆 🔜 ✔️ ✍ ⏸:
    
    ```Python
    SQLALCHEMY_DATABASE_URL = "postgresql://user:password@postgresserver/db"
    ```
    
    ...& 🛠️ ⚫️ ⏮️ 👆 💽 📊 & 🎓 (📊 ✳, ✳ ⚖️ 🙆 🎏).
    
    /// tip
    
    👉 👑 ⏸ 👈 👆 🔜 ✔️ 🔀 🚥 👆 💚 ⚙️ 🎏 💽.
    
    ///
    
    ### ✍ 🇸🇲 `engine`
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 25K bytes
    - Viewed (0)
  4. docs/zh/docs/tutorial/sql-databases.md

    在这个例子中,我们正在“连接”到一个 SQLite 数据库(用 SQLite 数据库打开一个文件)。
    
    该文件将位于文件中的同一目录中`sql_app.db`。
    
    这就是为什么最后一部分是`./sql_app.db`.
    
    如果您使用的是**PostgreSQL**数据库,则只需取消注释该行:
    
    ```Python
    SQLALCHEMY_DATABASE_URL = "postgresql://user:password@postgresserver/db"
    ```
    
    ...并根据您的数据库数据和相关凭据(也适用于 MySQL、MariaDB 或任何其他)对其进行调整。
    
    /// tip
    
    如果您想使用不同的数据库,这是就是您必须修改的地方。
    
    ///
    
    ### 创建 SQLAlchemy 引擎
    
    第一步,创建一个 SQLAlchemy的“引擎”。
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top