Skip to content

Instantly share code, notes, and snippets.

@ammario
Last active January 12, 2017 16:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ammario/8dcf1a1d757b970de7aaee5e9cbe61b2 to your computer and use it in GitHub Desktop.
Save ammario/8dcf1a1d757b970de7aaee5e9cbe61b2 to your computer and use it in GitHub Desktop.
Install Adminer w/ Apache
#!/bin/bash
yum -y install httpd php php-mysql mariadb mariadb-server wget
sed -i 's/Listen 80/Listen 8080/g' /etc/httpd/conf/httpd.conf
service httpd restart
service mariadb restart
mkdir -p /var/www/html/
wget -O /var/www/html/adminer.php https://www.adminer.org/static/download/4.2.5/adminer-4.2.5-mysql.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment