zoukankan      html  css  js  c++  java
  • ubuntu 11.10安装mysql

    1. 安装

    devadm@devserver:~$ sudo apt-get install mysql-server
    ......
    The following NEW packages will be installed:
      libdbd-mysql-perl libdbi-perl libhtml-template-perl libmysqlclient16
      libnet-daemon-perl libplrpc-perl mysql-client-5.1 mysql-client-core-5.1
      mysql-common mysql-server mysql-server-5.1 mysql-server-core-5.1
    0 upgraded, 12 newly installed, 0 to remove and 1 not upgraded.
    Need to get 23.8 MB of archives.
    After this operation, 61.2 MB of additional disk space will be used.
    Do you want to continue [Y/n]?
    ......
    【mysql root 密码设为:mygreatsecret】
    ......



    2. 服务器配置
    1)编辑配置文件

    devadm@devserver:~$ sudo vim /etc/mysql/my.cnf

    将 'bind-address = 127.0.0.1' 替换为: 
    bind-address = 0.0.0.0

    2)防火墙,别忘了防火墙!

    devadm@devserver:~$ sudo ufw allow mysql
    Rule added
    Rule added (v6)
    devadm@devserver:~$
    devadm@devserver:~$ sudo ufw status
    Status: active
    To                         Action      From
    --                         ------      ----
    22/tcp                     ALLOW       Anywhere
    139/tcp                    ALLOW       Anywhere
    445/tcp                    ALLOW       Anywhere
    8080/tcp                   ALLOW       Anywhere
    3306                       ALLOW       Anywhere
    22/tcp                     ALLOW       Anywhere (v6)
    139/tcp                    ALLOW       Anywhere (v6)
    445/tcp                    ALLOW       Anywhere (v6)
    8080/tcp                   ALLOW       Anywhere (v6)
    3306                       ALLOW       Anywhere (v6)

    devadm@devserver:~$


    3)本机连接,配置用户和用户数据库

    devadm@devserver:~$ mysql -h 127.0.0.1 -u root -p
    Enter password:
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 43
    Server version: 5.1.58-1ubuntu1 (Ubuntu)

    Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
    This software comes with ABSOLUTELY NO WARRANTY. This is free software,
    and you are welcome to modify and redistribute it under the GPL v2 license

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

    mysql> CREATE DATABASE devcom;
    mysql> CREATE USER dev;
    mysql> GRANT ALL PRIVILEGES ON devcom.* TO 'dev'@'%' ;
    mysql> SET PASSWORD FOR 'dev'@'%' = PASSWORD('mylittlesecret');
    mysql>
    mysql> quit;
    Bye
    devadm@devserver:~$


    3.客户端
    1)安装mysql-client
    gt@gt-Dell:~$ sudo apt-get install mysql-client

    连接,创建用户表,插入测试数据

    gt@gt-Dell:~$ mysql -h devserver -u dev -p
    Enter password:
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 39
    Server version: 5.1.58-1ubuntu1 (Ubuntu)

    Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
    This software comes with ABSOLUTELY NO WARRANTY. This is free software,
    and you are welcome to modify and redistribute it under the GPL v2 license

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

    mysql>
    mysql> USE devcom
    \Database changed
    mysql> CREATE TABLE devuser (dev_id int, dev_name char(20));
    mysql> INSERT INTO devuser (dev_id,dev_name) VALUES(1001,'Pan Black');
    Query OK, 1 row affected (0.00 sec)

    mysql> SELECT * FROM DEVUSER;
    ERROR 1146 (42S02): Table 'devcom.DEVUSER' doesn't exist
    mysql> SELECT * FROM devuser;
    +--------+-----------+
    | dev_id | dev_name  |
    +--------+-----------+
    |   1001 | Pan Black |
    +--------+-----------+
    1 row in set (0.00 sec)

    mysql>

  • 相关阅读:
    SQL Server 存储过程语法及实例
    22个开源的PHP框架
    WAYOS路由WEB认证写入工具,有保存密码、提示日期时间星期及提醒的功能
    WAYOS使用定时开关来重启的,悲哀了吧
    WAYOS BCM扩展多WAN口继续研究,已实现扩展至N个WAN口,并成功在线了
    WAYOS免拉黑服务器版已开发成功,可在远程同时控制多台WAYOS,全新处理内核
    WAYOS 免拉黑工具全面测试成功,确定在ISP、PC甚至在BCM都获得成功,支持官方版本,真正的未动WAYOS的破解
    海蜘蛛V8想转WAYOS的用户有福了,用户数据转换工具出来了
    安网SECNET的机器解密——wayos的ODM产品,帮大家解除相关的疑惑
    WAYOS BCM版扩展WAN口研究
  • 原文地址:https://www.cnblogs.com/276815076/p/2428364.html
Copyright © 2011-2022 走看看