Install zulip server under ubuntu 14.04
- https://groups.google.com/forum/#!forum/zulip-devel
- https://zulip.org/server.html
- https://github.com/zulip/zulip/blob/master/README.prod.md
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 |
Install zulip server under ubuntu 14.04
run the following command as root user
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.
| #!/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 \ |
| # 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 |
| #!/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('.') |
// vcsGit describes how to use Git.
var vcsGit = &vcsCmd{
name: "Git",
cmd: "git",
createCmd: []string{"clone --progress {repo} {dir}", "--git-dir={dir}/.git submodule update --init --recursive"},
downloadCmd: []string{"pull --ff-only", "submodule update --init --recursive"},