进入你的服务器后台
- Root shell - basic
- Root shell - advanced
- Root shell -interactive
- install new Os 重装系统
这里一般默认就是centos
我们运行 RootShell-interactive 交互性命令行 ,因为一般涉及到中断型的命令(例如 确认安装软件包等操作)
更新软件包
$ yum update
安装mysql数据库
$ yum install mysql
$ yum install mysql-server
$ yum install mysql-devel
重启mysql
$ service mysqld start
# 查看mysql状态
$ service mysqld status
连接mysql,默认root密码是root
$ mysql -u root -p
退出mysql
mysql>exit
show databases;
select host,user,password from user;
开放mysql 让外网可以使用
# %为所有ip都可以远程访问
mysql>update user set host = '%' where user = 'root' and host='localhst';
# 查看一下修改
mysql>select host, user from user;
# 使权限立即生效
mysql>FLUSH PRIVILEGES
查看防火墙
$ iptables -L
开放防火墙3306
$ iptables -A INPUT -p tcp --dport 3306