一介布衣
2016-11-18
mongodb 在centOS 64位服务器上安装
UCloud 云服务器
CentOS 系统
64 位
Step 1 设置mongodb源 vim /etc/yum.repos.d/mongodb.repo
copy 下面内容
[mongodb]
name=MongoDB Repository
baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86_64/
gpgcheck=0
enabled=1
保存上面内容并退出
Step 2 安装mongodb yum install mongo-10gen mongo-10
一介布衣
2016-11-16
上次推荐了数据库管理工具 DataGrip
今天在连接线上一个数据库的时候,直接报错.
"Cannot load from mysql.proc.The table is probably corrupted"
之前在使用 Navicat 连接数据库时并没有发现此问题.
此问题产生的原因:
LINUX下将mysql从5.1升级至5.5后,存储过程不能用了.
mysql.proc升级时有个字段没有升级成功.
在5.1中mysql.proc表的comment字段是varchar(64):
但在5.5中应该是text:
comment text CHARACTER SET