https://bwh1.net 官网

    进入你的服务器后台

    • Root shell - basic
    • Root shell - advanced
    • Root shell -interactive
    • install new Os 重装系统

    这里一般默认就是centos
    我们运行 RootShell-interactive 交互性命令行 ,因为一般涉及到中断型的命令(例如 确认安装软件包等操作)

    mysql安装 - 图1

    mysql安装 - 图2

    更新软件包

    1. $ yum update

    安装mysql数据库

    1. $ yum install mysql
    2. $ yum install mysql-server
    3. $ yum install mysql-devel

    重启mysql

    1. $ service mysqld start
    2. # 查看mysql状态
    3. $ service mysqld status

    连接mysql,默认root密码是root

    1. $ mysql -u root -p

    退出mysql

    1. mysql>exit
    1. show databases;
    2. select host,user,password from user;

    开放mysql 让外网可以使用

    1. # %为所有ip都可以远程访问
    2.   mysql>update user set host = '%' where user = 'root' and host='localhst';
    3. # 查看一下修改
    4.   mysql>select host, user from user;
    5. # 使权限立即生效
    6. mysql>FLUSH PRIVILEGES

    查看防火墙

    1. $ iptables -L

    开放防火墙3306

    1. $ iptables -A INPUT -p tcp --dport 3306