ubantu12.04安装mysql的方法

 
玩儿完了windows下的数据库了,我们是不是的看看linux下的数据库怎么安装了,怎么玩儿了!!

数据库有Oracl和Mysql,在这里我就对Mysql怎么安装来简单的说明一下:

现在下载Mysql数据库客户端:

命令:

  sudo apt-get install mysql-server mysql-client 
 sudo apt-get install php5-mysql

 #中途会让你输入一次root用户密码,输入你进入ubantu的命令即可;


    #安装php5-mysql 是将php和mysql连接起来;


    一旦安装完成,MySQL 服务器应该自动启动。

    sudo start mysql #手动的话这样启动

    sudo stop mysql #手动停止


    当你修改了配置文件後,你需要重启 mysqld 才能使这些修改生效。

    要想检查 mysqld 进程是否已经开启,可以使用下面的命令:

    pgrep mysqld

    如果进程开启,这个命令将会返回该进程的 id。
    [编辑] 文件结构

    MySQL配置文件:/etc/mysql/my.cnf ,其中指定了数据文件存放路径

    datadir         = /var/lib/mysql

    如果你创建了一个名为 test 的数据库,那么这个数据库的数据会存放到 /var/lib/mysql/test 目录下。
    [编辑] 进入MySQL

    mysql -u root -p

    (输入mysql的root密码)

    qii@ubuntu:~$ mysql -u root -p
    Enter password:
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 37
    Server version: ubuntu12.04.2 (Ubuntu)

    Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

    mysql>

   输入:quit 退出数据库

    下面你就可以像在windows下一样进行增查改删了。

   

   如果要修改 MySQL 的管理员密码:

   命令:

    sudo mysqladmin -u root password newpassword;


   到这里,Mysql数据库就算安装完成了!!希望可以帮助各位ubantu的爱好者们!!


你可能感兴趣的:(mysql,ubuntu)