MySQL登陆后提示符的修改

方法一:mysql命令行修改方式

mysql>prompt \u@night \r:\m:\s->

PROMPT set to '\u@night \r:\m:\s->'

root@night 04:52:47->

root@night 04:53:26->help

For information about MySQL products and services, visit:

http://www.mysql.com/

For developer information, including the MySQL Reference Manual, visit:

http://dev.mysql.com/

To buy MySQL Enterprise support, training, or other products, visit:

https://shop.mysql.com/

List of all MySQL commands:

Note that all text commands must be first on line and end with ';'

?(\?) Synonym for `help'.

clear(\c) Clear the current input statement.

connect(\r) Reconnect to the server. Optional arguments are db and host.

delimiter (\d) Set statement delimiter.

edit(\e) Edit command with $EDITOR.

ego(\G) Send command to mysql server, display result vertically.

exit(\q) Exit mysql. Same as quit.

go(\g) Send command to mysql server.

help(\h) Display this help.

nopager(\n) Disable pager, print to stdout.

notee(\t) Don't write into outfile.

pager(\P) Set PAGER [to_pager]. Print the query results via PAGER.

print(\p) Print current command.

prompt(\R) Change your mysql prompt.修改mysql提示符

quit(\q) Quit mysql.

rehash(\#) Rebuild completion hash.

source(\.) Execute an SQL script file. Takes a file name as an argument.

status(\s) Get status information from the server.

system(\!) Execute a system shell command.

tee(\T) Set outfile [to_outfile]. Append everything into given outfile.

use(\u) Use another database. Takes database name as argument.

charset(\C) Switch to another charset. Might be needed for processing binlog with multi-byte charsets.

warnings(\W) Show warnings after every statement.

nowarning (\w) Don't show warnings after every statement.

For server side help, type 'help contents'

root@night 04:53:38->

方法二:通过shell命令行修改

[root@localhost data]# mysql -u root -p'www.123' --prompt="\u@\h:\d-->"

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

Your MySQL connection id is 8

Server version: 5.5.27 Source distribution

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.

root@localhost:(none)-->

方法三:配置文件修改方法

[root@localhost data]# tail -2 /etc/my.cnf

[mysql]

prompt=\\u@night\\r:\\m:\\s->

[root@localhost data]#

[root@localhost data]# mysql -uroot -p'www.123'

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

Your MySQL connection id is 9

Server version: 5.5.27 Source distribution

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.

root@night07:11:51->

提示:不需要重新启动数据库,只需要关闭数据库重新启动就可以了。

注意:在配置文件中要加反斜杠以屏蔽特殊意义。

方法四:通过环境变量修改

[root@localhost data]# tail -1 /etc/profile

export MYSQL_PS1="(\u@\h) [\d]-->"

[root@localhost data]# source /etc/profile

[root@localhost data]# mysql -uroot -p'www.123'

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

Your MySQL connection id is 12

Server version: 5.5.27 Source distribution

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.

(root@localhost) [(none)]-->

格式解释:

通过man mysql 得到如下内容:

option

description

 

\c

A counter that increments for each statement you issue

 

\D

The full current date

 

\d

The default database

 

\h

The server host

 

\l

The current delimiter

 

\m

Minutes of the current time

 

\n

A newline character

 

\O

The current month in three-letter format (Jan, Feb, ...)

 

\o

The current month in numeric format

 

\P

am/pm

 

\p

The current TCP/IP port or socket file

 

\R

The current time, in 24-hour military time (0–23)

 

\r

The current time, standard 12-hour time (1–12)

 

\S

Semicolon

 

\s

Seconds of the current time

 

\t

A tab character

 

\U

Your full user_name@host_name account name

 

\u

Your user name

 

\v

The server version

 

\w

The current day of the week inthree-letter format (Mon, Tue, ...)

 

\Y

The current year, four digits

 

\y

The current year, two digits

 

\_

A space

 

\

A space (a space follows the backslash)

 

\

Single quote

 

\"

Double quote

 

\\

A literal “\” backslash character

 

\x

x, for any “x” not listed above

 

本文出自 “night ★linux运维” 博客,请务必保留此出处http://night820.blog.51cto.com/7492507/1341672

(转)MySQL登陆后提示符的修改的更多相关文章

  1. prompt更改MySQL登陆后的提示符

    临时生效 mysql> prompt \u@standby \r:\m:\s > PROMPT set to '\u@standby \r:\m:\s >' root@standby ...

  2. 树莓派3b+ Ubuntu 16.04 MATA系统 ssh远程登陆后修改主机名、用户密码和用户名

    写在前面: 刚刚开始写博客,记录下自己的学习过程,备忘. 最近在使用树莓派做智能小车的开发,使用的是树莓派3b+,安装的是Ubuntu 16.04 MATA 系统,安装系统后需要修改主机名,登陆密码以 ...

  3. mysql安装完之后,登陆后发现只有两个数据库

    mysql安装完之后,登陆后发现只有两个数据库:mysql> show databases;+--------------------+| Database           |+------ ...

  4. Centos6.5修改mysql登陆用户密码

    1.修改mysql的登陆设置: vim /etc/my.cnf 并在[mysqld] 下面添加一句:skip-grant-tables=1 添加成功后保存退出. 2.重启mysql并修改密码 重启my ...

  5. linux修改登陆后进入的默认目录

    如将root登陆后进入的路径由/root改为/opt/FriendlyARM/linux/u-boot-mini6410修改/etc/pssswd 修改行 root:x:0:0:root:/root: ...

  6. 修改mysql端口后重启mysql报错:Can't start server: Bind on TCP/IP port. Got error...n denied

    1:错误信息:如下 [root@host ~]# systemctl status mariadb ● mariadb.service - MariaDB database server Loaded ...

  7. 修改了Mysql密码后连接不到服务且无报错信息解决方法以及修改密码方法

    安装MYSQL后更改了root的密码后用 net start mysql 启动时出现:无法启动,无报错信息 使用以下命令:1.管理员方式cmd进入mysql安装目录的bin目录下2.执行命令:mysq ...

  8. mysql 登陆与退出

    Mysql登陆与退出 登陆参数 登陆命令 mysql -uroot -p 回车输入密码 退出有三个命令:  exit  quit  \q 修改mysql提示符 连接mysql客户端时通过参数指定: 登 ...

  9. ubuntu上mysql服务器安装后只能本地连接不能远程连接的问题

    安装好mysql后,想使用另一个电脑进行远程登录,在登录时 提示拒绝连接 百度后,发现需要两个步骤解决该问题 /etc/mysql/my.cnf 里修改bind_address = 0.0.0.0  ...

随机推荐

  1. webservice大文件怎么传输

    版权所有 2009-2018荆门泽优软件有限公司 保留所有权利 官方网站:http://www.ncmem.com/ 产品首页:http://www.ncmem.com/webapp/up6.2/in ...

  2. HDU1253 胜利大逃亡(BFS) 2016-07-24 13:41 67人阅读 评论(0) 收藏

    胜利大逃亡 Problem Description Ignatius被魔王抓走了,有一天魔王出差去了,这可是Ignatius逃亡的好机会. 魔王住在一个城堡里,城堡是一个A*B*C的立方体,可以被表示 ...

  3. Paxos与zookeeper

    1,什么是Paxos算法? Paxos算法是分布式计算领域中一个非常重要的算法,主要解决分布式系统如何就某个值(决议)达成一致的问题.一个典型的场景是分布式数据库的一致问题:如果分布式数据库的各个节点 ...

  4. express 阮一峰的博客

    http://javascript.ruanyifeng.com/nodejs/express.html next没怎么用过... 一个不进行任何操作.只传递request对象的中间件 functio ...

  5. spring mvc静态资源请求和<mvc:annotation-driven>

    自己看了官方文档,也到网上查了下,目前理解如下: <mvc:annotation-driven/>相当于注册了DefaultAnnotationHandlerMapping和Annotat ...

  6. java web基础之mvc模式设计(一)--使用httpservlet实现mvc分层设计,DAO层使用的是dbutils实现与数据库的链接

    一:1.最终的实现效果图: 2.案例的目录结构: 3.案例中使用到的jar包: 二:案例的链接数据库的层次结构关系:数据库是:mysql ,数据库名字:dsm,表格名字:customers 数据库表格 ...

  7. Python学习-25.Python中的分数

    在Python中,不止有浮点数(float),而且还有分数(Fraction)这个类型. 要使用分数,必须引入一个模块. import fractions 然后就可以声明一个分数了 x = fract ...

  8. Excel 帮助无法正常工作的解决方法

    Excel 中出现错误:帮助无法正常工作,但您仍可以转到 Office.com,以获得最新和最好的文章.视频和培训课程. 英文消息:Help isn't working, but you can st ...

  9. LeetCode135:Candy

    题目: There are N children standing in a line. Each child is assigned a rating value. You are giving c ...

  10. Checkpoint--实现步骤

    Checkpoint 实现步骤: 1.将CheckPoint标记写入日志(标记中包含当前数据库中活动的事务信息),并将Log Block写入持久化存储 2.将Buffer Pool中所有的脏页写入磁盘 ...