Home > Database > Mysql Tutorial > body text

Linux下MySQL编译安装备忘

WBOY
Release: 2016-06-07 16:59:34
Original
915 people have browsed it

1.建立mysql用户和用户组(不建立貌似不影响安装,但安全性需要重新规划)。2.编译安装(--prefix=/usr/local/mysql --with-char

1.建立mysql用户和用户组(不建立貌似不影响安装,但安全性需要重新规划)。

2.编译安装(--prefix=/usr/local/mysql --with-charset=utf8 指定要安装到的目录和要使用的编码)。

3.初始化数据库(mysql_install_db --user=mysql),这个数据库初始化必须要有,菜鸟们很容易忘记,不安装的话mysqld_safe是启不来的,会报一些莫名其妙的错误。

4.启动mysql(mysqld_safe &)

5.给root用户设置密码(mysqladmin -u root password 123456),这个密码设置菜鸟容易跟mysql的登录命令搞混,,此处设置密码的参数是password,而登录时使用密码的参数是-p(如6)。

6.登录mysql(mysql -u root -p),回车后会提示输入密码。

7.mysql初级命令(末尾都带分号才能完整执行,>是提示符)

>show databases;                     //查看mysql里都有什么数据库

>use test;                                 //切换到test库进行操作

>show tables;                          //查看当前库里所有的表

>create database gaso;            //创建新库,名为gaso

>select version();                      //查看mysql的版本

>use gaso;

>create table gasotab(i int);

>insert into gasotab values(6688);

>select * from gasotab;                           //在gaso数据库里建立测试表格gasotab,插入值并查看结果

>show processlist;                               //查看mysql会话列表

>show variables like 'character\_set\_%';              //查看当前mysql使用的字符集

linux

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template