This page has been translated from English
.

הוספה או מחיקה של מסד הנתונים MySQL באמצעות מסוף - VPS ADMIN # 4

English אנגלית (שינוי)
  • Digg
  • Twitter
  • Technorati
  • del.icio.us
  • Facebook
  • MySpace
  • Reddit
  • StumbleUpon
  • LinkedIn
  • email

לשמור VPS שאינם מנוהלים - חלק 4: צור או סל MySQL DBS באמצעות מסוף

הלוגו של מסד הנתונים MySQL

זה מדריך כיצד לבצע את שתי מפות די בסיסי אבל נוח פעולות MySQL, יצירה binning מסד נתונים, באמצעות ממשק מסוף.

בטח, אתה יכול לעשות עם אלה, אומרים, phpMyAdmin, אבל זה בדרך מהירה יותר כדי לבצע פעולות כאלה באמצעות CLI.

"Substitute db_username", "db_password", "db_password" ו "db_name" עם אלה שלך.

להגדיר VPS שאינם מנוהלים (4 newbies) .. התנ"ך VPS

בעותק 20 / צעדים להדביק .. מאפס לגיבור, התיבה ריקה כדי חמוד-כשרת לינוקס.

גלול מטה על מדד סדרת מלא.

אז, היי, מחסן משותף & Viva וירטואלי! Hope it helps. The_guv

הוספת מסד הנתונים MySQL

ממשק שורת הפקודה, אנחנו צריכים קודם לקבל גישה פגז MySQL: --

mysql -u root -p

And before actually creating the db, you need to set up the database user and password.

grant all privileges on *.* to db_username@localhost identified by "db_password";

Now create the db:-

create database db_name;

And exit the MySQL shell:-

quit

Delete a MySQL Database

Easy tiger! From the command line interface, we need first to access mysql:-

mysql -u root -p

And delete the sucker:-

delete database db_name;

And here's an alternative way to exit the MySQL shell:-

\q

SETUP an Unmanaged VPS (4 Newbies) .. The V-P-S Bible

Serve multi sites & blogs on a budget .. at the fastest possible speed .. with the least downtime .. in the most secure environment .. and future-proofed for easy admin.

That's what the VPS Bible is about, stepped out in simple copy & paste guides.

From high traffic WordPress blogs to startup web hosts, here's what you need.

Set it up?   Click here for the 21 part follow-up .. V-P-S Admin

.