What is the recommended place to install nodejs and mongodb in ubuntu 16.04 LTS?
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
0
down vote
favorite
I was trying to install node js in my Ubuntu 16.04 LTS , First I have downloaded latest distribution from Nodejs_Official_Page_Link .It got downloaded at my Downloads folder.then I have copied it from Download folder to /usr/local/
Directory through following command:
sudo cp -r node-v9.11.1-linux-x64 /usr/local/
After that I have checked my /usr/local/
Directory and it showed me a folder name node-v9.11.1-linux-x64
After that I have tried to set the path through following command:
sudo nano /etc/environment
Then I have added :/usr/local/node-v9.11.1-linux-x64/bin
in PATH
then I checked it through node --version
and it showed me v9.11.1
& for npm --version
it is 5.6.0
then I tried to run npm i -g node-static
and it said permission error ,try it as root.I know it can be done with sudo
then.
So my question is that /usr/local/
a correct choice to install Node-js or should I install it somewhere else?
Further I also want to know what is the recommended place to install mongodb?I am new to Ubuntu so want to go with the recommended/safe practices suggested by experienced developers.Thankyou!
16.04 software-installation nodejs mongodb
add a comment |Â
up vote
0
down vote
favorite
I was trying to install node js in my Ubuntu 16.04 LTS , First I have downloaded latest distribution from Nodejs_Official_Page_Link .It got downloaded at my Downloads folder.then I have copied it from Download folder to /usr/local/
Directory through following command:
sudo cp -r node-v9.11.1-linux-x64 /usr/local/
After that I have checked my /usr/local/
Directory and it showed me a folder name node-v9.11.1-linux-x64
After that I have tried to set the path through following command:
sudo nano /etc/environment
Then I have added :/usr/local/node-v9.11.1-linux-x64/bin
in PATH
then I checked it through node --version
and it showed me v9.11.1
& for npm --version
it is 5.6.0
then I tried to run npm i -g node-static
and it said permission error ,try it as root.I know it can be done with sudo
then.
So my question is that /usr/local/
a correct choice to install Node-js or should I install it somewhere else?
Further I also want to know what is the recommended place to install mongodb?I am new to Ubuntu so want to go with the recommended/safe practices suggested by experienced developers.Thankyou!
16.04 software-installation nodejs mongodb
the recommended way for mongodb issudo apt-get install mongodb
â pim
Apr 18 at 14:19
For Node.js, you can use their repository. See this: linuxuprising.com/2018/04/⦠it explains installing from their repository as well as setting the PATH correctly.
â Logix
Apr 18 at 19:18
I'd definitely recommend installing via supported packages rather than copying files into/usr/local
manually. For MongoDB: docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu. For Node: github.com/nodesource/distributions#debinstall.
â Stennie
Apr 19 at 7:00
@Stennie I know it would be easy to install through packages but as I have already installed it by copying it to/usr/local
directory so want to resolve this permission issue .I first thought as throughsudo
it will be done but it didn't work withsudo
so can you please suggest me how to resolve this permission issue , I tried following command and it didn't work :sudo npm i -g node-static
which responded assudo: npm: command not found
â user716691
May 6 at 10:08
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I was trying to install node js in my Ubuntu 16.04 LTS , First I have downloaded latest distribution from Nodejs_Official_Page_Link .It got downloaded at my Downloads folder.then I have copied it from Download folder to /usr/local/
Directory through following command:
sudo cp -r node-v9.11.1-linux-x64 /usr/local/
After that I have checked my /usr/local/
Directory and it showed me a folder name node-v9.11.1-linux-x64
After that I have tried to set the path through following command:
sudo nano /etc/environment
Then I have added :/usr/local/node-v9.11.1-linux-x64/bin
in PATH
then I checked it through node --version
and it showed me v9.11.1
& for npm --version
it is 5.6.0
then I tried to run npm i -g node-static
and it said permission error ,try it as root.I know it can be done with sudo
then.
So my question is that /usr/local/
a correct choice to install Node-js or should I install it somewhere else?
Further I also want to know what is the recommended place to install mongodb?I am new to Ubuntu so want to go with the recommended/safe practices suggested by experienced developers.Thankyou!
16.04 software-installation nodejs mongodb
I was trying to install node js in my Ubuntu 16.04 LTS , First I have downloaded latest distribution from Nodejs_Official_Page_Link .It got downloaded at my Downloads folder.then I have copied it from Download folder to /usr/local/
Directory through following command:
sudo cp -r node-v9.11.1-linux-x64 /usr/local/
After that I have checked my /usr/local/
Directory and it showed me a folder name node-v9.11.1-linux-x64
After that I have tried to set the path through following command:
sudo nano /etc/environment
Then I have added :/usr/local/node-v9.11.1-linux-x64/bin
in PATH
then I checked it through node --version
and it showed me v9.11.1
& for npm --version
it is 5.6.0
then I tried to run npm i -g node-static
and it said permission error ,try it as root.I know it can be done with sudo
then.
So my question is that /usr/local/
a correct choice to install Node-js or should I install it somewhere else?
Further I also want to know what is the recommended place to install mongodb?I am new to Ubuntu so want to go with the recommended/safe practices suggested by experienced developers.Thankyou!
16.04 software-installation nodejs mongodb
16.04 software-installation nodejs mongodb
edited Apr 18 at 13:59
Brixton Mavu
31
31
asked Apr 18 at 13:03
![](https://i.stack.imgur.com/KOpkR.jpg?s=32&g=1)
![](https://i.stack.imgur.com/KOpkR.jpg?s=32&g=1)
user716691
456
456
the recommended way for mongodb issudo apt-get install mongodb
â pim
Apr 18 at 14:19
For Node.js, you can use their repository. See this: linuxuprising.com/2018/04/⦠it explains installing from their repository as well as setting the PATH correctly.
â Logix
Apr 18 at 19:18
I'd definitely recommend installing via supported packages rather than copying files into/usr/local
manually. For MongoDB: docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu. For Node: github.com/nodesource/distributions#debinstall.
â Stennie
Apr 19 at 7:00
@Stennie I know it would be easy to install through packages but as I have already installed it by copying it to/usr/local
directory so want to resolve this permission issue .I first thought as throughsudo
it will be done but it didn't work withsudo
so can you please suggest me how to resolve this permission issue , I tried following command and it didn't work :sudo npm i -g node-static
which responded assudo: npm: command not found
â user716691
May 6 at 10:08
add a comment |Â
the recommended way for mongodb issudo apt-get install mongodb
â pim
Apr 18 at 14:19
For Node.js, you can use their repository. See this: linuxuprising.com/2018/04/⦠it explains installing from their repository as well as setting the PATH correctly.
â Logix
Apr 18 at 19:18
I'd definitely recommend installing via supported packages rather than copying files into/usr/local
manually. For MongoDB: docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu. For Node: github.com/nodesource/distributions#debinstall.
â Stennie
Apr 19 at 7:00
@Stennie I know it would be easy to install through packages but as I have already installed it by copying it to/usr/local
directory so want to resolve this permission issue .I first thought as throughsudo
it will be done but it didn't work withsudo
so can you please suggest me how to resolve this permission issue , I tried following command and it didn't work :sudo npm i -g node-static
which responded assudo: npm: command not found
â user716691
May 6 at 10:08
the recommended way for mongodb is
sudo apt-get install mongodb
â pim
Apr 18 at 14:19
the recommended way for mongodb is
sudo apt-get install mongodb
â pim
Apr 18 at 14:19
For Node.js, you can use their repository. See this: linuxuprising.com/2018/04/⦠it explains installing from their repository as well as setting the PATH correctly.
â Logix
Apr 18 at 19:18
For Node.js, you can use their repository. See this: linuxuprising.com/2018/04/⦠it explains installing from their repository as well as setting the PATH correctly.
â Logix
Apr 18 at 19:18
I'd definitely recommend installing via supported packages rather than copying files into
/usr/local
manually. For MongoDB: docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu. For Node: github.com/nodesource/distributions#debinstall.â Stennie
Apr 19 at 7:00
I'd definitely recommend installing via supported packages rather than copying files into
/usr/local
manually. For MongoDB: docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu. For Node: github.com/nodesource/distributions#debinstall.â Stennie
Apr 19 at 7:00
@Stennie I know it would be easy to install through packages but as I have already installed it by copying it to
/usr/local
directory so want to resolve this permission issue .I first thought as through sudo
it will be done but it didn't work with sudo
so can you please suggest me how to resolve this permission issue , I tried following command and it didn't work : sudo npm i -g node-static
which responded as sudo: npm: command not found
â user716691
May 6 at 10:08
@Stennie I know it would be easy to install through packages but as I have already installed it by copying it to
/usr/local
directory so want to resolve this permission issue .I first thought as through sudo
it will be done but it didn't work with sudo
so can you please suggest me how to resolve this permission issue , I tried following command and it didn't work : sudo npm i -g node-static
which responded as sudo: npm: command not found
â user716691
May 6 at 10:08
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
2
down vote
I'm also new on Ubuntu and I installed node few weeks ago.
is that /usr/local a correct choice to install Node-js or should I
install it somewhere else ?
I think that /usr/bin/ is not a bad place to install nodeJs, however keep in mind that other users on your computer won't have access.
I am new to Ubuntu so want to go with the recommended/safe practices
suggested by experienced developers.
According to the documentation : https://docs.npmjs.com/getting-started/fixing-npm-permissions , you should ensure that you've complete all the "manual steps".
I suggest you to use nodesource github repository for automated installation.
I know it would be easy to install through packages but as I have already installed it by copying it to/usr/local
directory so want to resolve this permission issue .I first thought as throughsudo
it will be done but it didn't work withsudo
so can you please suggest me how to resolve this permission issue , I tried following command and it didn't work :sudo npm i -g node-static
which responded assudo: npm: command not found
â user716691
May 6 at 10:11
If you want to run Node with manual installation, you should be able to fix your permission issues if you follow the steps described here : docs.npmjs.com/getting-started/fixing-npm-permissions
â Florian
May 14 at 9:08
thanks for your reply , Did you install mongodb ,if yes then what is the recommended place for same ?
â user716691
Jun 26 at 13:04
Not yet, however I'm planning to use MongoDB for my next project. I recommend you to install using repertory. You have a sort of tutorial here : digitalocean.com/community/tutorials/â¦
â Florian
Jun 26 at 14:40
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
I'm also new on Ubuntu and I installed node few weeks ago.
is that /usr/local a correct choice to install Node-js or should I
install it somewhere else ?
I think that /usr/bin/ is not a bad place to install nodeJs, however keep in mind that other users on your computer won't have access.
I am new to Ubuntu so want to go with the recommended/safe practices
suggested by experienced developers.
According to the documentation : https://docs.npmjs.com/getting-started/fixing-npm-permissions , you should ensure that you've complete all the "manual steps".
I suggest you to use nodesource github repository for automated installation.
I know it would be easy to install through packages but as I have already installed it by copying it to/usr/local
directory so want to resolve this permission issue .I first thought as throughsudo
it will be done but it didn't work withsudo
so can you please suggest me how to resolve this permission issue , I tried following command and it didn't work :sudo npm i -g node-static
which responded assudo: npm: command not found
â user716691
May 6 at 10:11
If you want to run Node with manual installation, you should be able to fix your permission issues if you follow the steps described here : docs.npmjs.com/getting-started/fixing-npm-permissions
â Florian
May 14 at 9:08
thanks for your reply , Did you install mongodb ,if yes then what is the recommended place for same ?
â user716691
Jun 26 at 13:04
Not yet, however I'm planning to use MongoDB for my next project. I recommend you to install using repertory. You have a sort of tutorial here : digitalocean.com/community/tutorials/â¦
â Florian
Jun 26 at 14:40
add a comment |Â
up vote
2
down vote
I'm also new on Ubuntu and I installed node few weeks ago.
is that /usr/local a correct choice to install Node-js or should I
install it somewhere else ?
I think that /usr/bin/ is not a bad place to install nodeJs, however keep in mind that other users on your computer won't have access.
I am new to Ubuntu so want to go with the recommended/safe practices
suggested by experienced developers.
According to the documentation : https://docs.npmjs.com/getting-started/fixing-npm-permissions , you should ensure that you've complete all the "manual steps".
I suggest you to use nodesource github repository for automated installation.
I know it would be easy to install through packages but as I have already installed it by copying it to/usr/local
directory so want to resolve this permission issue .I first thought as throughsudo
it will be done but it didn't work withsudo
so can you please suggest me how to resolve this permission issue , I tried following command and it didn't work :sudo npm i -g node-static
which responded assudo: npm: command not found
â user716691
May 6 at 10:11
If you want to run Node with manual installation, you should be able to fix your permission issues if you follow the steps described here : docs.npmjs.com/getting-started/fixing-npm-permissions
â Florian
May 14 at 9:08
thanks for your reply , Did you install mongodb ,if yes then what is the recommended place for same ?
â user716691
Jun 26 at 13:04
Not yet, however I'm planning to use MongoDB for my next project. I recommend you to install using repertory. You have a sort of tutorial here : digitalocean.com/community/tutorials/â¦
â Florian
Jun 26 at 14:40
add a comment |Â
up vote
2
down vote
up vote
2
down vote
I'm also new on Ubuntu and I installed node few weeks ago.
is that /usr/local a correct choice to install Node-js or should I
install it somewhere else ?
I think that /usr/bin/ is not a bad place to install nodeJs, however keep in mind that other users on your computer won't have access.
I am new to Ubuntu so want to go with the recommended/safe practices
suggested by experienced developers.
According to the documentation : https://docs.npmjs.com/getting-started/fixing-npm-permissions , you should ensure that you've complete all the "manual steps".
I suggest you to use nodesource github repository for automated installation.
I'm also new on Ubuntu and I installed node few weeks ago.
is that /usr/local a correct choice to install Node-js or should I
install it somewhere else ?
I think that /usr/bin/ is not a bad place to install nodeJs, however keep in mind that other users on your computer won't have access.
I am new to Ubuntu so want to go with the recommended/safe practices
suggested by experienced developers.
According to the documentation : https://docs.npmjs.com/getting-started/fixing-npm-permissions , you should ensure that you've complete all the "manual steps".
I suggest you to use nodesource github repository for automated installation.
answered Apr 18 at 13:27
![](https://lh4.googleusercontent.com/-45hNp81idDE/AAAAAAAAAAI/AAAAAAAAAB4/OLaZOd7rtF0/photo.jpg?sz=32)
![](https://lh4.googleusercontent.com/-45hNp81idDE/AAAAAAAAAAI/AAAAAAAAAB4/OLaZOd7rtF0/photo.jpg?sz=32)
Florian
1393
1393
I know it would be easy to install through packages but as I have already installed it by copying it to/usr/local
directory so want to resolve this permission issue .I first thought as throughsudo
it will be done but it didn't work withsudo
so can you please suggest me how to resolve this permission issue , I tried following command and it didn't work :sudo npm i -g node-static
which responded assudo: npm: command not found
â user716691
May 6 at 10:11
If you want to run Node with manual installation, you should be able to fix your permission issues if you follow the steps described here : docs.npmjs.com/getting-started/fixing-npm-permissions
â Florian
May 14 at 9:08
thanks for your reply , Did you install mongodb ,if yes then what is the recommended place for same ?
â user716691
Jun 26 at 13:04
Not yet, however I'm planning to use MongoDB for my next project. I recommend you to install using repertory. You have a sort of tutorial here : digitalocean.com/community/tutorials/â¦
â Florian
Jun 26 at 14:40
add a comment |Â
I know it would be easy to install through packages but as I have already installed it by copying it to/usr/local
directory so want to resolve this permission issue .I first thought as throughsudo
it will be done but it didn't work withsudo
so can you please suggest me how to resolve this permission issue , I tried following command and it didn't work :sudo npm i -g node-static
which responded assudo: npm: command not found
â user716691
May 6 at 10:11
If you want to run Node with manual installation, you should be able to fix your permission issues if you follow the steps described here : docs.npmjs.com/getting-started/fixing-npm-permissions
â Florian
May 14 at 9:08
thanks for your reply , Did you install mongodb ,if yes then what is the recommended place for same ?
â user716691
Jun 26 at 13:04
Not yet, however I'm planning to use MongoDB for my next project. I recommend you to install using repertory. You have a sort of tutorial here : digitalocean.com/community/tutorials/â¦
â Florian
Jun 26 at 14:40
I know it would be easy to install through packages but as I have already installed it by copying it to
/usr/local
directory so want to resolve this permission issue .I first thought as through sudo
it will be done but it didn't work with sudo
so can you please suggest me how to resolve this permission issue , I tried following command and it didn't work : sudo npm i -g node-static
which responded as sudo: npm: command not found
â user716691
May 6 at 10:11
I know it would be easy to install through packages but as I have already installed it by copying it to
/usr/local
directory so want to resolve this permission issue .I first thought as through sudo
it will be done but it didn't work with sudo
so can you please suggest me how to resolve this permission issue , I tried following command and it didn't work : sudo npm i -g node-static
which responded as sudo: npm: command not found
â user716691
May 6 at 10:11
If you want to run Node with manual installation, you should be able to fix your permission issues if you follow the steps described here : docs.npmjs.com/getting-started/fixing-npm-permissions
â Florian
May 14 at 9:08
If you want to run Node with manual installation, you should be able to fix your permission issues if you follow the steps described here : docs.npmjs.com/getting-started/fixing-npm-permissions
â Florian
May 14 at 9:08
thanks for your reply , Did you install mongodb ,if yes then what is the recommended place for same ?
â user716691
Jun 26 at 13:04
thanks for your reply , Did you install mongodb ,if yes then what is the recommended place for same ?
â user716691
Jun 26 at 13:04
Not yet, however I'm planning to use MongoDB for my next project. I recommend you to install using repertory. You have a sort of tutorial here : digitalocean.com/community/tutorials/â¦
â Florian
Jun 26 at 14:40
Not yet, however I'm planning to use MongoDB for my next project. I recommend you to install using repertory. You have a sort of tutorial here : digitalocean.com/community/tutorials/â¦
â Florian
Jun 26 at 14:40
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1026105%2fwhat-is-the-recommended-place-to-install-nodejs-and-mongodb-in-ubuntu-16-04-lts%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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
the recommended way for mongodb is
sudo apt-get install mongodb
â pim
Apr 18 at 14:19
For Node.js, you can use their repository. See this: linuxuprising.com/2018/04/⦠it explains installing from their repository as well as setting the PATH correctly.
â Logix
Apr 18 at 19:18
I'd definitely recommend installing via supported packages rather than copying files into
/usr/local
manually. For MongoDB: docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu. For Node: github.com/nodesource/distributions#debinstall.â Stennie
Apr 19 at 7:00
@Stennie I know it would be easy to install through packages but as I have already installed it by copying it to
/usr/local
directory so want to resolve this permission issue .I first thought as throughsudo
it will be done but it didn't work withsudo
so can you please suggest me how to resolve this permission issue , I tried following command and it didn't work :sudo npm i -g node-static
which responded assudo: npm: command not found
â user716691
May 6 at 10:08