Redhat6.4安装MongoDBv3.6.3
运用后台+配置文件方式启动。
条件
下载mongodb-linux-x86_64-rhel62-3.6.3.tar 官网https://www.mongodb.com/download-center?jmp=nav#community 依赖openssl-1.0.1e-57.el6.x86_64.rpm
安装
下载后是这个格式的包包
mongodb-linux-x86_64-rhel62-3.6.3.tgz
第一次解压
gzip -d mongodb-linux-x86_64-rhel62-3.6.3.tgz
第二次解压
tar -xvf mongodb-linux-x86_64-rhel62-3.6.3.tar
重命名
mv mongodb-linux-x86_64-rhel62-3.6.3 mongodb
步骤+
mv mongodb /usr/local cd /usr/local/mongodb/ mkdir -p data logs vim mongodb.conf
mongodb.conf
dbpath=/usr/local/mongodb/data
port=27017
logpath=/usr/local/mongodb/logs/mongodb.log
logappend=true
fork=true
1.数据库目录
2.端口
3.日志路径文件
4.日志追加末尾
5.后台子进程运行
启动
cd /usr/local/mongodb/bin ./mongod -f ../mongodb.conf
报错
./mongod: /usr/lib64/libssl.so.10: no version information available (required by ./mongod)
./mongod: /usr/lib64/libcrypto.so.10: no version information available (required by ./mongod)
./mongod: /usr/lib64/libcrypto.so.10: no version information available (required by ./mongod)
./mongod: relocation error: ./mongod: symbol TLSv1_2_server_method, version libssl.so.10 not defined in file libssl.so.10 with link time reference
解决
问题出在openssl, 经过检验, 发现openssl版本过低, 没办法, 提升版本吧!
验证一下, 发现
[root@localhost bin]# rpm -qa|grep openssl
openssl-1.0.0-27.el6.i686
openssl-1.0.0-27.el6.x86_64
一起干掉
[root@localhost bin]# rpm -e openssl-1.0.0-27.el6.x86_64 openssl-1.0.0-27.el6.i686
error: Failed dependencies:
libcrypto.so.10()(64bit) is needed by (installed) gnome-vfs2-2.24.2-6.el6.x86_64
libcrypto.so.10()(64bit) is needed by (installed) libssh2-1.4.2-1.el6.x86_64
libcrypto.so.10()(64bit) is needed by (installed) mysql-libs-5.1.66-2.el6_3.x86_64
libcrypto.so.10()(64bit) is needed by (installed) fipscheck-1.2.0-7.el6.x86_64
libcrypto.so.10()(64bit) is needed by (installed) python-2.6.6-36.el6.x86_64
libcrypto.so.10()(64bit) is needed by (installed) m2crypto-0.20.2-9.el6.x86_64
libcrypto.so.10()(64bit) is needed by (installed) pyOpenSSL-0.10-2.el6.x86_64
libcrypto.so.10()(64bit) is needed by (installed) openssh-5.3p1-84.1.el6.x86_64
libcrypto.so.10()(64bit) is needed by (installed) cyrus-sasl-2.1.23-13.el6_3.1.x86_64
libcrypto.so.10()(64bit) is needed by (installed) postfix-2:2.6.6-2.2.el6_1.x86_64
libcrypto.so.10()(64bit) is needed by (installed) openssh-server-5.3p1-84.1.el6.x86_64
libssl.so.10()(64bit) is needed by (installed) gnome-vfs2-2.24.2-6.el6.x86_64
libssl.so.10()(64bit) is needed by (installed) libssh2-1.4.2-1.el6.x86_64
libssl.so.10()(64bit) is needed by (installed) mysql-libs-5.1.66-2.el6_3.x86_64
libssl.so.10()(64bit) is needed by (installed) python-2.6.6-36.el6.x86_64
libssl.so.10()(64bit) is needed by (installed) m2crypto-0.20.2-9.el6.x86_64
libssl.so.10()(64bit) is needed by (installed) python-rhsm-1.1.8-1.el6.x86_64
libssl.so.10()(64bit) is needed by (installed) pyOpenSSL-0.10-2.el6.x86_64
libssl.so.10()(64bit) is needed by (installed) postfix-2:2.6.6-2.2.el6_1.x86_64
openssl is needed by (installed) postfix-2:2.6.6-2.2.el6_1.x86_64
完蛋...(好像没辙)
没事, 继续来, 终极大招
rpm -e openssl-1.0.0-27.el6.i686 openssl-1.0.0-27.el6.x86_64 --nodeps
再查一下
rpm -qa | grep openssl
没有了。
安装新版的openssl, 我这里用的新版是:openssl-1.0.1e-57.el6.x86_64.rpm
[root@localhost test]# rpm -ivh openssl-1.0.1e-57.el6.x86_64.rpm
warning: openssl-1.0.1e-57.el6.x86_64.rpm: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY
error: Failed dependencies:
make is needed by openssl-1.0.1e-57.el6.x86_64
没办法,强行安装
[root@localhost test]# rpm -ivh openssl-1.0.1e-57.el6.x86_64.rpm --nodeps
warning: openssl-1.0.1e-57.el6.x86_64.rpm: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY
Preparing... ########################################### [100%]
1:openssl ########################################### [100%]
[root@localhost test]# rpm -qa | grep openssl
openssl-1.0.1e-57.el6.x86_64
再启动, 启动成功!!
验证
查进程
[root@localhost bin]# ps aux | grep mongo
root 2044 12.2 4.8 1058116 56024 ? Sl 01:08 0:00 ./mongod -f ../mongodb.conf
root 2072 0.0 0.0 6372 688 pts/0 S+ 01:08 0:00 grep mongo 查端口
[root@localhost bin]# netstat -tlnp | grep mongod
tcp 0 0 127.0.0.1:27017 0.0.0.0:* LISTEN 2044/./mongod 客户端验证
[root@localhost bin]# ./mongo
MongoDB shell version v3.6.3
connecting to: mongodb://127.0.0.1:27017
MongoDB server version: 3.6.3
Welcome to the MongoDB shell.
For interactive help, type "help".
For more comprehensive documentation, see
http://docs.mongodb.org/
Questions? Try the support group
http://groups.google.com/group/mongodb-user
Server has startup warnings:
2018-03-06T01:08:44.032+0800 I STORAGE [initandlisten]
2018-03-06T01:08:44.032+0800 I STORAGE [initandlisten] ** WARNING: Using the XFS filesystem is strongly recommended with the WiredTiger storage engine
2018-03-06T01:08:44.032+0800 I STORAGE [initandlisten] ** See http://dochub.mongodb.org/core/prodnotes-filesystem
2018-03-06T01:08:44.941+0800 I CONTROL [initandlisten]
2018-03-06T01:08:44.941+0800 I CONTROL [initandlisten] ** WARNING: Access control is not enabled for the database.
2018-03-06T01:08:44.941+0800 I CONTROL [initandlisten] ** Read and write access to data and configuration is unrestricted.
2018-03-06T01:08:44.941+0800 I CONTROL [initandlisten] ** WARNING: You are running this process as the root user, which is not recommended.
2018-03-06T01:08:44.941+0800 I CONTROL [initandlisten]
2018-03-06T01:08:44.941+0800 I CONTROL [initandlisten] ** WARNING: This server is bound to localhost.
2018-03-06T01:08:44.941+0800 I CONTROL [initandlisten] ** Remote systems will be unable to connect to this server.
2018-03-06T01:08:44.941+0800 I CONTROL [initandlisten] ** Start the server with --bind_ip <address> to specify which IP
2018-03-06T01:08:44.941+0800 I CONTROL [initandlisten] ** addresses it should serve responses from, or with --bind_ip_all to
2018-03-06T01:08:44.941+0800 I CONTROL [initandlisten] ** bind to all interfaces. If this behavior is desired, start the
2018-03-06T01:08:44.941+0800 I CONTROL [initandlisten] ** server with --bind_ip 127.0.0.1 to disable this warning.
2018-03-06T01:08:44.941+0800 I CONTROL [initandlisten]
2018-03-06T01:08:44.941+0800 I CONTROL [initandlisten]
2018-03-06T01:08:44.941+0800 I CONTROL [initandlisten] ** WARNING: /sys/kernel/mm/transparent_hugepage/enabled is 'always'.
2018-03-06T01:08:44.941+0800 I CONTROL [initandlisten] ** We suggest setting it to 'never'
2018-03-06T01:08:44.941+0800 I CONTROL [initandlisten]
2018-03-06T01:08:44.941+0800 I CONTROL [initandlisten] ** WARNING: /sys/kernel/mm/transparent_hugepage/defrag is 'always'.
2018-03-06T01:08:44.941+0800 I CONTROL [initandlisten] ** We suggest setting it to 'never'
2018-03-06T01:08:44.941+0800 I CONTROL [initandlisten]
> use test;
switched to db test
> exit
bye
成功!
Redhat6.4安装MongoDBv3.6.3的更多相关文章
- redhat6.3安装MySQL-server-5.6.13-1.el6.x86_64.rpm
redhat6.3安装MySQL-server-5.6.13-1.el6.x86_64.rpm 首先下载下面三个文件: [plain] MySQL-client-5.6.13-1.el6.x ...
- RedHat6.6安装Oracle11gR2
RedHat6.6安装Oracle11gR2 一.Centos6.6的安装配置 1- 选择安装模式 2- 选择“skip”,跳过检查. 3- 选择“下一步” 4- ...
- Redhat6下安装QEMU
Redhat6下安装QEMU 1.下载QEUM:http://wiki.qemu.org/Download 2.解压qemu-1.6.1.tar.bz2到/tmp目录(也可以是其他目录)下,并进入解压 ...
- redhat6.3安装matlab运行时MCR7.8,初步测试ok
redhat6.3安装完matlab2008a后在目录$MATLAB_HOME/toolbox/compiler/deploy/glnxa64中有MCRInstaller.bin 使用这个安装MCR即 ...
- RedHat6.5安装kafka集群
版本号: Redhat6.5 JDK1.8 zookeeper-3.4.6 kafka_2.11-0.8.2.1 1.软件环境 1.3台RedHat机器,master.slave1. ...
- RedHat6.5安装kafka单机
版本号: Redhat6.5 JDK1.8 zookeeper-3.4.6 kafka_2.11-0.8.2.1 1.软件环境 已经搭建好的zookeeper: RedHat6.5 ...
- Redhat6.8安装Oracle11g下遇到两个问题记录
问题一: 刚刚安装完毕Oracle之后,尝试sqlplus登陆报错,TNS:net service name is incorrectly specified 参考文章:关于环境变量ORACLE_SI ...
- Redhat6.5安装DB2 Express-C版本
Linux Redhat6.5安装DB2 Express-C版本: 创建相关用户和组 创建用户组: groupdel db2iadm1 groupadd -g 999 db2iadm1 groupad ...
- redhat6.5安装postgresql8.4数据库
Redhat6.5安装postgresql8.4数据库 step1 先移除原有的postgresql数据库(如果有),否则直接跳过 rpm -qa | grep postgresql* rpm -ev ...
随机推荐
- Linux下利用Valgrind工具进行内存泄露检测和性能分析
from http://www.linuxidc.com/Linux/2012-06/63754.htm Valgrind通常用来成分析程序性能及程序中的内存泄露错误 一 Valgrind工具集简绍 ...
- (已解决)iOS真机运行 Xcode报错(libpng error: CgBI: unhandled critical chunk)
Cocos2d-x加载图片资源出现libpng error: CgBI: unhandled critical chunk Xcode7.3 设置Remove Text Metadata From P ...
- AIX挂载NFS写入效率低效解决
背景: Linux是NFS的Server端,AIX是NFS的Client端(此外,有一个Linux也作为Client端对比测试). 1.NFS对应的底层设备是闪存卡,本地测试I/O写性能可达2GB/s ...
- Xception网络结构理解
Xception网络是由inception结构加上depthwise separable convlution,再加上残差网络结构改进而来/ 常规卷积是直接通过一个卷积核把空间信息和通道信息直接提取出 ...
- DES加解密 cbc模式 的简单讲解 && C++用openssl库来实现的注意事项
DES cbc是基于数据块加密的.数据块的长度为8字节64bit.以数据块为单位循环加密,再拼接.每个数据块加密的秘钥一样,IV向量不同.第一个数据快所需的IV向量,需要我们提供,从第二个数据块开始, ...
- big and little endian
总是容易搞混big endian 和 little endian,但是找到一篇文章,其解释让人耳目一新. 文章链接:http://www.cs.umd.edu/class/sum2003/cmsc31 ...
- arcgis api for js简要笔记
1.主要借助官网的接口文档和samplecode来学习 https://developers.arcgis.com/javascript/latest/api-reference/index.html ...
- RabbitMQ理论
RabbitMQ理论 消息 = 有效载荷(数据) + 标签(包含载荷和收件人的信息) 信道:你的应用于RabbitMQ代理服务器之间的TCP连接(有唯一的ID),信道主要解决了每一个线程单独T ...
- Codeforces Round #322 (Div. 2) E F
E. Kojiro and Furrari 题意说的是 在一条直线上 有n个加油站, 每加一单位体积的汽油 可以走1km 然后每个加油站只有一种类型的汽油,汽油的种类有3种 求从起点出发到达终点要求使 ...
- Echo团队团队展示
班级:软件工程1916|W 作业:团队作业第一次-团队展示 团队名称:Echo 课程目标:展示团队 成员信息 队员学号 队员姓名 个人博客地址 备注 221600418 黄少勇 http://www. ...