欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 运维知识 > 数据库 >内容正文

数据库

Linux系统xshell常用指令,linux系统安装数据库时,xshell工具常用MySQL(5.5)相关命令...

发布时间:2024/1/23 数据库 38 豆豆
生活随笔 收集整理的这篇文章主要介绍了 Linux系统xshell常用指令,linux系统安装数据库时,xshell工具常用MySQL(5.5)相关命令... 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

1、进入mysql数据库

[root@centos6 /]# mysql -u root -p

Enter password: root

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 11

Server version: 5.5.18-log MySQL Community Server (GPL)

Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

2、查看数据库编码

mysql> show variables like 'character%';

3、分页查看my.cnf文件

[root@centos6 ~]# cd /etc/

[root@centos6 etc]# more my.cnf

然后按space空格键进行下一页翻页,翻到最后按space时候会自动回到命令根目录[root@centos6 etc]#

4、分页查看文件目录(固定页数)

例如查看/etc目录下的子目录,每页显示5条信息文件

[root@centos6 etc]# ls -l  | more -5

5、停止、启动、重启mysql服务

[root@centos6 etc]# service mysql stop

Shutting down MySQL...                                     [确定]

[root@centos6 etc]# service mysql start

Starting MySQL...                                          [确定]

[root@centos6 etc]# service mysql restart

Shutting down MySQL.                                       [确定]

Starting MySQL..                                           [确定]

[root@centos6 etc]#

6、退出mysql

mysql> quit

7、查看MySQL版本

[root@centos6 /]# mysql --version

mysql  Ver 14.14 Distrib 5.5.18, for Linux (x86_64) using readline 5.1

8、[root@centos6 etc]# vi my.cnf

这个命令没任何作用,用完后需用“:quit”然后按回车(Enter)退出到命令根目录[root@centos6 etc]#

9、查看mysql的位置

[root@centos6 /]# whereis mysql

10、查看mysql占用的端口号

mysql> show variables like 'port';

11、查看mysql的监听、端口、及连接

[root@centos6 /]# netstat -apn|grep mysql

12、创建数据库

mysql> create database xxx;

总结

以上是生活随笔为你收集整理的Linux系统xshell常用指令,linux系统安装数据库时,xshell工具常用MySQL(5.5)相关命令...的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。