欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

LNMP(linux+nginx+mysql+php)服务器环境配置(一)mysql安装

程序员文章站 2022-05-08 12:21:53
...
搭建LNMP(linux+nginx+mysql+php)服务器,首先搭建mysql服务器

1 安装mysql
yum install -y mysql mysql-server mysql-devel


2 启动mysql服务
service mysqld start


3 设置root用户密码
mysqladmin -u root password 123456


4 登录mysql
mysql -u root -p123456


5 mysql远程登录。windows下,用SQLyog或navicat等软件连接mysql:
  首先查看mysql服务使用哪个端口
netstat -tulnp

LNMP(linux+nginx+mysql+php)服务器环境配置(一)mysql安装
            
    
    博客分类: centos操作系统 mysqllnmpgrant 

  其次,防火墙设置
iptables -I INPUT 3 -p tcp --dport 3306 -j ACCEPT
service iptables save
service iptables restart 

  再次,赋予用户权限(我这里给了全部权限)
mysql -u root -p123456
show grants;

LNMP(linux+nginx+mysql+php)服务器环境配置(一)mysql安装
            
    
    博客分类: centos操作系统 mysqllnmpgrant 

这里注意:password要密文,所以执行select password('你想要的密码')
LNMP(linux+nginx+mysql+php)服务器环境配置(一)mysql安装
            
    
    博客分类: centos操作系统 mysqllnmpgrant 

  最后:用SQLyog或navicat连接

LNMP(linux+nginx+mysql+php)服务器环境配置(一)mysql安装
            
    
    博客分类: centos操作系统 mysqllnmpgrant 

LNMP(linux+nginx+mysql+php)服务器环境配置(一)mysql安装
            
    
    博客分类: centos操作系统 mysqllnmpgrant 



  • LNMP(linux+nginx+mysql+php)服务器环境配置(一)mysql安装
            
    
    博客分类: centos操作系统 mysqllnmpgrant 
  • 大小: 10 KB
  • LNMP(linux+nginx+mysql+php)服务器环境配置(一)mysql安装
            
    
    博客分类: centos操作系统 mysqllnmpgrant 
  • 大小: 6.4 KB
  • LNMP(linux+nginx+mysql+php)服务器环境配置(一)mysql安装
            
    
    博客分类: centos操作系统 mysqllnmpgrant 
  • 大小: 10.2 KB
  • LNMP(linux+nginx+mysql+php)服务器环境配置(一)mysql安装
            
    
    博客分类: centos操作系统 mysqllnmpgrant 
  • 大小: 13.3 KB
  • LNMP(linux+nginx+mysql+php)服务器环境配置(一)mysql安装
            
    
    博客分类: centos操作系统 mysqllnmpgrant 
  • 大小: 21.1 KB
相关标签: mysql lnmp grant