$ cd ~
$ wget https://storage.googleapis.com/golang/go1.5.3.linux-amd64.tar.gz
$ tar xzvf go1.5.3.linux-amd64.tar.gz
$ wget https://storage.googleapis.com/golang/go1.5.3.src.tar.gz
$ tar xzvf go1.5.3.src.tar.gz
| #!/usr/bin/env python2 | |
| # coding: utf-8 | |
| import os,socket,threading,time | |
| #import traceback | |
| allow_delete = False | |
| local_ip = socket.gethostbyname(socket.gethostname()) | |
| local_port = 8888 | |
| currdir=os.path.abspath('.') |
| # Download and Install the Latest Updates for the OS | |
| apt-get update && apt-get upgrade -y | |
| # Set the Server Timezone to CST | |
| echo "America/Chicago" > /etc/timezone | |
| dpkg-reconfigure -f noninteractive tzdata | |
| # Enable Ubuntu Firewall and allow SSH & MySQL Ports | |
| ufw enable | |
| ufw allow 22 |
| #!/bin/sh | |
| # | |
| # Installs Python 2.7.9 on Ubuntu 14.04 to include security updates | |
| # Run this script with superuser privileges. | |
| # | |
| BASEDEPS="build-essential python-pip" | |
| BUILDDEPS="libbz2-dev \ | |
| libc6-dev \ | |
| libgdbm-dev \ |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
Install zulip server under ubuntu 14.04
run the following command as root user
| #!/bin/bash | |
| #install scribe in docker container | |
| echo '==================================================' | |
| echo '===============Install necessary tools===============' | |
| echo '==================================================' | |
| yum update | |
| yum install -y wget tar git make flex bison libtool autoconf automake openssl-devel libevent libevent-devel python-devel gcc-c++ byacc |