Archived
1
0

Merge branch 'master' of ssh://github.com/majestrate/nntpchan

This commit is contained in:
Jeff Becker 2016-10-22 15:43:48 -04:00
commit 00fdbb9449

View File

@ -3,51 +3,25 @@
Install the initial dependencies: Install the initial dependencies:
``` ```
apt-get -y --no-install-recommends install imagemagick libsodium-dev sox git ca-certificates libav-tools build-essential tcl8.5 apt-get -y --no-install-recommends install imagemagick libsodium-dev sox git ca-certificates \
libav-tools build-essential tcl8.5 postgresql postgresql-contrib
``` ```
##Install redis ##Configure postgresql
It is not recommended that you install redis from the default package repos because it is probably not up to date.
Download the redis stable tarball and make:
``` ```
cd /opt su - postgres -c "createuser --pwprompt --encrypted srnd"
wget http://download.redis.io/redis-stable.tar.gz su - postgres -c "createdb srnd"
tar -xzvf redis-stable.tar.gz
cd redis-stable
make && make test && make install
``` ```
Don't forget the password you make for the srnd user, you will need it for configuration.
The `utils/` directory has a bash script that automates redis configuration. The default settings work just fine, so run the script:
```
cd utils && ./install_server.sh
```
Make redis start during system boot up:
```
update-rc.d redis_6379 defaults
```
It is *strongly recommended* that you use a password for redis. I am generating an sha512sum for a random string:
```
"good old fashioned memes will end global warming and restore our freedom of speech" | sha512sum
```
Edit `/etc/redis/6379.conf` and append the file with `requirepass YOUR_LONG_PASSWORD_HERE`.
## Install golang ## Install golang
Download the golang tarball, extract it to `/usr/local`, and add it to the global profile: Download the golang tarball, extract it to `/usr/local`, and add it to the global profile:
``` ```
cd /opt cd /opt
wget https://storage.googleapis.com/golang/go1.6.2.linux-amd64.tar.gz wget https://storage.googleapis.com/golang/go1.7.3.linux-amd64.tar.gz
tar -C /usr/local/ -xvzf go1.6.2.linux-amd64.tar.gz tar -C /usr/local/ -xvzf go1.7.3.linux-amd64.tar.gz
echo 'export PATH="$PATH:/usr/local/go/bin"' >> /etc/profile echo 'export PATH="$PATH:/usr/local/go/bin"' >> /etc/profile
``` ```