3 安装配置MySql 3.1绿色安装MySql
去官网下载mysql-5.5.25a-linux2.6-x86_64.tar.gz,通过tar -xzvf 解压到/opt。
按照安装包里INSTALL-BINARY文件说明进行即可,摘抄如下:
shell> groupadd mysql
shell> useradd -r -g mysql mysql
shell> cd /usr/local
shell> tar zxvf /path/to/mysql-VERSION-OS.tar.gz
shell> ln -s full-path-to-mysql-VERSION-OS mysql
shell> cd mysql
shell> chown -R mysql .
shell> chgrp -R mysql .
shell> scripts/mysql_install_db --user=mysql
shell> chown -R root .
shell> chown -R mysql data
# Next command is optional
shell> cp support-files/my-medium.cnf /etc/my.cnf
shell> bin/mysqld_safe --user=mysql &
shell>cp support-files/mysql.server /etc/init.d/mysql
然后修改/etc/init.d/mysql文件,把其中的
basedir=/opt/mysql
datadir=/opt/mysql/data
这样以后就可以通过service mysql start/stop 来启动/关闭mysql数据库服务了。
shell>chkconfig --add mysql
这样就可以自动启动mysql服务了。
mysqladmin -u root -p oldpassword newpassword
然后,进入bin目录,执行./mysql -u root -pnewpassword进入mysql命令界面。
mysql> GRANT ALL PRIVILEGES ON *.* TO root@"%" IDENTIFIED BY "yourpasswd";
mysql> flush privileges;
这样就能通过其他机器访问了,找一个有mysql客户端的机器,如果通过mysql -uroot -ppassword -h 机器IP能够访问的话说明安装正确。
3.3 修改MySql编码为UTF-8 参考: