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

推荐订阅源

WordPress大学
WordPress大学
Jina AI
Jina AI
小众软件
小众软件
GbyAI
GbyAI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
D
DataBreaches.Net
腾讯CDC
V
Visual Studio Blog
博客园 - 叶小钗
B
Blog
Apple Machine Learning Research
Apple Machine Learning Research
T
The Blog of Author Tim Ferriss
S
SegmentFault 最新的问题
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
博客园 - 三生石上(FineUI控件)
云风的 BLOG
云风的 BLOG
The Cloudflare Blog
MongoDB | Blog
MongoDB | Blog
有赞技术团队
有赞技术团队
U
Unit 42
博客园 - 司徒正美
博客园 - 聂微东

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
How to Reset Your MySQL Root Password on Ubuntu (When Not...
Mohamed Idri · 2026-05-01 · via DEV Community

I was working on a Laravel task and got this error in my logs:

SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES)

Enter fullscreen mode Exit fullscreen mode

My .env file had DB_PASSWORD=password, but MySQL was rejecting it. I tried the usual tricks and ran into a wall. Here is what was happening, what fixed it, and a few small things that confused me along the way. If you are a junior dev and any of this sounds familiar, this post is for you.

Step 1: Check if your Laravel .env is the problem first

Before anything wild, open your .env file and check these lines:

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=my_app
DB_USERNAME=root
DB_PASSWORD=password

Enter fullscreen mode Exit fullscreen mode

If your password is blank or wrong, just fix it and run:

php artisan config:clear

Enter fullscreen mode Exit fullscreen mode

Done. If the password really is what you think it is and MySQL still rejects it, keep reading.

Step 2: Try the classic Ubuntu trick

On a lot of Ubuntu installs, the MySQL root user does not use a password at all. It uses something called socket authentication, which means you log in by being a Linux superuser. So this usually works:

sudo mysql

Enter fullscreen mode Exit fullscreen mode

If that opens a MySQL prompt, great. You can set a real password from inside:

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
FLUSH PRIVILEGES;

Enter fullscreen mode Exit fullscreen mode

But in my case I got this:

ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

Enter fullscreen mode Exit fullscreen mode

That means root already had a password set, just not one I knew. Time for the real recovery.

Step 3: Reset the password using an init file

The safest way to reset a forgotten root password is to start MySQL with a special init file. The init file runs SQL the moment MySQL boots, so you can change the password without ever logging in.

Here is a small bash script that does the whole thing. Save it as mysql-reset.sh:

#!/bin/bash
set -e

NEW_PASS='password'
INIT_FILE=$(mktemp /tmp/mysql-init-XXXXXX.sql)

cat > "$INIT_FILE" <<SQL
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '${NEW_PASS}';
FLUSH PRIVILEGES;
SQL

sudo chown mysql:mysql "$INIT_FILE"
sudo chmod 600 "$INIT_FILE"

echo "Stopping mysql..."
sudo systemctl stop mysql

echo "Starting mysql with the init file..."
sudo mysqld --user=mysql --init-file="$INIT_FILE" --daemonize

sleep 3

echo "Stopping the temporary mysqld..."
sudo pkill -f "mysqld --user=mysql --init-file=$INIT_FILE" || true
sleep 2

echo "Starting mysql normally..."
sudo systemctl start mysql

sudo rm -f "$INIT_FILE"

echo "Testing the new password..."
mysql -u root -p"$NEW_PASS" -e "SELECT 'OK' AS status;"

Enter fullscreen mode Exit fullscreen mode

Then run it:

bash mysql-reset.sh

Enter fullscreen mode Exit fullscreen mode

It will ask for your sudo password. After it finishes, root has the password you set. Mine is now password, which matches my Laravel .env.

Step 4: Create your database if it does not exist yet

mysql -u root -ppassword -e "CREATE DATABASE IF NOT EXISTS my_app;"

Enter fullscreen mode Exit fullscreen mode

You will see a warning that goes like this:

mysql: [Warning] Using a password on the command line interface can be insecure.

Enter fullscreen mode Exit fullscreen mode

That is just a warning, not an error. Your command still ran. We will fix that warning in the last step.

Now run your migrations:

php artisan migrate

Enter fullscreen mode Exit fullscreen mode

If your tables get created, you are back in business.

Two confusing errors that tripped me up

After the reset I tried a couple of things that looked broken but were actually fine. If you see these, do not panic.

"sudo mysql" stops working

sudo mysql -e "ALTER USER 'root'@'localhost' ..."
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

Enter fullscreen mode Exit fullscreen mode

This is correct now. We changed root from socket login to password login. So sudo mysql cannot just walk in anymore. You have to give the password:

mysql -u root -p

Enter fullscreen mode Exit fullscreen mode

Just typing "mysql" fails

mysql
ERROR 1045 (28000): Access denied for user 'your_username'@'localhost' (using password: NO)

Enter fullscreen mode Exit fullscreen mode

When you run mysql with no flags, it tries to log in using your Linux username with no password. There is no MySQL user with your Linux name, so it fails. This is normal. You need -u root -p.

Step 5: Stop typing your password every time

This was the nicest little win. You can put your client credentials in a config file and the mysql command will read it automatically.

Create ~/.my.cnf:

[client]
user=root
password=password

Enter fullscreen mode Exit fullscreen mode

Lock down the permissions so other users on the machine cannot read it:

chmod 600 ~/.my.cnf

Enter fullscreen mode Exit fullscreen mode

Now this just works:

mysql

Enter fullscreen mode Exit fullscreen mode

No prompt, no flags, no warning. Quick test:

mysql -e "SELECT CURRENT_USER();"

Enter fullscreen mode Exit fullscreen mode

You should see root@localhost.

A safer setup for real projects

Using root for your app is fine on a learning machine, but on anything you care about, make a dedicated user with access to one database only:

CREATE DATABASE IF NOT EXISTS my_app;
CREATE USER 'my_app_user'@'localhost' IDENTIFIED BY 'a_real_password';
GRANT ALL PRIVILEGES ON my_app.* TO 'my_app_user'@'localhost';
FLUSH PRIVILEGES;

Enter fullscreen mode Exit fullscreen mode

Then point your .env at that user. If the app password ever leaks, your other databases are still safe.

Quick recap

  1. Check the .env first. The simplest fix is usually the right one.
  2. Try sudo mysql. If it works, you are using socket auth and you can set a password right there.
  3. If root already has a password you do not know, reset it with an init file. Do not edit mysql.user by hand and do not run with --skip-grant-tables if you can avoid it.
  4. After the reset, remember that sudo mysql will not work anymore. Use mysql -u root -p.
  5. Drop a ~/.my.cnf with mode 600 so you can just type mysql and get in.
  6. For real projects, do not use root. Make an app user with access to one database.

Hope this saves someone an hour. Forgetting a database password feels scary, but the recovery is short once you know the steps.