Skip to content

Instantly share code, notes, and snippets.

View rc100's full-sized avatar

Rian Callahan rc100

  • Bixal
  • Portland, OR
View GitHub Profile
@rc100
rc100 / fedora-install-process
Created August 6, 2014 22:58
Fedora install process
install JDK and Mysql (or MariaDB)
create a database for fedora:
CREATE DATABASE fedora3;
GRANT ALL ON fedora3.* TO fedoraAdmin@localhost IDENTIFIED BY 'fedoraAdmin';
GRANT ALL ON fedora3.* TO fedoraAdmin@'%' IDENTIFIED BY 'fedoraAdmin';
ALTER DATABASE fedora3 DEFAULT CHARACTER SET utf8;