<b>Mysql linux安装日记</b>[MySQL防范]
本文“<b>Mysql linux安装日记</b>[MySQL防范]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
1.Add a login user and group for `mysqld' to run as:为‘mysqld’增添一个登陆用户和组
shell> groupadd mysql
shell> useradd -g mysql mysql
2.解压
shell> gunzip < mysql-5.0.15.tar.gz | tar -xvf -
shell> cd mysql-5.0.15
3.Configure the release and compile everything:配置和编译给configure分配可履行文件
shell> chmod +x configure
改变字符集为 GBK [默许字符集为ISO-8859-1(Latin1)]
shell> ./configure --prefix=/usr/local/mysql --with-charset=gbk
shell> make
(字符集还有big5、cp1251、cp1257、czech、danish、dec8、dos、euc_kr、gb2312 gbk、german1、hebrew、 hp8、hungarian、koi8_ru、koi8_ukr、latin1、latin2、sjis、swe7、tis620、ujis、usa7、win1251或win1251ukr)
4.安装全部东西
shell> make install
5.假如你想安装选项文件,利用当前存在的‘support-files’ 文件夹下的作为模板,比方:
shell> cp support-files/my-medium.cnf /etc/my.cnf
6.假如想mysqld每次开机自动启动的话.cp -r support-files/mysql.server /etc/init.d/就行了
shell> cp -r support-files/mysql.server /etc/init.d/mysql
shell> cd /etc/rc.d/init.d
shell> chmod +x mysql
shell> /sbin/chkconfig --del mysql
shell> /sbin/chkconfig --add mysql
7.进入安装目录
shell> cd /usr/local/mysql
8.假如你从前没有安装过MySQL,你必须成立一个MySQL准许的表
shell> bin/mysql_install_db --user=mysql
9.将程序的全部权限给‘root’ ,并且把数据目录的全部权给可以运行‘mysqld’的用户.假定MySQL的安装目录是(‘/usr/local/mysql’),号令以下所示:
把文件拥有权给‘root’
shell> chown -R root .
把数据目录拥护权给‘mysql’用户
shell> chown -R mysql var
把组的权限给'mysql'组
shell> chgrp -R mysql .
10.万事具有后,你便可以按照下面的号令测试并运行你的MySQL了:
shell> /usr/local/mysql/bin/mysqld_safe --user=mysql &
shell> service mysql start
11.在一切正常后,要做的第一件事情是更改管理员的密码.你可以运行mysqladmin (请注意,此号令不一定在你的path中,所以最好是转到此号令的目录中直接履行):
shell> cd bin
shell> ./mysqladmin -u root password *********
12.运行其他用户拜候本机:
shell> ./mysql -u root -p mysql
--------------------这里输入你方才改正的管理员密码
mysql> update user set host='' where host='localhost' and user='root';
mysql> exit
Bye
13.改正mysql数据库端口号
shell> vi /etc/my.cnf
--------------------改正里面的 port=**** 为你需求的端口号
14.重启利用
shell> service mysql restart
以上是“<b>Mysql linux安装日记</b>[MySQL防范]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |