安装MySQL
安装MySQL和php-mysql
[root@sample ~]# yum -y install mysql-server [root@sample ~]# yum -y install php-mysql
配置MySQL
[root@sample ~]#vim /etc/my.cnf 编辑MySQL的配置文件 [mysqld] datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.sock # Default to using old password format for compatibility with mysql 3.x # clients (those using the mysqlclient10 compatibility package).
找到
old_passwords=1
这一行,在这一行的下面添加新的规则,让MySQL的默认编码为UTF-8,添加
default-character-set = utf8
这一行
然后在配置文件的文尾填加如下语句:
[mysql]
default-character-set = utf8
[root@sample ~]# chkconfig mysqld on
[root@sample ~]# chkconfig --list mysqld
mysqld 0:off 1:off 2:on 3:on 4:on 5:on 6:off
[root@sample ~]#/etc/rc.d/init.d/mysqld start
Initializing MySQL database: [ OK ] Starting MySQL: [ OK ]
开放 MySQL 服务远程访问
修改数据库配置:
授权root用户进行远程连接,注意替换 “password” 为 root 用户真正的密码:
grant all privileges on *.* to root@"%" identified by "password" with grant option; flush privileges;
第二行命令使设置生效,可以马上连接。
PS:Ubuntu系统下则需要:
vim /etc/mysql/my.cnf
bind-address = 127.0.0.1
bind-address = 0.0.0.0 #允许任意ip地址访问
sudo /etc/init.d/mysqld restart
标签:
CentOS,MySQL
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
桃源资源网 Design By www.nqtax.com
暂无“CentOS系统中安装MySQL和开启MySQL远程访问的方法”评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。