This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |