Skip to content

Instantly share code, notes, and snippets.

@ThisIsNotTheUserYouAreLookingFor
Last active August 29, 2015 14:10
Show Gist options
  • Save ThisIsNotTheUserYouAreLookingFor/c8331488032eff58cb00 to your computer and use it in GitHub Desktop.
Save ThisIsNotTheUserYouAreLookingFor/c8331488032eff58cb00 to your computer and use it in GitHub Desktop.
Mellivora setup CentOS 6.6
yum -y update
rpm -Uvh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
yum --enablerepo=remi install httpd mysql-server php php-mysql git
service httpd start
service mysqld start
mysql_secure_installation
chkconfig httpd on
chkconfig mysqld on
git clone https://github.com/Nakiami/mellivora.git /var/www/ctf
curl -sS https://getcomposer.org/installer | php
sudo mv composer.phar /usr/local/bin/composer
cd /var/www/ctf/include/thirdparty/composer/
composer install
cp /var/www/ctf/include/config/config.inc.php.example /var/www/ctf/include/config/config.inc.php
cp /var/www/ctf/include/config/db.inc.php.example /var/www/ctf/include/config/db.inc.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment