Last active
December 15, 2015 01:49
-
-
Save letsspeak/5182427 to your computer and use it in GitHub Desktop.
mysql creating fuelphp user
APPLICATION_NAME is your application name
This file contains 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
mysql> select * INTO OUTFILE 'dump.txt' from テーブル名; | |
mysql> LOAD DATA INFILE 'dump.txt' INTO TABLE テーブル名; |
This file contains 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
CREATE USER 'APPLICATION_NAME'@'localhost' IDENTIFIED BY '***'; | |
GRANT USAGE ON * . * TO 'APPLICATION_NAME'@'localhost' IDENTIFIED BY '***' | |
WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 | |
MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0 ; | |
CREATE DATABASE IF NOT EXISTS `APPLICATION_NAME` ; | |
GRANT ALL PRIVILEGES ON `APPLICATION_NAME` . * TO 'APPLICATION_NAME'@'localhost'; | |
grant file on *.* to APPLICATION_NAME@localhost; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment