'2019/06'에 해당되는 글 4건

  1. 2019.06.10 MikroTik Client Static IP 설정
  2. 2019.06.03 Ubuntu node.js v12.x 설치
  3. 2019.06.02 Ubuntu MongoDB 설치
  4. 2019.06.02 Ubuntu node.js v10.x 설치

WinBox v6.43.8 on RB750GL

 

IP 할당 정보 확인

 

IP -> DHCP Server -> Leases

 

 

 

 

D = Dynamic

Static으로 변경할 Client Double click

 

 

 

Make Static click -> OK click

다시 변경할 Client Double click

 

 

 

 

General -> Address 에 Static IP 설정 -> OK

 

 

 

Windows

 

ipconfig/release

ipconfig/renew

 

'Study > Network' 카테고리의 다른 글

CCNA 200-120 eigrp config  (0) 2015.05.09
Posted by theqoo
,

Ubuntu 16.04.4 LTS [Amazon Lightsail]


NodeSource 사용

curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt-get install -y nodejs


https://github.com/nodesource/distributions

 

 

'Study > Ubuntu' 카테고리의 다른 글

Ubuntu MariaDB 설치  (0) 2020.01.07
AWS CLI 설치 및 삭제  (0) 2019.09.01
Ubuntu MongoDB 설치  (0) 2019.06.02
Ubuntu node.js v10.x 설치  (0) 2019.06.02
Ubuntu - 디스크 정보 확인  (0) 2015.08.13
Posted by theqoo
,

Ubuntu 16.04.4 LTS [Amazon Lightsail]

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 9DA31620334BD75D9DCB49F368818C72E52529D4

echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/4.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.0.list

sudo apt-get update

sudo apt-get install -y mongodb-org

echo "mongodb-org hold" | sudo dpkg --set-selections
echo "mongodb-org-server hold" | sudo dpkg --set-selections
echo "mongodb-org-shell hold" | sudo dpkg --set-selections
echo "mongodb-org-mongos hold" | sudo dpkg --set-selections
echo "mongodb-org-tools hold" | sudo dpkg --set-selections

sudo service mongod start

mongod --version

'Study > Ubuntu' 카테고리의 다른 글

AWS CLI 설치 및 삭제  (0) 2019.09.01
Ubuntu node.js v12.x 설치  (0) 2019.06.03
Ubuntu node.js v10.x 설치  (0) 2019.06.02
Ubuntu - 디스크 정보 확인  (0) 2015.08.13
https 보안서버 구축 (SSL 사설 인증서 설치)  (0) 2015.05.27
Posted by theqoo
,

Ubuntu 16.04.4 LTS [Amazon Lightsail]

 

wget https://nodejs.org/dist/v10.16.0/node-v10.16.0-linux-x64.tar.xz


VERSION=v10.16.0
DISTRO=linux-x64
sudo mkdir -p /usr/local/lib/nodejs
sudo tar -xJvf node-$VERSION-$DISTRO.tar.xz -C /usr/local/lib/nodejs


vi .profile

# Nodejs

VERSION=v10.16.0

DISTRO=linux-x64

export PATH=/usr/local/lib/nodejs/node-$VERSION-$DISTRO/bin:$PATH

 

. ~/.profile

 

node -v

'Study > Ubuntu' 카테고리의 다른 글

Ubuntu node.js v12.x 설치  (0) 2019.06.03
Ubuntu MongoDB 설치  (0) 2019.06.02
Ubuntu - 디스크 정보 확인  (0) 2015.08.13
https 보안서버 구축 (SSL 사설 인증서 설치)  (0) 2015.05.27
Ubuntu - nginx에 phpmyadmin 설정  (1) 2013.04.01
Posted by theqoo
,