- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
Day 4: MySQL User Management & Remote Access Setup Securely 🔐 #mysql #dba #security #day4
🎥 YouTube full video:
https://youtu.be/4XzY1J8m48c
# 📌 What is MySQL User Management?
MySQL User Management means:
* Creating users
* Giving permissions
* Restricting access
* Securing database connections
It helps you control:
✔ Who can access the database
✔ What they can do
✔ From where they can connect
✔ How secure the system is
# 🧠 Why is User Management Important?
Without proper user management:
❌ Anyone may access your database
❌ Data can be deleted accidentally
❌ Hackers can attack remotely
❌ Applications may get full admin access unnecessarily
Good security practice:
✔ Give only required permissions
✔ Restrict remote access
✔ Use strong passwords
✔ Disable remote root login
# 🏗 Real-World Practical Scenario
Suppose:
You have:
* Ubuntu Server → `192.168.50.128`
* MySQL installed
* A web application
* Developers connecting remotely
You want:
+ ---------- + ---------------- + -------------- +
| User | Purpose | Access |
+ ---------- + ---------------- + -------------- +
| appuser | Application | Read/Write |
| reportuser | Reports | Read Only |
| developer | Remote developer | Limited Access |
| adminuser | Administrator | Full Access |
+ ---------- + ---------------- + -------------- +
# 🚀 MySQL Remote Access + User Management
# 🎯 Goal
You have:
+ --------------- + ---------------- +
| Item | Value |
+ --------------- + ---------------- +
| MySQL Server IP | `192.168.50.128` |
| Root Password | `admin@123` |
| OS | Ubuntu |
| MySQL Version | MySQL 8.4 |
+ --------------- + ---------------- +
You want:
✔ Access MySQL from another server/laptop
✔ Create users properly
✔ Give Read Only / Write Only / Full Access
✔ Secure remote connections
✔ Understand errors and fixes
✔ Production-level setup
# 🧠 First Understand the Architecture
# 📌 Scenario
CLIENT MACHINE
192.168.50.129
│
│ MySQL Connection
▼
MYSQL SERVER
192.168.50.128
Port: 3306
# 🔥 IMPORTANT CONCEPTS
+ ------------ + ------------------------ +
| Concept | Meaning |
+ ------------ + ------------------------ +
| localhost | Same server only |
| 127.0.0.1 | Local loopback |
| 0.0.0.0 | Listen on all interfaces |
| % | Any IP |
| 192.168.50.% | Only local subnet |
| Port 3306 | Default MySQL port |
+ ------------ + ------------------------ +
# 🚀 FINAL BEST PRACTICE ARCHITECTURE
CLIENT MACHINE
192.168.50.129
│
│ MySQL Port 3306
▼
MYSQL SERVER
192.168.50.128
Users:
- readonlyuser
- writeuser
- appuser
- adminuser
Firewall:
Allow only 192.168.50.0/24
# 🎯 FINAL RECOMMENDATION
# 🟢 For Applications
Use:
SELECT, INSERT, UPDATE
# 🟢 For Reporting
Use:
SELECT ONLY
# 🟢 For Admin
Use:
ALL PRIVILEGES
# 🟢 For Security
✔ Strong passwords
✔ Restricted subnet
✔ No remote root
✔ Firewall restrictions
✔ Least privilege principle
✅ Final Conclusion
You learned:
✔ MySQL Installation
✔ User Management
✔ Grant/Revoke Privileges
✔ Secure Remote Access
✔ Firewall Configuration
✔ Production Security Best Practices
✔ Real-world Practical Setup
This setup is ideal for:
Developers
Production Servers
Client Applications
Remote Teams
DB Administrators
--------------------------------------------------------------------
######## ⚠️ Disclaimer / अस्वीकरण ########
This video is created for educational & informational purposes only under Fair Use (Section 107, Copyright Act 1976). All trademarks and logos belong to their respective owners. No copyright infringement intended.
📩 For copyright concerns: chiragmahto@gmail.com
🌐 Follow & Support:
🎥 YouTube: https://www.youtube.com/@ChiragMahtoOfficial
📷 Instagram: https://www.instagram.com/chirag_._mahto
💼 LinkedIn: https://linkedin.com/in/chittrmahto
📘 Facebook: https://www.facebook.com/chittrmahto
💬 WhatsApp Channel: https://whatsapp.com/channel/0029VbBgm16002T93KB16U12
💬 Telegram Channel: https://t.me/+GAATbmOU4z1mMDY9
📘 Follow the process exactly as shown in the video.
💬 Questions? Drop them in the comments!
🔔 LIKE • SHARE • COMMENT • SUBSCRIBE @ChiragMahtoOfficial ❤️
💫 Chitt Ranjan Mahto (“CHIRAG”) 💫
🌍 https://chiragmahto.blogspot.com
🌍 https://chiragmahto.wordpress.com
#chiragmahtooffcial #chiragtutorial #chirag #chittranjanmahto #chiragmahto #mysql #mysqltutorial #mysqladmin #mysqlsecurity #mysqlremoteaccess #mysqlusers #dbatutorial #databaseadmin #linuxserver #day4
Видео Day 4: MySQL User Management & Remote Access Setup Securely 🔐 #mysql #dba #security #day4 канала Chirag Mahto
https://youtu.be/4XzY1J8m48c
# 📌 What is MySQL User Management?
MySQL User Management means:
* Creating users
* Giving permissions
* Restricting access
* Securing database connections
It helps you control:
✔ Who can access the database
✔ What they can do
✔ From where they can connect
✔ How secure the system is
# 🧠 Why is User Management Important?
Without proper user management:
❌ Anyone may access your database
❌ Data can be deleted accidentally
❌ Hackers can attack remotely
❌ Applications may get full admin access unnecessarily
Good security practice:
✔ Give only required permissions
✔ Restrict remote access
✔ Use strong passwords
✔ Disable remote root login
# 🏗 Real-World Practical Scenario
Suppose:
You have:
* Ubuntu Server → `192.168.50.128`
* MySQL installed
* A web application
* Developers connecting remotely
You want:
+ ---------- + ---------------- + -------------- +
| User | Purpose | Access |
+ ---------- + ---------------- + -------------- +
| appuser | Application | Read/Write |
| reportuser | Reports | Read Only |
| developer | Remote developer | Limited Access |
| adminuser | Administrator | Full Access |
+ ---------- + ---------------- + -------------- +
# 🚀 MySQL Remote Access + User Management
# 🎯 Goal
You have:
+ --------------- + ---------------- +
| Item | Value |
+ --------------- + ---------------- +
| MySQL Server IP | `192.168.50.128` |
| Root Password | `admin@123` |
| OS | Ubuntu |
| MySQL Version | MySQL 8.4 |
+ --------------- + ---------------- +
You want:
✔ Access MySQL from another server/laptop
✔ Create users properly
✔ Give Read Only / Write Only / Full Access
✔ Secure remote connections
✔ Understand errors and fixes
✔ Production-level setup
# 🧠 First Understand the Architecture
# 📌 Scenario
CLIENT MACHINE
192.168.50.129
│
│ MySQL Connection
▼
MYSQL SERVER
192.168.50.128
Port: 3306
# 🔥 IMPORTANT CONCEPTS
+ ------------ + ------------------------ +
| Concept | Meaning |
+ ------------ + ------------------------ +
| localhost | Same server only |
| 127.0.0.1 | Local loopback |
| 0.0.0.0 | Listen on all interfaces |
| % | Any IP |
| 192.168.50.% | Only local subnet |
| Port 3306 | Default MySQL port |
+ ------------ + ------------------------ +
# 🚀 FINAL BEST PRACTICE ARCHITECTURE
CLIENT MACHINE
192.168.50.129
│
│ MySQL Port 3306
▼
MYSQL SERVER
192.168.50.128
Users:
- readonlyuser
- writeuser
- appuser
- adminuser
Firewall:
Allow only 192.168.50.0/24
# 🎯 FINAL RECOMMENDATION
# 🟢 For Applications
Use:
SELECT, INSERT, UPDATE
# 🟢 For Reporting
Use:
SELECT ONLY
# 🟢 For Admin
Use:
ALL PRIVILEGES
# 🟢 For Security
✔ Strong passwords
✔ Restricted subnet
✔ No remote root
✔ Firewall restrictions
✔ Least privilege principle
✅ Final Conclusion
You learned:
✔ MySQL Installation
✔ User Management
✔ Grant/Revoke Privileges
✔ Secure Remote Access
✔ Firewall Configuration
✔ Production Security Best Practices
✔ Real-world Practical Setup
This setup is ideal for:
Developers
Production Servers
Client Applications
Remote Teams
DB Administrators
--------------------------------------------------------------------
######## ⚠️ Disclaimer / अस्वीकरण ########
This video is created for educational & informational purposes only under Fair Use (Section 107, Copyright Act 1976). All trademarks and logos belong to their respective owners. No copyright infringement intended.
📩 For copyright concerns: chiragmahto@gmail.com
🌐 Follow & Support:
🎥 YouTube: https://www.youtube.com/@ChiragMahtoOfficial
📷 Instagram: https://www.instagram.com/chirag_._mahto
💼 LinkedIn: https://linkedin.com/in/chittrmahto
📘 Facebook: https://www.facebook.com/chittrmahto
💬 WhatsApp Channel: https://whatsapp.com/channel/0029VbBgm16002T93KB16U12
💬 Telegram Channel: https://t.me/+GAATbmOU4z1mMDY9
📘 Follow the process exactly as shown in the video.
💬 Questions? Drop them in the comments!
🔔 LIKE • SHARE • COMMENT • SUBSCRIBE @ChiragMahtoOfficial ❤️
💫 Chitt Ranjan Mahto (“CHIRAG”) 💫
🌍 https://chiragmahto.blogspot.com
🌍 https://chiragmahto.wordpress.com
#chiragmahtooffcial #chiragtutorial #chirag #chittranjanmahto #chiragmahto #mysql #mysqltutorial #mysqladmin #mysqlsecurity #mysqlremoteaccess #mysqlusers #dbatutorial #databaseadmin #linuxserver #day4
Видео Day 4: MySQL User Management & Remote Access Setup Securely 🔐 #mysql #dba #security #day4 канала Chirag Mahto
Chirag Mahto Official Chirag Tutorial Chirag Chitt Ranjan Mahto Chirag Mahto MySQL MySQL Tutorial MySQL DBA MySQL Security MySQL Remote Access MySQL User Management MySQL Grant Privileges MySQL Users MySQL Server Setup Ubuntu MySQL Linux Server Database Administration DBA Tutorial Secure MySQL Setup Remote Database Access MySQL 8.4 LTS MySQL Configuration MySQL Commands MySQL Authentication Day 4
Комментарии отсутствуют
Информация о видео
27 мая 2026 г. 7:39:21
00:03:00
Другие видео канала
