登录 注册
当前位置:主页 > 资源下载 > 16 > MySQL安装及命令大全

MySQL安装及命令大全

  • 更新:2024-07-07 21:16:56
  • 大小:63KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:MySQL - 数据库
  • 格式:DOCX

资源介绍

1、安装: 1. 用root登陆: su 2. rpm -ivh MySQL-server-5.5.18-1.linux2.6.i386.rpm 默认会选择安装目录为/usr/….,可用rpm –qpl MySQL-ser****.rpm查看。 # rpm -ivh MySQL-client-5.5.18-1.linux2.6.i386.rpm 安装客户端后,才能用mysql命令连接。如下: [root@localhost setup]# mysql Welcome to the MySQL monitor….  1、启动   MySQL安装完成后启动文件mysql在/etc/init.d目录下,在需要启动时运行下面命令即可。   [root@test1 init.d]# /etc/init.d/mysql start   2、停止   /usr/bin/mysqladmin -u root -p shutdown   3、自动启动   1)察看mysql是否在自动启动列表中   [root@test1 local]# /sbin/chkconfig --list   2)把MySQL添加到你系统的启动服务组里面去   [root@test1 local]# /sbin/chkconfig – add mysql   3)把MySQL从启动服务组里面删除。   [root@test1 local]# /sbin/chkconfig – del mysql 修改admin密码:   usr/bin/mysqladmin -u root password 'new-password'   格式:mysqladmin -u用户名 -p旧密码 password 新密码