Code Monkey home page Code Monkey logo

linux-server-configuration's Introduction

Linux Server Configuration

Dustin D'Avignon

About

This is the sixth project for the Udacity Full Stack Nanodegree. This project involves taking a baseline installation of Linux on a virtual machine and preparing it to host web applications. This includes installing updates, securing the server from attacks, and installing / configuring web and database servers.

Server Info

Getting Started

This project uses Amazon Lightsail to create a Linux server instance.

  1. Get your server.

    • Start a new Ubuntu Linux server instance on Amazon Lightsail.

      • Log in!
      • Create an instance
      • Choose an instance image: Ubuntu (OS only)
      • Choose your instance plan (lowest tier is fine)
      • Give your instance a hostname
      • Wait for startup
      • Once the instance has started up, follow the instructions provided to SSH into your server.
  2. Secure your server.

    • Update all currently installed packages.

        sudo apt-get update
        sudo apt-get upgrade
      

      auto upgrades run sudo dpkg-reconfigure --priority=low unattended-upgrades

    • Change the SSH port from 22 to 2200. Make sure to configure the Lightsail firewall to allow it.

        sudo vim /etc/ssh/sshd_config
      

      change port form 22 to 2200

    • Configure the Uncomplicated Firewall (UFW) to only allow incoming connections for SSH (port 2200), HTTP (port 80), and NTP (port 123).

        sudo ufw allow 2200/tcp
        sudo ufw allow 80/tcp
        sudo ufw allow 123/tcp
        sudo ufw enable
      

      Warning: When changing the SSH port, make sure that the firewall is open for port 2200 first, so that you don't lock yourself out of the server. Review this video for details! When you change the SSH port, the Lightsail instance will no longer be accessible through the web app 'Connect using SSH' button. The button assumes the default port is being used. There are instructions on the same page for connecting from your terminal to the instance. Connect using those instructions and then follow the rest of the steps.

  3. Give grader access.

    In order for your project to be reviewed, the grader needs to be able to log in to your server.

    • Create a new user account named grader.

        sudo adduser grader
      
    • Give grader the permission to sudo.

        sudo vim /etc/sudoers.d/grader
      

      add text grader ALL=(ALL) NOPASSWD:ALL

    • Create an SSH key pair for grader using the ssh-keygen tool.

            ssh-keygen -t rsa
            
        To login
            ssh -i .ssh/grader_udacity [email protected] -p 2200
      
  4. Prepare to deploy your project.

  5. Do not allow remote connections

    Create a new database user named catalog that has limited permissions to your catalog application database.

     https://help.ubuntu.com/community/PostgreSQL
    
  6. Deploy the Item Catalog project.

    http://34.210.194.203/

Resources

https://www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-uwsgi-and-nginx-on-ubuntu-16-04

https://help.ubuntu.com/community/PostgreSQL

linux-server-configuration's People

Contributors

ddavignon avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.