OpenSSHをインストールします
UbuntuはデフォルトではSSHサーバーをインストールしません。次のコマンドを使用してインストールします。
sudo apt-get install openssh-server openssh-client
ただし、Ubuntuはデフォルトでsshクライアントをインストールしています。
構成後に再起動します。
sudo /etc/init.d/ssh restart
Windowsクライアントはコマンドシェルモードをパテに接続します
sudo apt-get install git vim openssh build-essential libssh-dev wget curl
https://github.com/creationix/nvm/blob/master/README.md
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
or
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
sudo service apache2 stop
update-rc.d -f apache2 remove
sudo apt-get remove apache2
sudo apt-get update
sudo apt-get install nginx
nginx -v #nginxバージョンを表示
cd /etc/nginx/conf.d
sudo vi www-angular-site.conf
upstream www {
server 127.0.0.1:3000;}
server{
listen 80;
server_name www.angular.site;
location /{
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-Nginx-Porxy true;
proxy_pass http://www;
proxy_redirect off;}}
nginxを再起動します
nginx restart
mongodb構成ファイルのパス
vi /etc/mongod.conf
mongodbを開始します
sudo service mongod start