Archived
1
0

ammend docs and readme

This commit is contained in:
jeff
2015-08-31 09:20:54 -04:00
parent 6e4c38bc95
commit 902650ac00
2 changed files with 1 additions and 37 deletions

View File

@@ -1,33 +0,0 @@
Postgres on Debian:
# install
apt install postgresql postgresql-client
Setting up postgres (as root)
# become postgres user
su postgres
# spawn postgres admin shell
psql
You'll get a prompt, enter the following:
CREATE ROLE srnd WITH LOGIN PASSWORD 'srndpassword';
CREATE DATABASE srnd WITH ENCODING 'UTF8' OWNER srnd;
\q
Change the username and password as desired.
RabbitMQ on Debian:
# install
apt install rabbitmq-server
Copy the rabbitmq configs and restart rabbitmq
# as root
cp ~/nntpchan/contrib/configs/rabbitmq/* /etc/rabbitmq/
systemctl restart rabbitmq-server