您好,登录后才能下订单哦!
下文给大家带来有关prompt如何设置实现登陆MySQL显示用户名及当前数据库内容,相信大家一定看过类似的文章。我们给大家带来的有何不同呢?一起来看看正文部分吧,相信看完prompt如何设置实现登陆MySQL显示用户名及当前数据库你一定会有所收获。
实验环境:
[root@dbnode1 ~]# cat /etc/redhat-release CentOS release 6.5 (Final)
MySQL版本: Server version: 5.6.33-log MySQL Community Server (GPL)
默认情况连接到 mysql 库后不会显示当前连接的数据库名。如下图,
这样在登陆MySQL后每次都看不到当前用户和主机名以及当前的数据库信息,给维护工作带来不便。其实在登陆MySQL后可以通过设置MySQL配置文件的方式,显示以上信息。方法:修改MySQL配置文件/etc/my.cnf中的[mysqld]中的prompt选项。过程如下:
(1)打开MySQL的配置文件:编辑/etc/my.cnf 添加以下如下红颜色一行
[root@dbnode1 ~]# vi /etc/my.cnf
[client]
port = 3306
socket = /tmp/mysql.sock
prompt="\\u@\\h:\\d>"
#character_set_server = utf8
#character_set_client = utf8
[mysqld]备注:设置后重启MySQL 服务。 \u 表示用户名, \h 表示主机名, \d 表示当前数据库。
设置格式可以添加相关符号比如[]等
(2)重启 MySQL 服务
[root@dbnode1 ~]# /etc/init.d/mysql restart
Shutting down MySQL...... SUCCESS!
Starting MySQL.................. SUCCESS!
(3)连接测试
[root@dbnode1 ~]# mysql -uroot -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.6.33-log MySQL Community Server(GPL) Copyright (c) 2000, 2016, Oracle and/or itsaffiliates. All rights reserved. Oracle is a registered trademark of OracleCorporation and/or its affiliates. Other names may be trademarks of theirrespective owners. Type 'help;' or '\h' for help. Type '\c' to clearthe current input statement.
root@localhost:(none)>use mysql
Reading table information for completion of tableand column names
You can turn off this feature to get a quickerstartup with -A
Database changed
root@localhost:mysql>use test
Reading table information for completion of tableand column names
You can turn off this feature to get a quickerstartup with -A
Database changed
root@localhost:test>
说明:
关于配置文件/etc/my.cnf的修改中,prompt选项,可以通过帮助文档查看
--prompt 更多设置可以查看MySQL命令帮助
对于上文关于prompt如何设置实现登陆MySQL显示用户名及当前数据库,大家觉得是自己想要的吗?如果想要了解更多相关,可以继续关注我们的行业资讯板块。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。