zoukankan      html  css  js  c++  java
  • ubuntu环境搭建

    1. 激活root用户:

      sudo passwd root

    2. 安装ssh服务:

      sudo apt-get install openssh-server

      开启服务:/etc/init.d/ssh start

      关闭服务:/etc/init.d/ssh stop

      重启服务:/etc/init.d/ssh restar

    3.  安装pip:

      wget https://bootstrap.pypa.io/get-pip.py --no-check-certificate
      sudo python get-pip.py

    4.  安装virtualenv和virtualenvwrapper

      sudo apt-get update

      sudo apt-get install python-virtualenv

      sudo easy_install virtualenvwrapper

    5. 安装mysql

      sudo apt-get install mysql-server

      sudo apt-get install mysql-client

      sudo apt-get install libmysqlclient-dev

      登陆: mysql -u root -p

    6. Ubuntu上设置MySQL可以远程访问

      修改/etc/mysql/mysql.conf.d/mysqld.cnf,将里面的bind-address = 127.0.0.1注释掉。

      6.1 对所有远程用户授权: 

        grant all privileges on *.* to 'root'@'%' identified by '123456';  #root为远程登录用户,123456为远程登录用户的密码

      6.2 对指定IP授权:

        GRANT ALL PRIVILEGES ON *.* TO root@'指定的IP地址' IDENTIFIED BY 'root用户密码' WITH GRANT OPTION;

      flush privileges;

      重启mysql: /etc/init.d/mysql restart

  • 相关阅读:
    前端TypeScript编写的代码发布后怎么在浏览器中调试
    oracle中的执行计划
    oracle中的物化视图
    oracle中的exists 和not exists 用法
    Oracle中的索引详解
    Oracle中动态SQL拼接
    oracle 中sql优化的几种方法
    oracle中常用函数大全
    Oracle中游标的用法
    oracle中表分区的实现
  • 原文地址:https://www.cnblogs.com/yuanqc/p/10192461.html
Copyright © 2011-2022 走看看