1. 登陆

    mysql -u root -p
    Yhh920205

    1. 创建账号 ```plsql create user ‘hhyu’@’%’ identified by ‘Yhh920205’;

    grant all privileges on . to ‘hhyu’@’%’ with grant option;

    flush privileges;

    1. 3. 查看端口号
    2. ```plsql
    3. show global variables like ‘port‘;

    4.开放防火墙端口

    1. # firewall-cmd --list-all-zones #查看所有的zone信息
    2. # firewall-cmd --get-default-zone #查看默认zone是哪一个
    3. # firewall-cmd --zone=internal --change-zone=p3p1 #临时修改接口p3p1所属的zone为internal
    4. # firewall-cmd --add-service=http #暂时开放http
    5. # firewall-cmd --permanent --add-service=http #永久开放http
    6. # firewall-cmd --zone=public --add-port=80/tcp --permanent #在public中永久开放80端口
    7. # firewall-cmd --permanent --zone=public --remove-service=ssh #从public zone中移除服务
    8. # firewall-cmd --reload #重新加载配置