All posts

MySQL Native Connections

This release (v1.7+) we're introducing mysql native passwordless connections. This new type of connection allows connecting to a database with any mysql client, from IDE's to applications. System administrators have the capability of configuring database credentials without having to expose to end users. To begin it's very easy: # start hoop locally hoop start # create a new mysql instance docker run --rm \ -p 3306:3306 \ --name mysql \ -e MYSQL_ROOT_PASSWORD=123 mysql:8 Vi

Free White Paper

MySQL Access Governance + Cloud-Native Application Protection (CNAPP): The Complete Guide

Architecture patterns, implementation strategies, and security best practices. Delivered to your inbox.

Free. No spam. Unsubscribe anytime.

This release (v1.7+) we're introducing mysql native passwordless connections.

This new type of connection allows connecting to a database with any mysql client, from IDE's to applications.

System administrators have the capability of configuring database credentials without having to expose to end users.

Continue reading? Get the full guide.

MySQL Access Governance + Cloud-Native Application Protection (CNAPP): Architecture Patterns & Best Practices

Free. No spam. Unsubscribe anytime.

To begin it's very easy:

# start hoop locally
hoop start
# create a new mysql instance
docker run --rm \
    -p 3306:3306 \
    --name mysql \
    -e MYSQL_ROOT_PASSWORD=123 
    mysql:8

Visit THIS LINK after to create the mysql connection

Then try to connect with hoop:

hoop connect mysqldb --port 3307
# connect using a mysql client
mysql -h 0 --port 3307

That's all for today, check it out our documentation to know more.

Open source

Save the open-source gateway for agent data access

Hoop is MIT-licensed infrastructure for controlling how AI agents reach production data. Star hoophq/hoop so you can inspect it, deploy it, or share it when your team starts governing agent access.

Star and save the repo →More posts