
MYSQL
iteye_3997
这个作者很懒,什么都没留下…
展开
-
Warning: World-writable config file '/etc/my.cnf' is ignored
To fix this problem, use the following command to change file’s permissions要修改该问题,使用以下命令更改该文件的权限。chmod 644 /etc/my.cnf原创 2013-04-30 18:02:19 · 141 阅读 · 0 评论 -
创建一个MYSQL用户
创建一个MYSQL用户C:>mysql -uroot -pEnter password: ******Welcome to the MySQL monitor. Commands end with ; or g.Your MySQL connection id is 16 to server version: 5.0.18-ntType 'help;' or 'h' for hel...原创 2014-08-08 12:07:48 · 129 阅读 · 0 评论 -
在CentOS系统打开3306端口
CentOS 打开mysql 3306端口 2012-09-18 15:12:40| 分类: linux |举报 |字号 订阅 在CentOS系统中防火墙默认是阻止3306端口的,我们要是想访问mysql数据库,我们需要这个端口,命令如下:1 /sbin/iptables -I INPUT -p tcp --dport 3306 -j...原创 2014-08-08 09:48:34 · 259 阅读 · 0 评论 -
centos彻底删除mysql
查看是否还有mysql软件:有的话继续删除rpm -qa|grep mysqlyum remove mysql mysql-server mysql-libs compat-mysql51rm -rf /var/lib/mysqlrm /etc/my.cnf原创 2014-08-08 09:24:16 · 128 阅读 · 0 评论 -
修改Mysql root属性让root用户可以远程登录
mysql -u root -p mysql>use mysql; mysql>update user set host = '%' where user = 'root'; mysql>select host, user from user;原创 2013-04-29 22:43:11 · 980 阅读 · 0 评论 -
Centos6.4 用rpm方式安装MySql5.6
1、查看系统是否安装了MySQL 使用命令: #rpm -qa | grep mysql 2、卸载已安装的MySQL 卸载mysql命令如下: #rpm -e --nodeps mysql-libs-5.1.61-4.el6.x86_64 要将 /var/lib/mysql文件夹下的所有文件都删除干净 3、安装新的MySQ...原创 2013-04-26 21:56:55 · 245 阅读 · 0 评论 -
MySQL 5.6 GA发布及众Linux逃亡潮
[size=medium]摘要:今日,Oracle 公司宣布 MySQL 5.6 GA,正式版为 5.6.10。新版本对功能和性能做了部分改进,引入了NoSQL特性。今日,Oracle 公司宣布 MySQL 5.6 GA,正式版为 5.6.10。MySQL 5.6.10 GA 主要是修复了之前 RC 版本中的 Bug。MySQL 5.6 新增特性有: 改进的 Inno...原创 2013-04-13 23:38:47 · 133 阅读 · 0 评论 -
How to upgrade MySQL 5.5 to MySQL 5.6 on CentOS 6.3/Red-hat/Fedora
[size=medium]How to upgrade MySQL 5.5 to MySQL 5.6 on CentOS 6.3/Red-hat/Fedora1 Reply As I mentioned in my other post for installing MySQL 5.6 on a new server, first head over here and download...原创 2013-04-13 22:24:55 · 167 阅读 · 0 评论 -
centos开机自动启动Apache,Mysql,Samba、Svn等服务的方法
方法一:使用vi编辑器修改配置文件1、编辑rc.local文件#vi /etc/rc.d/rc.local2、加入如下启动命令/usr/sbin/apachectl start/etc/rc.d/init.d/mysqld start/etc/rc.d/init.d/smb start/usr/local/subversion/bin/svnserve -d3、注意:我...原创 2013-05-19 12:06:28 · 98 阅读 · 0 评论 -
MySQL远程访问权限,允许远程连接的开启
MySQL远程访问权限,允许远程连接的开启 1、登陆mysql数据库 mysql -u root -p 查看user表 www.2cto.com mysql> use mysql; Database changed mysql> select host,user,password from...原创 2014-08-08 12:18:53 · 819 阅读 · 0 评论