In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
This article is to share with you about how to install MongoDB in Linux, the editor thinks it is very practical, so I share it with you to learn. I hope you can get something after reading this article.
1. Install MongoDB
MongoDB's tar package download address: https://www.mongodb.com/download-center#atlas
Extract the installation package tar-zxvf xxxxxxxxxx.tar
Move to the installation directory mv mongodb-linux-x86_64-xxx / usr/local/mongodb
Add the environment variable echo "export PATH=\ $PATH:/usr/local/mongodb/bin [there will be a directory in the past after decompression, so you need to configure] > / etc/profile.d/mongodb.sh (be careful in this! )
Make the environment variable effective source / etc/profile.d/mongodb.sh
Create Mongodb users and groups useradd-r-M-s / sbin/nologin mongod
* create startup database and startup log mkdir-p / data/mongodb/ {db,log} /
Modify permission chown-R mongod:mongod/data/mongodb/
Configure mongoDB profile: vi / etc/mongod.conf
# mongod.conf
# for documentation of all options, see:
# http://docs.mongodb.org/manual/reference/configuration-options/
# where to write logging data.
SystemLog:
Destination: file
LogAppend: true
Path: / data/mongodb/log/mongod.log
# Where and how to store data.
Storage:
DbPath: / data/mongodb/db
Journal:
Enabled: true
# engine:
# mmapv1:
# wiredTiger:
# how the process runs
ProcessManagement:
Fork: true # fork and run inbackground
PidFilePath: / var/run/mongodb/mongod.pid # location of pidfile
# network interfaces
Net:
Port: 27017
BindIp: 127.0.0.1 # Listen tolocal interface only, comment to listen on all interfaces.
# security:
# operationProfiling:
# replication:
# sharding:
# # Enterprise-Only Options
# auditLog:
# snmp:
Note:
If the MongoDB port is not between 27017-27019 and 28017-28019, you need to perform the following steps:
# yum-y install policycoreutils-python
# semanage port-a-t mongod_port_t-p tcp 27017
Create a MongoDB self-startup script vi / etc/init.d/mongod
#! / bin/bash
# mongod-Startup script for mongod
# chkconfig: 35 85 15
# description: Mongo is a scalable, document-oriented database.
# processname: mongod
# config: / etc/mongod.conf
# pidfile: / var/run/mongodb/mongod.pid
. / etc/rc.d/init.d/functions
# things from mongod.conf get there by mongod reading it
# NOTE: if you change any OPTIONS here, you get what you pay for:
# this script assumes all options are in the config file.
CONFIGFILE= "/ etc/mongod.conf"
OPTIONS= "- f $CONFIGFILE"
SYSCONFIG= "/ etc/sysconfig/mongod"
PIDFILEPATH= `awk-F'[: =]'- v IGNORECASE=1'/ ^ [[: blank:]] * (processManagement\.)? pidfilepath [[: blank:]] * [: blank:]] * / {print$2}'"$CONFIGFILE" | tr-d "[: blank:]\"'"| cut-d" # "- f 1`
Mongod=$ {MONGOD-/usr/local/mongodb/bin/mongod}
MONGO_USER=mongod
MONGO_GROUP=mongod
If [- f "$SYSCONFIG"]; then
. "$SYSCONFIG"
Fi
PIDDIR= `dirname $PIDFILEPATH`
# Handle NUMA access to CPUs (SERVER-3574)
# This verifies the existence of numactl as well as testing that the commandworks
NUMACTL_ARGS= "--interleave=all"
If which numactl > / dev/null 2 > / dev/null & & numactl$NUMACTL_ARGS ls / > / dev/null 2 > / dev/null
Then
NUMACTL= "numactl $NUMACTL_ARGS"
Else
NUMACTL= ""
Fi
Start ()
{
# Make sure the default pidfile directory exists
If [!-d $PIDDIR]; then
Install-d-m 0755-o $MONGO_USER-g $MONGO_GROUP $PIDDIR
Fi
# Recommended ulimit values for mongod or mongos
# See http://docs.mongodb.org/manual/reference/ulimit/#recommended-settings
#
Ulimit-f unlimited
Ulimit-t unlimited
Ulimit-v unlimited
Ulimit-n 64000
Ulimit-m unlimited
Ulimit-u 64000
Echo-n $"Starting mongod:"
Daemon-- user "$MONGO_USER"-- check $mongod "$NUMACTL$mongod $OPTIONS > / dev/null 2 > & 1"
RETVAL=$?
Echo
[$RETVAL-eq 0] & & touch / var/lock/subsys/mongod
}
Stop ()
{
Echo-n $"Stopping mongod:"
Mongo_killproc "$PIDFILEPATH" $mongod
RETVAL=$?
Echo
[$RETVAL-eq 0] & & rm-f / var/lock/subsys/mongod
}
Restart () {
Stop
Start
}
# Send TERM signal to process and wait up to 300 seconds for process to go away.
# If process is still alive after 300 seconds, send KILL signal.
# Built-in killproc () (found in / etc/init.d/functions) is on certain versions ofLinux
# where it sleeps for the full $delay seconds if process does not respond fastenough to
# the initial TERM signal.
Mongo_killproc ()
{
Local pid_file=$1
Local procname=$2
Local-I delay=300
Local-I duration=10
Local pid= `pidofproc-p "${pid_file}" ${procname} `
Kill-TERM $pid > / dev/null 2 > & 1
Usleep 100000
Local-I xero0
While [$x-le $delay] & & checkpid $pid; do
Sleep $duration
(($x + $duration))
Done
Kill-KILL $pid > / dev/null 2 > & 1
Usleep 100000
Checkpid $pid # returns 0 only if the process exists
Local RC=$?
["$RC"-eq 0] & & failure "${procname} shutdown" | | rm-f "${pid_file}"; success "${procname} shutdown"
RC=$ (! $RC) # invert return code so we return 0 when process is dead.
Return $RC
}
RETVAL=0
Case "$1" in
Start)
Start
Stop)
Stop
Restart | reload | force-reload)
Restart
Condrestart)
[- f / var/lock/subsys/mongod] & & restart | |:
Status)
Status $mongod
RETVAL=$?
*)
Echo "Usage: $0 {start | stop | status | restart | reload | force-reload | condrestart}"
RETVAL=1
Esac
Exit $RETVAL
Set the MongoDB service to boot automatically
Chmod + x / etc/init.d/mongod
Chkconfig mongod on
Start the MongoDB service
Service mongod start
If the startup is not successful:
Mainly check whether the configured environment variables in the startup script .sh file are correct, and at the same time check whether the permissions of db log are the users and groups configured in the script, and can be executed at the same time.
Verify that the startup was successful:
Service mongod status
Mongod.service-SYSV: Mongo is a scalable, document-oriented database.
Loaded: loaded (/ etc/rc.d/init.d/mongod)
Active: active (running) since Fri 2017-12-15 23:34:50 EST; 31min ago
Process: 7648 ExecStop=/etc/rc.d/init.d/mongod stop (code=exited,status=0/SUCCESS)
Process: 7677 ExecStart=/etc/rc.d/init.d/mongod start (code=exited,status=0/SUCCESS)
Main PID: 7688 (mongod)
CGroup: / system.slice/mongod.service
└─ 7688/usr/local/mongodb/mongodb-linux-x86_64-3.6.0/bin/mongod-f / etc/mongod.conf
Dec 15 23:34:49 localhost.localdomain systemd [1]: Starting SYSV: Mongois a scalable, document-oriented database....
Dec 15 23:34:49 localhost.localdomain runuser [7684]: pam_unix (runuser:session): session opened for user mongod by (uid=0)
Dec 15 23:34:50 localhost.localdomain mongod [7677]: Starting mongod: [OK]
Dec 15 23:34:50 localhost.localdomain systemd [1]: Started SYSV: Mongo isa scalable, document-oriented database..
Mongodb Editor:
Enter mongo:
> db.foo.find ()
{"_ id": ObjectId ("5a34a3de8420293d5f46b0ee"), "name": "xiaonanhai", "age": "23"}
> show dbs
Admin 0.000GB
Config 0.000GB
Local 0.000GB
Test 0.000GB
>
END
The above is how to install MongoDB in Linux. The editor believes that there are some knowledge points that we may see or use in our daily work. I hope you can learn more from this article. For more details, please follow the industry information channel.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.