快速业务通道

Linux系统下安装mysql数据库

作者 佚名技术 来源 Linux系统 浏览 发布时间 2012-05-16
shell> groupadd mysql shell> useradd -g mysql mysql tar -zxvf mysql*****tar.gz cd /usr/local/mysql5.0.22 shell>./configure --prefix=/usr/local/mysql shell> make shell> make install shell> cp support-files/my-medium.cnf /etc/my.cnf shell> cd /usr/local/mysql shell> bin/mysql_install_db --user=mysql shell> chown -R root . shell> chown -R mysql var shell> chgrp -R mysql . shell> bin/mysqld_safe --user=mysql & [root@centos mysql]# bin/mysqld_safe --user=mysql & 回车后会出现 [1] 20100 [root@centos mysql]# Starting mysqld daemon with databases from usrlocalmysqlvar 测试 #netstat -tnl 查看端口, 看到 3306 就是mysql 的默认端口, 显示3306端口表示成功启动了mysql 二 1 登录MySQL [root@test1 local]# cd mysql/bin [root@test1 bin]#./mysql -p
Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 1 to server version: 4.0.16-standard Type ''help;'' or ''h'' for help. Type ''c'' to clear the buffer. mysql> 出现了“mysql>”提示符,恭喜你,安装成功! 退出mysql mysql>quit 2 注意 如果出现 ERROR 2002 (HY000): Can''t connect to local MySQL server through socket ''/tmp/mysql.sock'' (2) ----没有启动tomcat 3 修改登录密码 MySQL默认没有密码,安装完毕增加密码的重要性是不言而喻的. 1)命令 usr/bin/mysqladmin -u root password ''new-password''格式:mysqladmin -u用户名 -p旧密码 password 新密码 2)例子 例1:给root加个密码123456. 键入以下命令 : [root@test1 local]# /usr/local/mysql/bin/mysqladmin -u root password 123456 注:开始时root没有密码,-p旧密码一项就可以省略了. 3)测试是否修改成功 (3-1)不用密码登录 [root@test1 local]# mysql ERROR 1045: Access denied for user: ''root@localhost'' (Using password: NO) 显示错误,说明密码已经修改. (3-2)用修改后的密码登录 [root@test1 bin]# ./mysql -u root -p Enter password: (输入修改后的密码123456) Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 4 to server version: 4.0.16-standard Type ''help;'' or ''h'' for help. Type ''c'' to clear the buffer. mysql> 成功! 这是通过mysqladmin命令修改口令,也可通过修改库来更改口令. 注意:如果在启动mysql时出现 [root@localhost bin]# A mysqld process already exists 使用下面的命令 先pkill -9 mysql,然后再重新登陆mysql,就没事了 四 备份与恢复 1、备份 例如:将创建的aaa库备份到文件back_aaa中 [root@test1 root]# cd /home/data/mysql (进入到库目录,本例库已由val/lib/mysql转到/home/data/mysql,见上述第七部分内容) [root@test1 mysql]# mysqldump -u root -p --opt aaa > back_aaa 2、恢复 [root@test bin]#./mysql -u root -p linux(在mysql数据库中需要建立一个新的数据库名称) < /home/sa/newcomment.dump 五 MySQL的常用操作 注意:MySQL中每个命令后都要以分号;结尾. 1、显示数据库 mysql> show databases; ---------- | Database | ---------- | mysql| | test | ---------- 2 rows

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号