forked from opencats/OpenCATS-Installation-Scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDebian8-OpenCATS-Install.sh
33 lines (25 loc) · 1.35 KB
/
Debian8-OpenCATS-Install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh
# This script will install a new OpenCATS instance on a fresh Debian 8 server.
# This script is experimental and does not ensure any security.
export DEBIAN_FRONTEND=noninteractive
apt -y update
apt install -y mariadb-server mariadb-client apache2 curl php5 php-soap php5-ldap php5-mysql php5-gd php5-curl antiword poppler-utils html2text unrtf
# Set up database
mysql -u root --execute="CREATE DATABASE cats_dev;"
mysql -u root --execute="CREATE USER 'cats'@'localhost' IDENTIFIED BY 'password';"
mysql -u root --execute="GRANT ALL PRIVILEGES ON cats_dev.* TO 'cats'@'localhost';"
# Download OpenCATS
cd /var/www/html
wget https://github.com/opencats/OpenCATS/releases/download/0.9.4/opencats-0.9.4-full.zip
unzip opencats-0.9.4-full.zip
mv /var/www/html/home/travis/build/opencats/OpenCATS opencats
rm -Rf /var/www/html/home /var/www/html/opencats/INSTALL_BLOCK
# Set file and folder permissions
chown www-data:www-data -R opencats && chmod -R 770 opencats/attachments opencats/upload
# Restart Apache to load new config
service apache2 restart
echo ""
echo "Setup Finished, Your OpenCATS applicant tracking system should now be installed."
echo "MySQL was installed without a root password, It is recommended that you set a root MySQL password."
echo ""
echo "You can finish installation of your OpenCATS applicant tracking system at: http://localhost/opencats"