博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux快速安装mysql教程
阅读量:6821 次
发布时间:2019-06-26

本文共 710 字,大约阅读时间需要 2 分钟。

 

#安装mysql服务器:

yum install mysql-server
#设置开机启动
chkconfig mysqld on
#现在启动服务
service mysqld start
#设置root初始密码
mysqladmin -u root password 'xxxxxxx'
#登录
mysql -uroot -pxxxxxxx

========================================================over

 

为了公网上其他电脑可以连接该mysql。

 

#设置linux防火墙端口sudo vi  /etc/sysconfig/iptables#加入:-A INPUT -p tcp -m tcp --dport 3306 -j ACCEPT#重启防火墙service iptables restart#设置权限 create user lhc identified by 'lihongchao'; grant all privileges on *.* to 'lhc'@'%'identified by '***' with grant option; flush privileges;
mysql -h### -uroot -p#### -P3306
#如果是mysql所在的主机,又连在路由器的局域网内,则需要:路由器端口映射 #https://blog.csdn.net/sinat_21125451/article/details/68924671

转载于:https://www.cnblogs.com/andylhc/p/9340652.html

你可能感兴趣的文章