菜鸟笔记
提升您的技术认知

mysql 管理-ag真人游戏

阅读 : 1335

启动及关闭 mysql 服务器

首先,我们需要通过以下命令来检查mysql服务器是否启动:

ps -ef | grep mysqld

如果mysql已经启动,以上命令将输出mysql进程列表, 如果mysql未启动,你可以使用以下命令来启动mysql服务器:

root@host# cd /usr/bin
./safe_mysqld &

如果你想关闭目前运行的 mysql 服务器, 你可以执行以下命令:

root@host# cd /usr/bin
./mysqladmin -u root -p shutdown
enter password: ******

mysql 用户设置

如果你需要添加 mysql 用户,你只需要在 mysql 数据库中的 user 表添加新用户即可。

以下为添加用户的的实例,用户名为guest,密码为guest123,并授权用户可进行 select, insert 和 update操作权限:

root@host# mysql -u root -p
enter password:*******
mysql> use mysql;
database changed
mysql> insert into user 
          (host, user, password, 
           select_priv, insert_priv, update_priv) 
           values ('localhost', 'guest', 
           password('guest123'), 'y', 'y', 'y');
query ok, 1 row affected (0.20 sec)
mysql> flush privileges;
query ok, 1 row affected (0.01 sec)
mysql> select host, user, password from user where user = 'guest';
 ----------- --------- ------------------ 
| host      | user    | password         |
 ----------- --------- ------------------ 
| localhost | guest | 6f8c114b58f2ce9e |
 ----------- --------- ------------------ 
1 row in set (0.00 sec)

在添加用户时,请注意使用mysql提供的 password() 函数来对密码进行加密。 你可以在以上实例看到用户密码加密后为: 6f8c114b58f2ce9e.

注意:在 mysql5.7 中 user 表的 password 已换成了authentication_string。

注意:再注意需要执行 flush privileges 语句。 这个命令执行后会重新载入授权表。

如果你不使用该命令,你就无法使用新创建的用户来连接mysql服务器,除非你重启mysql服务器。

你可以在创建用户时,为用户指定权限,在对应的权限列中,在插入语句中设置为 'y' 即可,用户权限列表如下:

select_priv
insert_priv
update_priv
delete_priv
create_priv
drop_priv
reload_priv
shutdown_priv
process_priv
file_priv
grant_priv
references_priv
index_priv
alter_priv
另外一种添加用户的方法为通过sql的 grant 命令,你下命令会给指定数据库tutorials添加用户 zara ,密码为 zara123 。

root@host# mysql -u root -p password;
enter password:*******
mysql> use mysql;
database changed
mysql> grant select,insert,update,delete,create,drop
    -> on tutorials.*
    -> to 'zara'@'localhost'
    -> identified by 'zara123';

以上命令会在mysql数据库中的user表创建一条用户信息记录。

注意: mysql 的sql语句以分号 (;) 作为结束标识。

/etc/my.cnf 文件配置
一般情况下,你不需要修改该配置文件,该文件默认配置如下:

[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
[mysql.server]
user=mysql
basedir=/var/lib
[safe_mysqld]
err-log=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid

在配置文件中,你可以指定不同的错误日志文件存放的目录,一般你不需要改动这些配置。

管理mysql的命令

以下列出了使用mysql数据库过程中常用的命令:

use 数据库名 :选择要操作的mysql数据库,使用该命令后所有mysql命令都只针对该数据库。

mysql> use coonote;
database changed

show databases: 列出 mysql 数据库管理系统的数据库列表。

mysql> show databases;
 -------------------- 
| database           |
 -------------------- 
| information_schema |
| coonote             |
| cdcol              |
| mysql              |
| onethink           |
| performance_schema |
| phpmyadmin         |
| test               |
| wecenter           |
| wordpress          |
 -------------------- 
10 rows in set (0.02 sec)

show tables: 显示指定数据库的所有表,使用该命令前需要使用 use 命令来选择要操作的数据库。

mysql> use coonote;
database changed
mysql> show tables;
 ------------------ 
| tables_in_coonote |
 ------------------ 
| employee_tbl     |
| coonote_tbl       |
| tcount_tbl       |
 ------------------ 
3 rows in set (0.00 sec)

show columns from 数据表: 显示数据表的属性,属性类型,主键信息 ,是否为 null,默认值等其他信息。

mysql> show columns from coonote_tbl;
 ----------------- -------------- ------ ----- --------- ------- 
| field           | type         | null | key | default | extra |
 ----------------- -------------- ------ ----- --------- ------- 
| coonote_id       | int(11)      | no   | pri | null    |       |
| coonote_title    | varchar(255) | yes  |     | null    |       |
| coonote_author   | varchar(255) | yes  |     | null    |       |
| submission_date | date         | yes  |     | null    |       |
 ----------------- -------------- ------ ----- --------- ------- 
4 rows in set (0.01 sec)

show index from 数据表: 显示数据表的详细索引信息,包括primary key(主键)。

mysql> show index from coonote_tbl;
 ------------ ------------ ---------- -------------- ------------- ----------- ------------- ---------- -------- ------ ------------ --------- --------------- 
| table      | non_unique | key_name | seq_in_index | column_name | collation | cardinality | sub_part | packed | null | index_type | comment | index_comment |
 ------------ ------------ ---------- -------------- ------------- ----------- ------------- ---------- -------- ------ ------------ --------- --------------- 
| coonote_tbl |          0 | primary  |            1 | coonote_id   | a         |           2 |     null | null   |      | btree      |         |               |
 ------------ ------------ ---------- -------------- ------------- ----------- ------------- ---------- -------- ------ ------------ --------- --------------- 
1 row in set (0.00 sec)

show table status like 数据表\g: 该命令将输出mysql数据库管理系统的性能及统计信息。

mysql> show table status  from coonote;   # 显示数据库 coonote 中所有表的信息
mysql> show table status from coonote like 'coonote%';     # 表名以coonote开头的表的信息
mysql> show table status from coonote like 'coonote%'\g;   # 加上 \g,查询结果按列打印
网站地图