my.cnf 参数说明

[mysql]

prompt="\\[email protected]\\h:\p  \\R:\\m:\\s [\\d]>"

The prompt command reconfigures the default mysql> prompt. The string for defining the prompt can contain the following special sequences.

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 [email protected]_name account name

\u Your user name
\v The server version
\w The current day of the week in three-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

来自为知笔记(Wiz)

时间: 2024-11-06 23:49:49

my.cnf 参数说明的相关文章

MySQL my.cnf 参数说明

MySQL 5.5.13 参数说明: [client] character-set-server = utf8 port    = 3306 socket  = /data/mysql/3306/mysql.sock [mysqld] character-set-server = utf8 user    = mysql port    = 3306 socket  = /data/mysql/3306/mysql.sock basedir = /usr/local/webserver/mysq

MySQL 5.6 my.cnf 参数说明

# 以下选项会被MySQL客户端应用读取. # 注意只有MySQL附带的客户端应用程序保证可以读取这段内容. # 如果你想你自己的MySQL应用程序获取这些值. # 需要在MySQL客户端库初始化的时候指定这些选项. # [client] #password = [your_password] port = @[email protected] socket = @[email protected] # *** 应用定制选项 *** # # MySQL 服务端 # [mysqld] # 一般配置

MySQL参数优化

目前针对MySQL数据库进行了一些参数优化,具体如下: my.ini / my.cnf 参数说明 #使用查询缓存 query_cache_size=100M                     #设置MySQL查询缓存的大小,如果MySQL收到同样的查询语句且数据未发生变化,则直接返回缓存中的数据 query_cache_type=1                        #1:开启缓存,0:关闭 innodb_buffer_pool_size=128M              #

MYSQL_Linux安装笔记

***实验环境*** 1.系统平台:RedHat Linux 6.5 [[email protected] ~]# uname -a Linux mysql 2.6.32-431.el6.x86_64 #1 SMP Sun Nov 10 22:19:54 EST 2013 x86_64 x86_64 x86_64 GNU/Linux [[email protected] ~]# cat /etc/issue Red Hat Enterprise Linux Server release 6.5

Linux 安装与配置 mysql 环境

Centos系统,可以提前将这些工具包安装上: # yum -y install gcc libxml2-dev curl screen \libpng12-dev autoconf libpcre3-dev make bzip2 \libevent-dev patch libjpeg62-dev libcurl4-openssl-dev \libfreetype6-dev g++ libtool libncurses5-dev psmisc lrzsz 以下安装中涉及的几点需要提前说明的问题:

MYSQL部署配置管理5.6版本

一.MYSQL服务器端程序层次结构 1.1 连接层 连接协议:tcpip  socket 验证连接合法性 分配连接线程为客户端服务 1.2 SQL层 解析 优化 授权表 查询 提供缓存 1.3 存储引擎层 插件式的 存储数据到磁盘 数据提取 2.数据库的逻辑结构 库 show databases use mysql 表 show tables; 记录(行.列) select user,host,password from user; desc user 3.数据库的物理结构(怎么存储的) 对象存

Linux 下安装 mysql

1.    Mysql数据库的安装与初始化 1.1 Mysql安装 安装Mysql:   $ cd /usr/local/ //查询出已安装的mariadb $ rpm -qa|grep mariadb $ rpm -e --nodeps 文件名 $ rm /etc/my.cnf 执行以下命令来创建mysql用户组 $ groupadd mysql 执行以下命令来创建一个用户名为mysql的用户并加入mysql用户组 $ useradd -g mysql mysql $ mkdir /usr/l

mysql my.cnf 配置建议

http://blog.csdn.net/hzcyclone/archive/2010/08/18/5821370.aspx mysql的配置文件是/etc/my.cnf,通过修改它来配置mysql. /etc/my.cnf来自以下文件: 如果你的内存≤64M,则复制/usr/share/doc/mysql/my-small.cnf为/etc/my.cnf # This is for a system with little memory ( # from time to time and it

Linux下MySQL5.7.18二进制包安装(无默认配置文件my_default.cnf)

本文出处:http://www.cnblogs.com/wy123/p/6815049.html 最新在学习MySQL,纯新手,对Linux了解的也不多,因为是下载的最新版的MySQL(MySQL5.7.18)二进制包,CentOS7.2下测试安装,方便以后折腾.大概步骤如下,安装删除反复折腾了几遍,按照以下步骤,应该没啥问题了.也没有想象中的复杂,大部分步骤都是参考网上的,照做就是了,出错的话,多尝试,多查资料. 操作系统版本 创建mysql组和用户 下载最新版的MySQL 5.7.18二进制