First check the repolist with below command.
# yum repolist
Loaded plugins: product-id, refresh-packagekit, security, subscription-managerThis system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.repolist: 0
Run below command to check your CD or ISO file mounted on you machine.
# mount |...
Wednesday, 6 May 2015
Monday, 4 May 2015
PDOException: SQLSTATE[42000]: 1148 The used command is not allowed with this MySQL version in AWS RDS
To Resolve this error you have to connect mysql with below command then you can able to run LOCAL INFILE command in mysql console or drupal.
# mysql --local-infile=1 -h rds-amazon-url.com -uroot -p
Now you can able to run LOCAL INFILE command in RDS.
#mysql>LOAD DATA LOCAL INFILE '/tmp/foo.txt' INTO TABLE foo COLUMNS TERMINATED BY '\t';
...