在Centos7.2(64位)下搭建Web服务器
Posted HongDongJian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Centos7.2(64位)下搭建Web服务器相关的知识,希望对你有一定的参考价值。
一:通过Yum安装mysql
# wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm
# rpm -ivh mysql-community-release-el7-5.noarch.rpm
# yum install mysql-community-server
二:重启mysql,并设置密码
# service mysqld restart
# mysql -u root
#set password for ‘root‘@‘localhost‘ =password(‘password‘);
测试:
#exit
#mysql -u root -p
Enter Password:password
若登陆成功,则密码修改成功
三:mysql远程连接设置
mysql> grant all privileges on *.* to [email protected]‘%‘identified by ‘password‘;(把在所有数据库的所有表的所有权限赋值给位于所有IP地址的root用户。)
注:如果不是root用户,可先新建用户 mysql>create user ‘username‘@‘%‘ identified by ‘password‘; (然后通过grant来进行给予权限)
四:
以上是关于在Centos7.2(64位)下搭建Web服务器的主要内容,如果未能解决你的问题,请参考以下文章