Rumah > Artikel > Operasi dan penyelenggaraan > linux怎么登录mysql
Linux是一套免费使用和自由传播的类Unix操作系统,是一个基于POSIX和UNIX的多用户、多任务、支持多线程和多CPU的操作系统。它能运行主要的UNIX工具软件、应用程序和网络协议。它支持32位和64位硬件。Linux继承了Unix以网络为核心的设计思想,是一个性能稳定的多用户网络操作系统。
MySQL是一个关系型数据库管理系统,由瑞典MySQL AB 公司开发,目前属于 Oracle 旗下产品。MySQL 是最流行的关系型数据库管理系统之一,在 WEB 应用方面,MySQL是最好的 RDBMS (Relational Database Management System,关系数据库管理系统) 应用软件之一。
linux怎么登录mysql?
mysql登录的方式是这样的:
[root@crmtestdb root]#mysql -u root -h 127.0.0.1 Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 Server version: 5.0.45-community MySQL Community Edition (GPL) Type ''help;'' or ''\h'' for help. Type ''\c'' to clear the buffer. mysql>
如果有密码的话,登录方式为:
mysql -u root -h 127.0.0.1 -p
至于该使用哪个数据库,使用哪个,应该是这样:
mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | test | | wt | +--------------------+ 4 rows in set (0.00 sec) mysql> use test Database changed mysql>
Atas ialah kandungan terperinci linux怎么登录mysql. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!