كيفيه عمل مستخدم جديد
داخل MYSQL
ومنح لهذا المستخدم كل الصلاحيات لقاعده بيانات معينة
ماعدا حذف هذة القاعدة البيانات .....؟؟
من خلال سطر اﻷوامر .....!!!!
وشكرا
كيفيه عمل مستخدم جديد ?
access the MySQL shell type the following command and enter your MySQL root userpassword when prompted:
- mysql -u root -p.
- CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'user_password'; or
- CREATE USER 'newuser'@'your ip address' IDENTIFIED BY 'user_password'; or
- CREATE USER 'newuser'@'%' IDENTIFIED BY 'user_password';