Linux下LAMP环境的安装(4)

安装MySQL数据库管理系统

1、增加用户名和用户组

#groupadd mysql

#useradd -g mysql mysql

2、进入源码包使用configure 检查并配置安装需要的系统环境,并生成安装配置文件

#./configure \

>--prefix=/usr/local/mysql \  //将软件安装在/usr/local/mysql目录下

>--with-extra-charsets=all  //在安装mysql时安装所有字符集

接着#make && make install

3、创建mysql数据库服务器的配置文件,可以使用源码包support-files目录中的my-medium.cnf文件作为模板,将其复制到/etc/目录下,命名为my.cnf文件即可。

[root@discuz mysql-5.0.96]# cp support-files/my-medium.cnf /etc/my.cnf

4、如果还没安装过MySQL,必须创建MySQL授权表。进入到安装目录/usr/local/mysql下,执行bin目录下的mysql_install_db脚本,用来初始化MySQL数据库的授权表,其中存储了服务器访问允许。

[root@discuz mysql-5.0.96]#cd /usr/local/mysql

[root@discuz mysql]# bin/mysql_install_db --user=mysql  //创建授权表

如果使用root用户运行上面的命令,应当使用--user选项,选项的值应当与你在第一步为运行服务器所创建的登录账户(mysql用户)相同。如果用mysql用户登录来运行上面的命令,可以省略--user选项。用mysql_install_db创建mysql授权表后,需要手动重新启动服务器。

5、将程序二进制的所有权改为root用户,数据目录的所有权改为运行mysqld程序的mysql用户。如果现在位于安装目录(/usr/local/mysql)下,命令行如下:

[root@discuz mysql]# chown -R root .(注意有点)  //将文件的所有属性改为root用户

[root@discuz mysql]# chown -R mysql var  //将数据目录的所有属性改为mysql用户

[root@discuz mysql]# chgrp -R mysql .  //将组属性改为mysql组

 

[root@discuz mysql]# ls -l

total 32

drwxr-xr-x 2 root  mysql 4096 May 15 10:41 bin

drwxr-xr-x 3 root  mysql 4096 May 15 10:40 include

drwxr-xr-x 3 root  mysql 4096 May 15 10:40 lib

drwxr-xr-x 2 root  mysql 4096 May 15 10:41 libexec

drwxr-xr-x 9 root  mysql 4096 May 15 10:41 mysql-test

drwxr-xr-x 5 root  mysql 4096 May 15 10:41 share

drwxr-xr-x 5 root  mysql 4096 May 15 10:41 sql-bench

drwx------ 4 mysql mysql 4096 May 15 11:53 var

 

6、在所需要的东西被安装完成后,应当使用下面的命令启动MySQL服务了,命令行如下:

[root@discuz mysql]#/usr/local/mysql/bin/mysqld_safe --user=mysql &

7、MySQL数据库服务器启动之后,查看一下它的端口3306是否打开,如果看到以下结果表明mysql服务启动成功。命令行如下

[root@discuz mysql]# netstat -tnl|grep 3306

tcp        0      0 0.0.0.0:3306                0.0.0.0:*                   LISTEN

8、使用mysqladmin验证服务器在运行中。以下命令提供了简单的测试,可检查服务器是否已经开启并能响应连接。命令行如下:

[root@discuz mysql]# bin/mysqladmin  version

Enter password: 

bin/mysqladmin  Ver 8.41 Distrib 5.0.96, for pc-linux-gnu on i686

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.

 

Server version          5.0.96-log

Protocol version        10

Connection              Localhost via UNIX socket

UNIX socket             /tmp/mysql.sock

Uptime:                 3 hours 31 min 23 sec

 

Threads: 1  Questions: 1  Slow queries: 0  Opens: 12  Flush tables: 1  Open tables: 6  Queries per second avg: 0.000

[root@discuz mysql]# bin/mysqladmin variables //查看所有mysql参数

 

9、设置访问权限,在mysql安装过程中,使用mysql_install_db程序安装了mysql数据库授权表,表定义了初始mysql用户账户和访问权限,所有初始化账户均没有密码。这些账户为超用户账户,可以执行任何操作。初始root账户的密码为空,因此任何人可以用root账户不用任何密码来连接mysql服务器,并具有所有权限,这意味着mysql安装未受保护。如果你想要防止客户端不使用密码用匿名用户来连接,你应当为匿名账户指定密码或删掉匿名帐户,应当为mysql root账户指定密码。使用mysql -u root启动mysql客户端控制台,连接mysql服务器。命令行如下:

[root@discuz mysql]# bin/mysql -u root  //没有密码可直接登录本机服务器

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

Your MySQL connection id is 5

Server version: 5.0.96-log 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.

mysql>

 

10、如果有匿名账户存在,它拥有全部的权限,因此删掉它可以提高安全,在mysql客户端执行SQL语如下:

mysql> delete from mysql.user where host='localhost' and user='';

Query OK, 1 row affected (0.07 sec)

 

mysql> flush privileges;

Query OK, 0 rows affected (0.00 sec)

 

11、可以用几种方法为root账户指定密码,我们选择用其中的一种。在mysql客户端命令行上使用set password指定密码,一定要使用password()函数来加密密码。例如下面设置localhost域的密码为comsenz。其他域可以使用同样的语句,使用的SQL语句如下。

mysql> set password for 'root'@'localhost'=password('comsenz');

Query OK, 0 rows affected (0.03 sec)

 

12、如果想退出mysql客户端,可以在mysql客户端提示符下输入命令exit或者quit,还可以按键盘ctrl+c组合键,都可以从mysql客户端退出。因为已经给mysql服务器的root账号设置了密码,所以再次登录mysql客户端就要提供密码才能进入。退出mysql客户端和重新启动mysql客户端的控制台命令如下。

mysql> exit

Bye

[root@discuz mysql]# bin/mysql -u root -h localhost -p

Enter password: 

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

Your MySQL connection id is 6

Server version: 5.0.96-log 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.

 

mysql> 

 

如果想关闭mysql服务器,在命令行使用mysql服务器的mysqladmin命令,通过-u参数给出mysql数据库管理员用户名root和通过-p参数给出密码,即可关闭mysql服务器。如下示:

[root@discuz mysql]# bin/mysqladmin -u root -p shutdown

Enter password: 

STOPPING server from pid file /usr/local/mysql/var/discuz.pid

120515 11:45:52  mysqld ended

 

[1]+  Done                    bin/mysqld_safe --user=mysql

[root@discuz mysql]# 

 

13、mysql服务器和apache服务器一样也有必要设置为开机自动运行,设置方法进入到mysql源代码目录/usr/local/src/mysql-5.0.96,将子目录support-files下的mysql.server文件复制到/etc/rc.d/init.d目录中,并重命名为mysqld,命令行如下。

[root@discuz mysql]# cd /usr/local/src/mysql-5.0.96

[root@discuz mysql-5.0.96]# cp support-files/mysql.server /etc/rc.d/init.d/mysqld

修改一下权限

[root@discuz mysql-5.0.96]# chown root.root /etc/rc.d/init.d/mysqld 

[root@discuz mysql-5.0.96]# chmod 755 /etc/rc.d/init.d/mysqld 

[root@discuz mysql-5.0.96]# 

把mysqld添加到chkconfig中

[root@discuz mysql-5.0.96]# chkconfig --add mysqld

在图形和字符集界面下自动启动mysqld

[root@discuz mysql-5.0.96]# chkconfig --level 3 mysqld on

[root@discuz mysql-5.0.96]# chkconfig --level 5 mysqld on

[root@discuz mysql-5.0.96]# 

再使用chkconfig --list命令检查设置

[root@discuz mysql-5.0.96]# chkconfig --list mysqld

mysqld          0:off   1:off   2:on    3:on    4:off    5:on    6:off

linux

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/95cc44b4015e8a0cfdbe1842e0313662.html