惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Security Blog
Microsoft Security Blog
WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
D
DataBreaches.Net
罗磊的独立博客
博客园 - 司徒正美
Last Week in AI
Last Week in AI
The Cloudflare Blog
大猫的无限游戏
大猫的无限游戏
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
The GitHub Blog
The GitHub Blog
宝玉的分享
宝玉的分享
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
小众软件
小众软件
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hugging Face - Blog
Hugging Face - Blog
B
Blog
博客园 - 【当耐特】
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
GBase 8a Security Hardening: Permissions, Password Polici...
Michael · 2026-06-14 · via DEV Community

Michael

This guide provides a complete security hardening checklist for a gbase database cluster, covering user privileges, password policies, SSL encryption, audit logging, and network access control — all with ready‑to‑run commands.

1. User Privilege Management

A GBase 8a user is identified by both username and source IP. Always follow the principle of least privilege.

Creating Users and Granting Permissions

-- User from a specific subnet
CREATE USER 'analyst'@'10.168.10.%' IDENTIFIED BY 'Str0ng#Pwd!2024';

-- Read‑only
GRANT SELECT ON sales_db.* TO 'analyst'@'10.168.10.%';

-- Read‑write
GRANT SELECT, INSERT, UPDATE, DELETE ON sales_db.* TO 'app_user'@'10.168.10.%';

-- Data loader (FILE privilege is required for LOAD DATA)
GRANT SELECT, INSERT, FILE ON sales_db.* TO 'loader'@'10.168.10.%';

-- Schema administrator (cannot manage users)
GRANT ALL PRIVILEGES ON sales_db.* TO 'db_admin'@'10.168.10.%';

FLUSH PRIVILEGES;

Inspecting and Revoking Privileges

SHOW GRANTS FOR 'analyst'@'10.168.10.%';
REVOKE INSERT, UPDATE, DELETE ON sales_db.* FROM 'analyst'@'10.168.10.%';
DROP USER 'old_user'@'%';

Common Privilege Reference

Privilege Description Safe for ordinary users?
SELECT Query data
INSERT Write data On demand
UPDATE / DELETE Modify / remove rows On demand, tightly controlled
FILE LOAD DATA / SELECT INTO OUTFILE Load accounts only
SUPER Change system variables, kill connections
GRANT OPTION Grant privileges to others ❌ Administrators only
ALL PRIVILEGES Everything ❌ DBA accounts only

2. Password Policy

Configure in gbase.cnf (both gcluster and gnode):

password_min_length = 8
password_format_option = 15       # 1=upper, 2=lower, 4=digit, 8=special — 15 = all
password_max_contain_continuous_char = 3
password_not_same_reverse_username = 1
password_life_time = 90           # days
password_reuse_max = 5
password_reuse_time = 180
login_attempt_max = 5
login_locked_time = 300           # seconds; 0 = permanent
login_locked_factor = 2           # exponential backoff

Unlocking an Account

SELECT user, host, account_locked FROM gclusterdb.user;
ALTER USER 'app_user'@'%' ACCOUNT UNLOCK;
-- Reset password and unlock simultaneously
ALTER USER 'app_user'@'%' IDENTIFIED BY 'New#Pwd!2024';

Changing Passwords

-- Own password
SET PASSWORD = PASSWORD('New#Pwd!2024');

-- Administrator changing another user's password
ALTER USER 'analyst'@'10.168.10.%' IDENTIFIED BY 'New#Pwd!2024';

3. SSL Encryption

Generate Self‑Signed Certificates (on the gcluster primary)

cd /opt/gbase/gcluster/config/ssl

# CA private key and certificate
openssl genrsa -out ca-key.pem 4096
openssl req -new -x509 -days 3650 -key ca-key.pem -out ca.pem \
    -subj "/CN=GBase-CA/O=MyCompany"

# Server private key and CSR
openssl genrsa -out server-key.pem 4096
openssl req -new -key server-key.pem -out server-req.pem \
    -subj "/CN=gcluster-server/O=MyCompany"

# Sign the server certificate
openssl x509 -req -days 3650 \
    -in server-req.pem -CA ca.pem -CAkey ca-key.pem \
    -CAcreateserial -out server-cert.pem

Enable SSL in gcluster

Add to gbase.cnf:

ssl-ca   = /opt/gbase/gcluster/config/ssl/ca.pem
ssl-cert = /opt/gbase/gcluster/config/ssl/server-cert.pem
ssl-key  = /opt/gbase/gcluster/config/ssl/server-key.pem

Restart gcluster and verify:

SHOW VARIABLES LIKE 'have_ssl';   -- YES
SHOW STATUS LIKE 'Ssl_cipher';    -- non‑empty means SSL is active

Enforce SSL for Specific Users

CREATE USER 'secure_user'@'%' IDENTIFIED BY 'Str0ng#Pwd!2024' REQUIRE SSL;
ALTER USER 'analyst'@'10.168.10.%' REQUIRE SSL;

JDBC SSL Configuration

String url = "jdbc:gbase://10.168.10.26:5258/sales_db"
           + "?useSSL=true"
           + "&requireSSL=true"
           + "&verifyServerCertificate=true"
           + "&trustCertificateKeyStoreUrl=file:/path/to/truststore.jks"
           + "&trustCertificateKeyStorePassword=changeit";

Import the server certificate into a Java truststore:

keytool -importcert -alias gbase-server \
    -file /path/to/server-cert.pem \
    -keystore truststore.jks \
    -storepass changeit -noprompt

4. Audit Logging

Configuration

Set in gbase.cnf on both gcluster and gnode:

audit_log = ON
log_output = FILE          # or TABLE
long_query_time = 0        # 0 logs everything; tune in production

Querying Audit Logs (when log_output = TABLE)

-- Recent operations
SELECT start_time, user_host,
       ROUND(query_time, 3) AS query_sec,
       ROUND(lock_time, 6)  AS lock_sec,
       rows_sent, rows_examined,
       db, LEFT(sql_text, 300) AS sql_snippet
FROM gclusterdb.slow_log
ORDER BY start_time DESC LIMIT 50;

-- Find DDL statements
SELECT start_time, user_host, db, sql_text
FROM gclusterdb.slow_log
WHERE sql_text REGEXP '^(DROP|ALTER|CREATE|TRUNCATE)'
ORDER BY start_time DESC;

-- User activity summary
SELECT SUBSTRING_INDEX(user_host, '[', 1) AS user_name,
       COUNT(*) AS sql_count,
       ROUND(AVG(query_time), 3) AS avg_sec
FROM gclusterdb.slow_log
WHERE start_time >= CURDATE()
GROUP BY user_name
ORDER BY sql_count DESC;

5. Network Access Control

-- Restrict by source IP via the host portion of the user
CREATE USER 'app_user'@'10.168.10.%' IDENTIFIED BY '...';

-- Limit maximum concurrent connections for a user
CREATE USER 'app_user'@'%'
    IDENTIFIED BY '...'
    WITH MAX_USER_CONNECTIONS 20;

6. Security Checklist

-- Empty passwords
SELECT user, host FROM gclusterdb.user WHERE password = '';

-- Wildcard host for privileged users
SELECT user, host FROM gclusterdb.user WHERE host = '%';

-- Root allowed from anywhere?
SELECT user, host FROM gclusterdb.user WHERE user = 'root';

-- Password and login policies
SHOW VARIABLES LIKE 'password%';
SHOW VARIABLES LIKE 'login%';

-- SSL status
SHOW VARIABLES LIKE 'have_ssl';
SHOW VARIABLES LIKE 'ssl_%';

-- Audit log settings
SHOW VARIABLES LIKE 'audit_log';
SHOW VARIABLES LIKE 'log_output';
SHOW VARIABLES LIKE 'long_query_time';

7. Common Mistakes

Mistake Risk Correct Practice
Using root for applications Excessive privileges Create per‑application least‑privilege accounts
All users with host='%' Any IP can attempt login Restrict to application server IP ranges
No password expiration Credentials stagnate Set 90–180 day expiration
Audit log only on gcluster gnode activity untracked Configure on both gcluster and gnode
SSL certificate files world‑readable Certificates leaked chmod 600, owned by gbase
Forgetting FLUSH PRIVILEGES Grant changes not applied Execute after every GRANT/REVOKE

A hardened gbase database cluster requires consistent application of these controls across all nodes. Use the checklist above as part of your regular security audit to keep your GBASE environment protected.