How to install robomongo on Ubuntu
I am using monogodb and I want to install robomongo on Ubuntu. Are there any instructiosn on how I can I install robomongo on my machine?
system mongodb
add a comment |
I am using monogodb and I want to install robomongo on Ubuntu. Are there any instructiosn on how I can I install robomongo on my machine?
system mongodb
add a comment |
I am using monogodb and I want to install robomongo on Ubuntu. Are there any instructiosn on how I can I install robomongo on my machine?
system mongodb
I am using monogodb and I want to install robomongo on Ubuntu. Are there any instructiosn on how I can I install robomongo on my machine?
system mongodb
system mongodb
edited May 25 '17 at 15:20
Community♦
1
1
asked Feb 26 '16 at 10:02
Suraj MauryaSuraj Maurya
141123
141123
add a comment |
add a comment |
8 Answers
8
active
oldest
votes
Follow these simple steps.
- Download the robomongo: https://robomongo.org/download
- Extract the .tar.gz downloaded from above
- Change directory to extracted folder.
- You'll find a bin folder. Go in there, then double click on robomongo.
Anytime you'll wanna run robomongo, you will have to do something like this from terminal:
/path/to/robomongo_dir/bin/robomongo
You might wanna add a link to robomongo from your /usr/bin which will allow you to do something like this anywhere from terminal:
for that
- navigate to robomongo_dir/bin
- right click on robomongo executable file and click on Make Link, Link to robomongo executable file will be created there
- rename Link to robomongo to your wish ( let say robo_)
move this link to /usr/bin directory with below command on terminal
sudo mv /robomongo_dir/bin/robo_ /usr/bin
Now you can run robomongo from terminal OR from run command (Alt+ F2) by typing robo_
4
This should be the accepted answer.
– ubashu
Aug 3 '16 at 3:11
1
@ubashu Some get answers or help and sometimes forget where they got the assistance.
– Rexford
Aug 8 '16 at 19:55
add a comment |
answer of @Rexford is nice But I will be more clear
There Two ways to install robomongo program into ubuntu using command line:
First way
1.1 download tar.gz file from Official robomongo website(choose version you need to install and get it's tar.gz download file url)
wget https://download.robomongo.org/0.9.0/linux/robomongo-0.9.0-linux-x86_64-0786489.tar.gz
1.2 extract tar.gz file
tar -xvzf robomongo-0.9.0-linux-x86_64-0786489.tar.gz
1.3 mv files and folders into the result folder from extraction operation
into folder robomongo under /usr/local/bin
sudo mkdir /usr/local/bin/robomongo
sudo mv robomongo-0.9.0-linux-x86_64-0786489/* /usr/local/bin/robomongo
1.4 make sure excute file for robomongo program which exists under
/usr/local/bin/robomongo/bin folder is excutable file
cd /usr/local/bin/robomongo/bin
sudo chmod +x robomongo ## run command only if robomongo isn't excutable file
./robomongo
Second way
2.1 download deb file from Official robomongo website(choose version you need to install and get it's deb download file url)
wget https://download.robomongo.org/0.8.5/linux/robomongo-0.8.5-x86_64.deb
2.2 install deb file using dpkg command line
sudo dpkg -i robomongo-0.8.5-x86_64.deb
2.3 open robomongo program using command line by run
robomongo
Very Important Notice:
All available versions 0.8.5 and earlier of robomongo have both deb file and tar.gz file download urls. So If you want a previous version you can use one of two ways But If you need download version 0.9.0 there only one way is the first ones
more links about install robomongo program: link 1, line 2, link 3
it seems these *.deb files are not unavailable anymore
– API
Jan 25 '17 at 9:35
to makerobomongoexecutable from anywhere, I renamed its folder andsudo ln -s /usr/local/bin/robomongodir/bin/robomongo /usr/local/bin/
– API
Jan 25 '17 at 9:47
If you follow these instructions and you seerobomongo: command not foundthen you're probably on 32-bit architecture which isn't (and probably won't be) supported by robomongo
– Michael
Mar 4 '17 at 8:43
1
This no longer works. Version 0.8 is now so old, it's incompatible with the current version of Mongo, and Studio3T seems to have stopped releasing deb files for newer versions.
– Cerin
Aug 9 '17 at 19:56
the second option works perfectly! thanks
– mohammed qudah
Jan 22 '18 at 17:55
add a comment |
Robomongo is now Robo 3T:
Download the tar file from the site.
The current file is robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz but obviously this may be different to what you downloaded in the future: adapt the commands below accordingly.
Open a terminal and cd to wherever you downloaded the archive, eg, cd Downloads and mv it to wherever you would like to keep it, perhaps /opt. Then extract it, and make a symlink from the binary to a PATH location, for example...
sudo tar -xf /opt/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
sudo ln -s /opt/robo3t-1.1.1-linux-x86_64-c93c6b0/bin/robo3t /usr/local/bin/robo3t
Now you can run robo3t in your terminal and it will work.
@Zanna sorry didn't see the/optpath
– George Udosen
Jul 29 '17 at 22:06
1
@George my bad, just fixed it after seeing your comment :)
– Zanna
Jul 29 '17 at 22:07
add a comment |
There doesn't seem to be sudo apt-get install for robomongo.
There is tar.gz download available from here
Once you download that you need to do
gunzip robomongo-0.9.0-rc4-linux-x86_64-8c830b6.tar.gz
tar -xvf robomongo-0.9.0-rc4-linux-x86_64-8c830b6.tar
and then either move the untar-ed version to /opt (if needed)
Otherwise there is another way as mentioned in this blog or here
I have done this robomongo-0.9.0-rc4-linux-x86_64-8c830b6.tar.gz how i can proceed ?
– Suraj Maurya
Feb 26 '16 at 11:16
Please specify details in terms of what you have done and what error messages(if any) you are getting?
– Ashu
Feb 26 '16 at 12:07
@SurajMaurya if answer below helped, you mind marking as answer?
– Rexford
Jul 3 '16 at 21:49
add a comment |
run the folowing commands(feel free to update the links and change folder names):
wget https://download.robomongo.org/1.1.1/linux/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
sudo tar -xzf robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz -C /opt
rm robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
sudo mkdir /opt/robo3t-1.1.1-linux-x86_64-c93c6b0//lib/BKP/
sudo mv /opt/robo3t-1.1.1-linux-x86_64-c93c6b0/lib/libstdc++* /opt/robo3t-1.1.1-linux-x86_64-c93c6b0//lib/BKP/
sudo ln -s /opt/robo3t-1.1.1-linux-x86_64-c93c6b0/bin/robo3t /usr/bin/robo3t
cat > ~/.local/share/applications/robo3t.desktop <<EOL
[Desktop Entry]
Encoding=UTF-8
Name=Robo3T
Exec=robo3t
Terminal=false
Type=Application
Categories=Development;
EOL
then you will also get a launcher icon so you will be able to press win-key and search for.
But you wont get an image for the icon (some ubuntu place-holder) :(
1
@Thamaraiselvam you can also take a look at this script for additional installs github.com/david1asher/post-install-scripts/blob/master/…
– ddavidad
Sep 16 '18 at 12:26
add a comment |
Robo 3T (formerly Robomongo) is the free lightweight GUI with embedded shell for MongoDB enthusiasts. Use Ubuntu Software to install the robo3t-snap package or install it from the terminal with:
sudo snap install robo3t-snap
add a comment |
if you try to install the latest version of robomobo that call be now robo3t. Or you try to install on ubuntu 16.04 follow the below step and your robomongo install
Download latest robomongo tar file
wget https://download.robomongo.org/1.1.1/linux/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
Extract it
tar -xvzf https://download.robomongo.org/1.1.1/linux/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
Make a directory
mkdir ~/robo-backup
Move robo3t-1.1.1-linux-x86_64-c93c6b0/lib/libstdc++ direcotry to ~/robo-backup/ direcotry
mv robo3t-1.1.1-linux-x86_64-c93c6b0/lib/libstdc++* ~/robo-backup/
Run the robo3t
robo3t-1.1.1-linux-x86_64-c93c6b0/bin/robo3t
add a comment |
If you need to install mongodb binary (Manually) to your Ubuntu 18.04 LTS (Bionic). You need to download mongodb .tgz file from this link .
1) Download it to your ~/Downloads folder and moveit to home directory by typing mv Downloads/mongodb-linux-x86_64-ubuntu1804-4.0.4.tgz ~/
2) Then unter it by typing tar -zxvf mongodb-linux-x86_64-ubuntu1804-4.0.4.tgz place it here (Home directory /home/). Dont move it from here.
3) Then make a directory at /data/db location and give write permission to thatdirectory.
sudo mkdir -p /data/db
sudo chmod -R 777 /data/db
4) Now, this is the tricky area. Make sure u r in hme directory by typing pwd (Present Working Directory)
pwd
it will show
/home/<your user name>
Then type
ls -al
This command will show up all hiddenfile at home directory and search for
~/.bashrc
5) Edit the .bashrc file and write
export PATH=mongodb-linux-x86_64-ubuntu1804-4.0.4/bin:$PATH
and save the file type source ./bashrc
Then type echo $PATH at terminal it will display ~/mongodb-linux-x86_64-ubuntu1804-4.0.4/bin:/home/xenon/.nvm/versions/node/v10.15.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin
6) Now at terminal type mongo --nodb
it will show MongoDB shell version v4.0.4
From here , you are all set, go ahead and enjoy mongodb installation. This istallation is bit complex but by this method you can easily control the version of mongodb and use it as per your need.
7) Then start mongod
>sudo mkdir -p /var/log && sudo chmod -R 777 /var/log
>mongod --port 27017 --dbpath /data/db --logpath /var/log/local.log --fork
>mongo --port 27017
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f739297%2fhow-to-install-robomongo-on-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
8 Answers
8
active
oldest
votes
8 Answers
8
active
oldest
votes
active
oldest
votes
active
oldest
votes
Follow these simple steps.
- Download the robomongo: https://robomongo.org/download
- Extract the .tar.gz downloaded from above
- Change directory to extracted folder.
- You'll find a bin folder. Go in there, then double click on robomongo.
Anytime you'll wanna run robomongo, you will have to do something like this from terminal:
/path/to/robomongo_dir/bin/robomongo
You might wanna add a link to robomongo from your /usr/bin which will allow you to do something like this anywhere from terminal:
for that
- navigate to robomongo_dir/bin
- right click on robomongo executable file and click on Make Link, Link to robomongo executable file will be created there
- rename Link to robomongo to your wish ( let say robo_)
move this link to /usr/bin directory with below command on terminal
sudo mv /robomongo_dir/bin/robo_ /usr/bin
Now you can run robomongo from terminal OR from run command (Alt+ F2) by typing robo_
4
This should be the accepted answer.
– ubashu
Aug 3 '16 at 3:11
1
@ubashu Some get answers or help and sometimes forget where they got the assistance.
– Rexford
Aug 8 '16 at 19:55
add a comment |
Follow these simple steps.
- Download the robomongo: https://robomongo.org/download
- Extract the .tar.gz downloaded from above
- Change directory to extracted folder.
- You'll find a bin folder. Go in there, then double click on robomongo.
Anytime you'll wanna run robomongo, you will have to do something like this from terminal:
/path/to/robomongo_dir/bin/robomongo
You might wanna add a link to robomongo from your /usr/bin which will allow you to do something like this anywhere from terminal:
for that
- navigate to robomongo_dir/bin
- right click on robomongo executable file and click on Make Link, Link to robomongo executable file will be created there
- rename Link to robomongo to your wish ( let say robo_)
move this link to /usr/bin directory with below command on terminal
sudo mv /robomongo_dir/bin/robo_ /usr/bin
Now you can run robomongo from terminal OR from run command (Alt+ F2) by typing robo_
4
This should be the accepted answer.
– ubashu
Aug 3 '16 at 3:11
1
@ubashu Some get answers or help and sometimes forget where they got the assistance.
– Rexford
Aug 8 '16 at 19:55
add a comment |
Follow these simple steps.
- Download the robomongo: https://robomongo.org/download
- Extract the .tar.gz downloaded from above
- Change directory to extracted folder.
- You'll find a bin folder. Go in there, then double click on robomongo.
Anytime you'll wanna run robomongo, you will have to do something like this from terminal:
/path/to/robomongo_dir/bin/robomongo
You might wanna add a link to robomongo from your /usr/bin which will allow you to do something like this anywhere from terminal:
for that
- navigate to robomongo_dir/bin
- right click on robomongo executable file and click on Make Link, Link to robomongo executable file will be created there
- rename Link to robomongo to your wish ( let say robo_)
move this link to /usr/bin directory with below command on terminal
sudo mv /robomongo_dir/bin/robo_ /usr/bin
Now you can run robomongo from terminal OR from run command (Alt+ F2) by typing robo_
Follow these simple steps.
- Download the robomongo: https://robomongo.org/download
- Extract the .tar.gz downloaded from above
- Change directory to extracted folder.
- You'll find a bin folder. Go in there, then double click on robomongo.
Anytime you'll wanna run robomongo, you will have to do something like this from terminal:
/path/to/robomongo_dir/bin/robomongo
You might wanna add a link to robomongo from your /usr/bin which will allow you to do something like this anywhere from terminal:
for that
- navigate to robomongo_dir/bin
- right click on robomongo executable file and click on Make Link, Link to robomongo executable file will be created there
- rename Link to robomongo to your wish ( let say robo_)
move this link to /usr/bin directory with below command on terminal
sudo mv /robomongo_dir/bin/robo_ /usr/bin
Now you can run robomongo from terminal OR from run command (Alt+ F2) by typing robo_
edited Feb 22 '18 at 6:38
Community♦
1
1
answered Jun 4 '16 at 13:18
RexfordRexford
1,41911227
1,41911227
4
This should be the accepted answer.
– ubashu
Aug 3 '16 at 3:11
1
@ubashu Some get answers or help and sometimes forget where they got the assistance.
– Rexford
Aug 8 '16 at 19:55
add a comment |
4
This should be the accepted answer.
– ubashu
Aug 3 '16 at 3:11
1
@ubashu Some get answers or help and sometimes forget where they got the assistance.
– Rexford
Aug 8 '16 at 19:55
4
4
This should be the accepted answer.
– ubashu
Aug 3 '16 at 3:11
This should be the accepted answer.
– ubashu
Aug 3 '16 at 3:11
1
1
@ubashu Some get answers or help and sometimes forget where they got the assistance.
– Rexford
Aug 8 '16 at 19:55
@ubashu Some get answers or help and sometimes forget where they got the assistance.
– Rexford
Aug 8 '16 at 19:55
add a comment |
answer of @Rexford is nice But I will be more clear
There Two ways to install robomongo program into ubuntu using command line:
First way
1.1 download tar.gz file from Official robomongo website(choose version you need to install and get it's tar.gz download file url)
wget https://download.robomongo.org/0.9.0/linux/robomongo-0.9.0-linux-x86_64-0786489.tar.gz
1.2 extract tar.gz file
tar -xvzf robomongo-0.9.0-linux-x86_64-0786489.tar.gz
1.3 mv files and folders into the result folder from extraction operation
into folder robomongo under /usr/local/bin
sudo mkdir /usr/local/bin/robomongo
sudo mv robomongo-0.9.0-linux-x86_64-0786489/* /usr/local/bin/robomongo
1.4 make sure excute file for robomongo program which exists under
/usr/local/bin/robomongo/bin folder is excutable file
cd /usr/local/bin/robomongo/bin
sudo chmod +x robomongo ## run command only if robomongo isn't excutable file
./robomongo
Second way
2.1 download deb file from Official robomongo website(choose version you need to install and get it's deb download file url)
wget https://download.robomongo.org/0.8.5/linux/robomongo-0.8.5-x86_64.deb
2.2 install deb file using dpkg command line
sudo dpkg -i robomongo-0.8.5-x86_64.deb
2.3 open robomongo program using command line by run
robomongo
Very Important Notice:
All available versions 0.8.5 and earlier of robomongo have both deb file and tar.gz file download urls. So If you want a previous version you can use one of two ways But If you need download version 0.9.0 there only one way is the first ones
more links about install robomongo program: link 1, line 2, link 3
it seems these *.deb files are not unavailable anymore
– API
Jan 25 '17 at 9:35
to makerobomongoexecutable from anywhere, I renamed its folder andsudo ln -s /usr/local/bin/robomongodir/bin/robomongo /usr/local/bin/
– API
Jan 25 '17 at 9:47
If you follow these instructions and you seerobomongo: command not foundthen you're probably on 32-bit architecture which isn't (and probably won't be) supported by robomongo
– Michael
Mar 4 '17 at 8:43
1
This no longer works. Version 0.8 is now so old, it's incompatible with the current version of Mongo, and Studio3T seems to have stopped releasing deb files for newer versions.
– Cerin
Aug 9 '17 at 19:56
the second option works perfectly! thanks
– mohammed qudah
Jan 22 '18 at 17:55
add a comment |
answer of @Rexford is nice But I will be more clear
There Two ways to install robomongo program into ubuntu using command line:
First way
1.1 download tar.gz file from Official robomongo website(choose version you need to install and get it's tar.gz download file url)
wget https://download.robomongo.org/0.9.0/linux/robomongo-0.9.0-linux-x86_64-0786489.tar.gz
1.2 extract tar.gz file
tar -xvzf robomongo-0.9.0-linux-x86_64-0786489.tar.gz
1.3 mv files and folders into the result folder from extraction operation
into folder robomongo under /usr/local/bin
sudo mkdir /usr/local/bin/robomongo
sudo mv robomongo-0.9.0-linux-x86_64-0786489/* /usr/local/bin/robomongo
1.4 make sure excute file for robomongo program which exists under
/usr/local/bin/robomongo/bin folder is excutable file
cd /usr/local/bin/robomongo/bin
sudo chmod +x robomongo ## run command only if robomongo isn't excutable file
./robomongo
Second way
2.1 download deb file from Official robomongo website(choose version you need to install and get it's deb download file url)
wget https://download.robomongo.org/0.8.5/linux/robomongo-0.8.5-x86_64.deb
2.2 install deb file using dpkg command line
sudo dpkg -i robomongo-0.8.5-x86_64.deb
2.3 open robomongo program using command line by run
robomongo
Very Important Notice:
All available versions 0.8.5 and earlier of robomongo have both deb file and tar.gz file download urls. So If you want a previous version you can use one of two ways But If you need download version 0.9.0 there only one way is the first ones
more links about install robomongo program: link 1, line 2, link 3
it seems these *.deb files are not unavailable anymore
– API
Jan 25 '17 at 9:35
to makerobomongoexecutable from anywhere, I renamed its folder andsudo ln -s /usr/local/bin/robomongodir/bin/robomongo /usr/local/bin/
– API
Jan 25 '17 at 9:47
If you follow these instructions and you seerobomongo: command not foundthen you're probably on 32-bit architecture which isn't (and probably won't be) supported by robomongo
– Michael
Mar 4 '17 at 8:43
1
This no longer works. Version 0.8 is now so old, it's incompatible with the current version of Mongo, and Studio3T seems to have stopped releasing deb files for newer versions.
– Cerin
Aug 9 '17 at 19:56
the second option works perfectly! thanks
– mohammed qudah
Jan 22 '18 at 17:55
add a comment |
answer of @Rexford is nice But I will be more clear
There Two ways to install robomongo program into ubuntu using command line:
First way
1.1 download tar.gz file from Official robomongo website(choose version you need to install and get it's tar.gz download file url)
wget https://download.robomongo.org/0.9.0/linux/robomongo-0.9.0-linux-x86_64-0786489.tar.gz
1.2 extract tar.gz file
tar -xvzf robomongo-0.9.0-linux-x86_64-0786489.tar.gz
1.3 mv files and folders into the result folder from extraction operation
into folder robomongo under /usr/local/bin
sudo mkdir /usr/local/bin/robomongo
sudo mv robomongo-0.9.0-linux-x86_64-0786489/* /usr/local/bin/robomongo
1.4 make sure excute file for robomongo program which exists under
/usr/local/bin/robomongo/bin folder is excutable file
cd /usr/local/bin/robomongo/bin
sudo chmod +x robomongo ## run command only if robomongo isn't excutable file
./robomongo
Second way
2.1 download deb file from Official robomongo website(choose version you need to install and get it's deb download file url)
wget https://download.robomongo.org/0.8.5/linux/robomongo-0.8.5-x86_64.deb
2.2 install deb file using dpkg command line
sudo dpkg -i robomongo-0.8.5-x86_64.deb
2.3 open robomongo program using command line by run
robomongo
Very Important Notice:
All available versions 0.8.5 and earlier of robomongo have both deb file and tar.gz file download urls. So If you want a previous version you can use one of two ways But If you need download version 0.9.0 there only one way is the first ones
more links about install robomongo program: link 1, line 2, link 3
answer of @Rexford is nice But I will be more clear
There Two ways to install robomongo program into ubuntu using command line:
First way
1.1 download tar.gz file from Official robomongo website(choose version you need to install and get it's tar.gz download file url)
wget https://download.robomongo.org/0.9.0/linux/robomongo-0.9.0-linux-x86_64-0786489.tar.gz
1.2 extract tar.gz file
tar -xvzf robomongo-0.9.0-linux-x86_64-0786489.tar.gz
1.3 mv files and folders into the result folder from extraction operation
into folder robomongo under /usr/local/bin
sudo mkdir /usr/local/bin/robomongo
sudo mv robomongo-0.9.0-linux-x86_64-0786489/* /usr/local/bin/robomongo
1.4 make sure excute file for robomongo program which exists under
/usr/local/bin/robomongo/bin folder is excutable file
cd /usr/local/bin/robomongo/bin
sudo chmod +x robomongo ## run command only if robomongo isn't excutable file
./robomongo
Second way
2.1 download deb file from Official robomongo website(choose version you need to install and get it's deb download file url)
wget https://download.robomongo.org/0.8.5/linux/robomongo-0.8.5-x86_64.deb
2.2 install deb file using dpkg command line
sudo dpkg -i robomongo-0.8.5-x86_64.deb
2.3 open robomongo program using command line by run
robomongo
Very Important Notice:
All available versions 0.8.5 and earlier of robomongo have both deb file and tar.gz file download urls. So If you want a previous version you can use one of two ways But If you need download version 0.9.0 there only one way is the first ones
more links about install robomongo program: link 1, line 2, link 3
edited May 4 '17 at 12:34
Elder Geek
26.5k952126
26.5k952126
answered Nov 20 '16 at 23:38
ahmed hamdyahmed hamdy
52959
52959
it seems these *.deb files are not unavailable anymore
– API
Jan 25 '17 at 9:35
to makerobomongoexecutable from anywhere, I renamed its folder andsudo ln -s /usr/local/bin/robomongodir/bin/robomongo /usr/local/bin/
– API
Jan 25 '17 at 9:47
If you follow these instructions and you seerobomongo: command not foundthen you're probably on 32-bit architecture which isn't (and probably won't be) supported by robomongo
– Michael
Mar 4 '17 at 8:43
1
This no longer works. Version 0.8 is now so old, it's incompatible with the current version of Mongo, and Studio3T seems to have stopped releasing deb files for newer versions.
– Cerin
Aug 9 '17 at 19:56
the second option works perfectly! thanks
– mohammed qudah
Jan 22 '18 at 17:55
add a comment |
it seems these *.deb files are not unavailable anymore
– API
Jan 25 '17 at 9:35
to makerobomongoexecutable from anywhere, I renamed its folder andsudo ln -s /usr/local/bin/robomongodir/bin/robomongo /usr/local/bin/
– API
Jan 25 '17 at 9:47
If you follow these instructions and you seerobomongo: command not foundthen you're probably on 32-bit architecture which isn't (and probably won't be) supported by robomongo
– Michael
Mar 4 '17 at 8:43
1
This no longer works. Version 0.8 is now so old, it's incompatible with the current version of Mongo, and Studio3T seems to have stopped releasing deb files for newer versions.
– Cerin
Aug 9 '17 at 19:56
the second option works perfectly! thanks
– mohammed qudah
Jan 22 '18 at 17:55
it seems these *.deb files are not unavailable anymore
– API
Jan 25 '17 at 9:35
it seems these *.deb files are not unavailable anymore
– API
Jan 25 '17 at 9:35
to make
robomongo executable from anywhere, I renamed its folder and sudo ln -s /usr/local/bin/robomongodir/bin/robomongo /usr/local/bin/– API
Jan 25 '17 at 9:47
to make
robomongo executable from anywhere, I renamed its folder and sudo ln -s /usr/local/bin/robomongodir/bin/robomongo /usr/local/bin/– API
Jan 25 '17 at 9:47
If you follow these instructions and you see
robomongo: command not found then you're probably on 32-bit architecture which isn't (and probably won't be) supported by robomongo– Michael
Mar 4 '17 at 8:43
If you follow these instructions and you see
robomongo: command not found then you're probably on 32-bit architecture which isn't (and probably won't be) supported by robomongo– Michael
Mar 4 '17 at 8:43
1
1
This no longer works. Version 0.8 is now so old, it's incompatible with the current version of Mongo, and Studio3T seems to have stopped releasing deb files for newer versions.
– Cerin
Aug 9 '17 at 19:56
This no longer works. Version 0.8 is now so old, it's incompatible with the current version of Mongo, and Studio3T seems to have stopped releasing deb files for newer versions.
– Cerin
Aug 9 '17 at 19:56
the second option works perfectly! thanks
– mohammed qudah
Jan 22 '18 at 17:55
the second option works perfectly! thanks
– mohammed qudah
Jan 22 '18 at 17:55
add a comment |
Robomongo is now Robo 3T:
Download the tar file from the site.
The current file is robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz but obviously this may be different to what you downloaded in the future: adapt the commands below accordingly.
Open a terminal and cd to wherever you downloaded the archive, eg, cd Downloads and mv it to wherever you would like to keep it, perhaps /opt. Then extract it, and make a symlink from the binary to a PATH location, for example...
sudo tar -xf /opt/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
sudo ln -s /opt/robo3t-1.1.1-linux-x86_64-c93c6b0/bin/robo3t /usr/local/bin/robo3t
Now you can run robo3t in your terminal and it will work.
@Zanna sorry didn't see the/optpath
– George Udosen
Jul 29 '17 at 22:06
1
@George my bad, just fixed it after seeing your comment :)
– Zanna
Jul 29 '17 at 22:07
add a comment |
Robomongo is now Robo 3T:
Download the tar file from the site.
The current file is robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz but obviously this may be different to what you downloaded in the future: adapt the commands below accordingly.
Open a terminal and cd to wherever you downloaded the archive, eg, cd Downloads and mv it to wherever you would like to keep it, perhaps /opt. Then extract it, and make a symlink from the binary to a PATH location, for example...
sudo tar -xf /opt/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
sudo ln -s /opt/robo3t-1.1.1-linux-x86_64-c93c6b0/bin/robo3t /usr/local/bin/robo3t
Now you can run robo3t in your terminal and it will work.
@Zanna sorry didn't see the/optpath
– George Udosen
Jul 29 '17 at 22:06
1
@George my bad, just fixed it after seeing your comment :)
– Zanna
Jul 29 '17 at 22:07
add a comment |
Robomongo is now Robo 3T:
Download the tar file from the site.
The current file is robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz but obviously this may be different to what you downloaded in the future: adapt the commands below accordingly.
Open a terminal and cd to wherever you downloaded the archive, eg, cd Downloads and mv it to wherever you would like to keep it, perhaps /opt. Then extract it, and make a symlink from the binary to a PATH location, for example...
sudo tar -xf /opt/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
sudo ln -s /opt/robo3t-1.1.1-linux-x86_64-c93c6b0/bin/robo3t /usr/local/bin/robo3t
Now you can run robo3t in your terminal and it will work.
Robomongo is now Robo 3T:
Download the tar file from the site.
The current file is robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz but obviously this may be different to what you downloaded in the future: adapt the commands below accordingly.
Open a terminal and cd to wherever you downloaded the archive, eg, cd Downloads and mv it to wherever you would like to keep it, perhaps /opt. Then extract it, and make a symlink from the binary to a PATH location, for example...
sudo tar -xf /opt/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
sudo ln -s /opt/robo3t-1.1.1-linux-x86_64-c93c6b0/bin/robo3t /usr/local/bin/robo3t
Now you can run robo3t in your terminal and it will work.
edited Jul 29 '17 at 20:55
Zanna
50.5k13133241
50.5k13133241
answered Jun 3 '17 at 9:35
RobomongoRobomongo
15912
15912
@Zanna sorry didn't see the/optpath
– George Udosen
Jul 29 '17 at 22:06
1
@George my bad, just fixed it after seeing your comment :)
– Zanna
Jul 29 '17 at 22:07
add a comment |
@Zanna sorry didn't see the/optpath
– George Udosen
Jul 29 '17 at 22:06
1
@George my bad, just fixed it after seeing your comment :)
– Zanna
Jul 29 '17 at 22:07
@Zanna sorry didn't see the
/opt path– George Udosen
Jul 29 '17 at 22:06
@Zanna sorry didn't see the
/opt path– George Udosen
Jul 29 '17 at 22:06
1
1
@George my bad, just fixed it after seeing your comment :)
– Zanna
Jul 29 '17 at 22:07
@George my bad, just fixed it after seeing your comment :)
– Zanna
Jul 29 '17 at 22:07
add a comment |
There doesn't seem to be sudo apt-get install for robomongo.
There is tar.gz download available from here
Once you download that you need to do
gunzip robomongo-0.9.0-rc4-linux-x86_64-8c830b6.tar.gz
tar -xvf robomongo-0.9.0-rc4-linux-x86_64-8c830b6.tar
and then either move the untar-ed version to /opt (if needed)
Otherwise there is another way as mentioned in this blog or here
I have done this robomongo-0.9.0-rc4-linux-x86_64-8c830b6.tar.gz how i can proceed ?
– Suraj Maurya
Feb 26 '16 at 11:16
Please specify details in terms of what you have done and what error messages(if any) you are getting?
– Ashu
Feb 26 '16 at 12:07
@SurajMaurya if answer below helped, you mind marking as answer?
– Rexford
Jul 3 '16 at 21:49
add a comment |
There doesn't seem to be sudo apt-get install for robomongo.
There is tar.gz download available from here
Once you download that you need to do
gunzip robomongo-0.9.0-rc4-linux-x86_64-8c830b6.tar.gz
tar -xvf robomongo-0.9.0-rc4-linux-x86_64-8c830b6.tar
and then either move the untar-ed version to /opt (if needed)
Otherwise there is another way as mentioned in this blog or here
I have done this robomongo-0.9.0-rc4-linux-x86_64-8c830b6.tar.gz how i can proceed ?
– Suraj Maurya
Feb 26 '16 at 11:16
Please specify details in terms of what you have done and what error messages(if any) you are getting?
– Ashu
Feb 26 '16 at 12:07
@SurajMaurya if answer below helped, you mind marking as answer?
– Rexford
Jul 3 '16 at 21:49
add a comment |
There doesn't seem to be sudo apt-get install for robomongo.
There is tar.gz download available from here
Once you download that you need to do
gunzip robomongo-0.9.0-rc4-linux-x86_64-8c830b6.tar.gz
tar -xvf robomongo-0.9.0-rc4-linux-x86_64-8c830b6.tar
and then either move the untar-ed version to /opt (if needed)
Otherwise there is another way as mentioned in this blog or here
There doesn't seem to be sudo apt-get install for robomongo.
There is tar.gz download available from here
Once you download that you need to do
gunzip robomongo-0.9.0-rc4-linux-x86_64-8c830b6.tar.gz
tar -xvf robomongo-0.9.0-rc4-linux-x86_64-8c830b6.tar
and then either move the untar-ed version to /opt (if needed)
Otherwise there is another way as mentioned in this blog or here
edited Jun 3 '17 at 9:53
David Foerster
27.9k1364110
27.9k1364110
answered Feb 26 '16 at 11:04
AshuAshu
2,55741639
2,55741639
I have done this robomongo-0.9.0-rc4-linux-x86_64-8c830b6.tar.gz how i can proceed ?
– Suraj Maurya
Feb 26 '16 at 11:16
Please specify details in terms of what you have done and what error messages(if any) you are getting?
– Ashu
Feb 26 '16 at 12:07
@SurajMaurya if answer below helped, you mind marking as answer?
– Rexford
Jul 3 '16 at 21:49
add a comment |
I have done this robomongo-0.9.0-rc4-linux-x86_64-8c830b6.tar.gz how i can proceed ?
– Suraj Maurya
Feb 26 '16 at 11:16
Please specify details in terms of what you have done and what error messages(if any) you are getting?
– Ashu
Feb 26 '16 at 12:07
@SurajMaurya if answer below helped, you mind marking as answer?
– Rexford
Jul 3 '16 at 21:49
I have done this robomongo-0.9.0-rc4-linux-x86_64-8c830b6.tar.gz how i can proceed ?
– Suraj Maurya
Feb 26 '16 at 11:16
I have done this robomongo-0.9.0-rc4-linux-x86_64-8c830b6.tar.gz how i can proceed ?
– Suraj Maurya
Feb 26 '16 at 11:16
Please specify details in terms of what you have done and what error messages(if any) you are getting?
– Ashu
Feb 26 '16 at 12:07
Please specify details in terms of what you have done and what error messages(if any) you are getting?
– Ashu
Feb 26 '16 at 12:07
@SurajMaurya if answer below helped, you mind marking as answer?
– Rexford
Jul 3 '16 at 21:49
@SurajMaurya if answer below helped, you mind marking as answer?
– Rexford
Jul 3 '16 at 21:49
add a comment |
run the folowing commands(feel free to update the links and change folder names):
wget https://download.robomongo.org/1.1.1/linux/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
sudo tar -xzf robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz -C /opt
rm robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
sudo mkdir /opt/robo3t-1.1.1-linux-x86_64-c93c6b0//lib/BKP/
sudo mv /opt/robo3t-1.1.1-linux-x86_64-c93c6b0/lib/libstdc++* /opt/robo3t-1.1.1-linux-x86_64-c93c6b0//lib/BKP/
sudo ln -s /opt/robo3t-1.1.1-linux-x86_64-c93c6b0/bin/robo3t /usr/bin/robo3t
cat > ~/.local/share/applications/robo3t.desktop <<EOL
[Desktop Entry]
Encoding=UTF-8
Name=Robo3T
Exec=robo3t
Terminal=false
Type=Application
Categories=Development;
EOL
then you will also get a launcher icon so you will be able to press win-key and search for.
But you wont get an image for the icon (some ubuntu place-holder) :(
1
@Thamaraiselvam you can also take a look at this script for additional installs github.com/david1asher/post-install-scripts/blob/master/…
– ddavidad
Sep 16 '18 at 12:26
add a comment |
run the folowing commands(feel free to update the links and change folder names):
wget https://download.robomongo.org/1.1.1/linux/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
sudo tar -xzf robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz -C /opt
rm robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
sudo mkdir /opt/robo3t-1.1.1-linux-x86_64-c93c6b0//lib/BKP/
sudo mv /opt/robo3t-1.1.1-linux-x86_64-c93c6b0/lib/libstdc++* /opt/robo3t-1.1.1-linux-x86_64-c93c6b0//lib/BKP/
sudo ln -s /opt/robo3t-1.1.1-linux-x86_64-c93c6b0/bin/robo3t /usr/bin/robo3t
cat > ~/.local/share/applications/robo3t.desktop <<EOL
[Desktop Entry]
Encoding=UTF-8
Name=Robo3T
Exec=robo3t
Terminal=false
Type=Application
Categories=Development;
EOL
then you will also get a launcher icon so you will be able to press win-key and search for.
But you wont get an image for the icon (some ubuntu place-holder) :(
1
@Thamaraiselvam you can also take a look at this script for additional installs github.com/david1asher/post-install-scripts/blob/master/…
– ddavidad
Sep 16 '18 at 12:26
add a comment |
run the folowing commands(feel free to update the links and change folder names):
wget https://download.robomongo.org/1.1.1/linux/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
sudo tar -xzf robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz -C /opt
rm robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
sudo mkdir /opt/robo3t-1.1.1-linux-x86_64-c93c6b0//lib/BKP/
sudo mv /opt/robo3t-1.1.1-linux-x86_64-c93c6b0/lib/libstdc++* /opt/robo3t-1.1.1-linux-x86_64-c93c6b0//lib/BKP/
sudo ln -s /opt/robo3t-1.1.1-linux-x86_64-c93c6b0/bin/robo3t /usr/bin/robo3t
cat > ~/.local/share/applications/robo3t.desktop <<EOL
[Desktop Entry]
Encoding=UTF-8
Name=Robo3T
Exec=robo3t
Terminal=false
Type=Application
Categories=Development;
EOL
then you will also get a launcher icon so you will be able to press win-key and search for.
But you wont get an image for the icon (some ubuntu place-holder) :(
run the folowing commands(feel free to update the links and change folder names):
wget https://download.robomongo.org/1.1.1/linux/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
sudo tar -xzf robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz -C /opt
rm robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
sudo mkdir /opt/robo3t-1.1.1-linux-x86_64-c93c6b0//lib/BKP/
sudo mv /opt/robo3t-1.1.1-linux-x86_64-c93c6b0/lib/libstdc++* /opt/robo3t-1.1.1-linux-x86_64-c93c6b0//lib/BKP/
sudo ln -s /opt/robo3t-1.1.1-linux-x86_64-c93c6b0/bin/robo3t /usr/bin/robo3t
cat > ~/.local/share/applications/robo3t.desktop <<EOL
[Desktop Entry]
Encoding=UTF-8
Name=Robo3T
Exec=robo3t
Terminal=false
Type=Application
Categories=Development;
EOL
then you will also get a launcher icon so you will be able to press win-key and search for.
But you wont get an image for the icon (some ubuntu place-holder) :(
answered Nov 9 '17 at 16:53
ddavidadddavidad
212
212
1
@Thamaraiselvam you can also take a look at this script for additional installs github.com/david1asher/post-install-scripts/blob/master/…
– ddavidad
Sep 16 '18 at 12:26
add a comment |
1
@Thamaraiselvam you can also take a look at this script for additional installs github.com/david1asher/post-install-scripts/blob/master/…
– ddavidad
Sep 16 '18 at 12:26
1
1
@Thamaraiselvam you can also take a look at this script for additional installs github.com/david1asher/post-install-scripts/blob/master/…
– ddavidad
Sep 16 '18 at 12:26
@Thamaraiselvam you can also take a look at this script for additional installs github.com/david1asher/post-install-scripts/blob/master/…
– ddavidad
Sep 16 '18 at 12:26
add a comment |
Robo 3T (formerly Robomongo) is the free lightweight GUI with embedded shell for MongoDB enthusiasts. Use Ubuntu Software to install the robo3t-snap package or install it from the terminal with:
sudo snap install robo3t-snap
add a comment |
Robo 3T (formerly Robomongo) is the free lightweight GUI with embedded shell for MongoDB enthusiasts. Use Ubuntu Software to install the robo3t-snap package or install it from the terminal with:
sudo snap install robo3t-snap
add a comment |
Robo 3T (formerly Robomongo) is the free lightweight GUI with embedded shell for MongoDB enthusiasts. Use Ubuntu Software to install the robo3t-snap package or install it from the terminal with:
sudo snap install robo3t-snap
Robo 3T (formerly Robomongo) is the free lightweight GUI with embedded shell for MongoDB enthusiasts. Use Ubuntu Software to install the robo3t-snap package or install it from the terminal with:
sudo snap install robo3t-snap
edited Jan 2 at 6:20
karel
58.1k12128146
58.1k12128146
answered Jan 2 at 5:09
Vimal RajVimal Raj
164
164
add a comment |
add a comment |
if you try to install the latest version of robomobo that call be now robo3t. Or you try to install on ubuntu 16.04 follow the below step and your robomongo install
Download latest robomongo tar file
wget https://download.robomongo.org/1.1.1/linux/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
Extract it
tar -xvzf https://download.robomongo.org/1.1.1/linux/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
Make a directory
mkdir ~/robo-backup
Move robo3t-1.1.1-linux-x86_64-c93c6b0/lib/libstdc++ direcotry to ~/robo-backup/ direcotry
mv robo3t-1.1.1-linux-x86_64-c93c6b0/lib/libstdc++* ~/robo-backup/
Run the robo3t
robo3t-1.1.1-linux-x86_64-c93c6b0/bin/robo3t
add a comment |
if you try to install the latest version of robomobo that call be now robo3t. Or you try to install on ubuntu 16.04 follow the below step and your robomongo install
Download latest robomongo tar file
wget https://download.robomongo.org/1.1.1/linux/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
Extract it
tar -xvzf https://download.robomongo.org/1.1.1/linux/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
Make a directory
mkdir ~/robo-backup
Move robo3t-1.1.1-linux-x86_64-c93c6b0/lib/libstdc++ direcotry to ~/robo-backup/ direcotry
mv robo3t-1.1.1-linux-x86_64-c93c6b0/lib/libstdc++* ~/robo-backup/
Run the robo3t
robo3t-1.1.1-linux-x86_64-c93c6b0/bin/robo3t
add a comment |
if you try to install the latest version of robomobo that call be now robo3t. Or you try to install on ubuntu 16.04 follow the below step and your robomongo install
Download latest robomongo tar file
wget https://download.robomongo.org/1.1.1/linux/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
Extract it
tar -xvzf https://download.robomongo.org/1.1.1/linux/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
Make a directory
mkdir ~/robo-backup
Move robo3t-1.1.1-linux-x86_64-c93c6b0/lib/libstdc++ direcotry to ~/robo-backup/ direcotry
mv robo3t-1.1.1-linux-x86_64-c93c6b0/lib/libstdc++* ~/robo-backup/
Run the robo3t
robo3t-1.1.1-linux-x86_64-c93c6b0/bin/robo3t
if you try to install the latest version of robomobo that call be now robo3t. Or you try to install on ubuntu 16.04 follow the below step and your robomongo install
Download latest robomongo tar file
wget https://download.robomongo.org/1.1.1/linux/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
Extract it
tar -xvzf https://download.robomongo.org/1.1.1/linux/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
Make a directory
mkdir ~/robo-backup
Move robo3t-1.1.1-linux-x86_64-c93c6b0/lib/libstdc++ direcotry to ~/robo-backup/ direcotry
mv robo3t-1.1.1-linux-x86_64-c93c6b0/lib/libstdc++* ~/robo-backup/
Run the robo3t
robo3t-1.1.1-linux-x86_64-c93c6b0/bin/robo3t
edited Oct 10 '17 at 14:07
answered Oct 10 '17 at 13:44
Mohammad FaisalMohammad Faisal
1013
1013
add a comment |
add a comment |
If you need to install mongodb binary (Manually) to your Ubuntu 18.04 LTS (Bionic). You need to download mongodb .tgz file from this link .
1) Download it to your ~/Downloads folder and moveit to home directory by typing mv Downloads/mongodb-linux-x86_64-ubuntu1804-4.0.4.tgz ~/
2) Then unter it by typing tar -zxvf mongodb-linux-x86_64-ubuntu1804-4.0.4.tgz place it here (Home directory /home/). Dont move it from here.
3) Then make a directory at /data/db location and give write permission to thatdirectory.
sudo mkdir -p /data/db
sudo chmod -R 777 /data/db
4) Now, this is the tricky area. Make sure u r in hme directory by typing pwd (Present Working Directory)
pwd
it will show
/home/<your user name>
Then type
ls -al
This command will show up all hiddenfile at home directory and search for
~/.bashrc
5) Edit the .bashrc file and write
export PATH=mongodb-linux-x86_64-ubuntu1804-4.0.4/bin:$PATH
and save the file type source ./bashrc
Then type echo $PATH at terminal it will display ~/mongodb-linux-x86_64-ubuntu1804-4.0.4/bin:/home/xenon/.nvm/versions/node/v10.15.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin
6) Now at terminal type mongo --nodb
it will show MongoDB shell version v4.0.4
From here , you are all set, go ahead and enjoy mongodb installation. This istallation is bit complex but by this method you can easily control the version of mongodb and use it as per your need.
7) Then start mongod
>sudo mkdir -p /var/log && sudo chmod -R 777 /var/log
>mongod --port 27017 --dbpath /data/db --logpath /var/log/local.log --fork
>mongo --port 27017
add a comment |
If you need to install mongodb binary (Manually) to your Ubuntu 18.04 LTS (Bionic). You need to download mongodb .tgz file from this link .
1) Download it to your ~/Downloads folder and moveit to home directory by typing mv Downloads/mongodb-linux-x86_64-ubuntu1804-4.0.4.tgz ~/
2) Then unter it by typing tar -zxvf mongodb-linux-x86_64-ubuntu1804-4.0.4.tgz place it here (Home directory /home/). Dont move it from here.
3) Then make a directory at /data/db location and give write permission to thatdirectory.
sudo mkdir -p /data/db
sudo chmod -R 777 /data/db
4) Now, this is the tricky area. Make sure u r in hme directory by typing pwd (Present Working Directory)
pwd
it will show
/home/<your user name>
Then type
ls -al
This command will show up all hiddenfile at home directory and search for
~/.bashrc
5) Edit the .bashrc file and write
export PATH=mongodb-linux-x86_64-ubuntu1804-4.0.4/bin:$PATH
and save the file type source ./bashrc
Then type echo $PATH at terminal it will display ~/mongodb-linux-x86_64-ubuntu1804-4.0.4/bin:/home/xenon/.nvm/versions/node/v10.15.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin
6) Now at terminal type mongo --nodb
it will show MongoDB shell version v4.0.4
From here , you are all set, go ahead and enjoy mongodb installation. This istallation is bit complex but by this method you can easily control the version of mongodb and use it as per your need.
7) Then start mongod
>sudo mkdir -p /var/log && sudo chmod -R 777 /var/log
>mongod --port 27017 --dbpath /data/db --logpath /var/log/local.log --fork
>mongo --port 27017
add a comment |
If you need to install mongodb binary (Manually) to your Ubuntu 18.04 LTS (Bionic). You need to download mongodb .tgz file from this link .
1) Download it to your ~/Downloads folder and moveit to home directory by typing mv Downloads/mongodb-linux-x86_64-ubuntu1804-4.0.4.tgz ~/
2) Then unter it by typing tar -zxvf mongodb-linux-x86_64-ubuntu1804-4.0.4.tgz place it here (Home directory /home/). Dont move it from here.
3) Then make a directory at /data/db location and give write permission to thatdirectory.
sudo mkdir -p /data/db
sudo chmod -R 777 /data/db
4) Now, this is the tricky area. Make sure u r in hme directory by typing pwd (Present Working Directory)
pwd
it will show
/home/<your user name>
Then type
ls -al
This command will show up all hiddenfile at home directory and search for
~/.bashrc
5) Edit the .bashrc file and write
export PATH=mongodb-linux-x86_64-ubuntu1804-4.0.4/bin:$PATH
and save the file type source ./bashrc
Then type echo $PATH at terminal it will display ~/mongodb-linux-x86_64-ubuntu1804-4.0.4/bin:/home/xenon/.nvm/versions/node/v10.15.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin
6) Now at terminal type mongo --nodb
it will show MongoDB shell version v4.0.4
From here , you are all set, go ahead and enjoy mongodb installation. This istallation is bit complex but by this method you can easily control the version of mongodb and use it as per your need.
7) Then start mongod
>sudo mkdir -p /var/log && sudo chmod -R 777 /var/log
>mongod --port 27017 --dbpath /data/db --logpath /var/log/local.log --fork
>mongo --port 27017
If you need to install mongodb binary (Manually) to your Ubuntu 18.04 LTS (Bionic). You need to download mongodb .tgz file from this link .
1) Download it to your ~/Downloads folder and moveit to home directory by typing mv Downloads/mongodb-linux-x86_64-ubuntu1804-4.0.4.tgz ~/
2) Then unter it by typing tar -zxvf mongodb-linux-x86_64-ubuntu1804-4.0.4.tgz place it here (Home directory /home/). Dont move it from here.
3) Then make a directory at /data/db location and give write permission to thatdirectory.
sudo mkdir -p /data/db
sudo chmod -R 777 /data/db
4) Now, this is the tricky area. Make sure u r in hme directory by typing pwd (Present Working Directory)
pwd
it will show
/home/<your user name>
Then type
ls -al
This command will show up all hiddenfile at home directory and search for
~/.bashrc
5) Edit the .bashrc file and write
export PATH=mongodb-linux-x86_64-ubuntu1804-4.0.4/bin:$PATH
and save the file type source ./bashrc
Then type echo $PATH at terminal it will display ~/mongodb-linux-x86_64-ubuntu1804-4.0.4/bin:/home/xenon/.nvm/versions/node/v10.15.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin
6) Now at terminal type mongo --nodb
it will show MongoDB shell version v4.0.4
From here , you are all set, go ahead and enjoy mongodb installation. This istallation is bit complex but by this method you can easily control the version of mongodb and use it as per your need.
7) Then start mongod
>sudo mkdir -p /var/log && sudo chmod -R 777 /var/log
>mongod --port 27017 --dbpath /data/db --logpath /var/log/local.log --fork
>mongo --port 27017
answered 10 mins ago
Kaushik DasKaushik Das
15
15
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f739297%2fhow-to-install-robomongo-on-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown