Last active
December 18, 2015 13:39
-
-
Save Twinuma/5791334 to your computer and use it in GitHub Desktop.
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
echo 'export JAVA_HOME=/etc/alternatives/jre' >> ~/.bashrc | |
echo 'export EC2_HOME=/home/ec2-user/tools/ec2api' >> ~/.bashrc | |
echo 'export AWS_AUTO_SCALING_HOME=/home/ec2-user/tools/autoscaling' >> ~/.bashrc | |
echo 'export AWS_CLOUDWATCH_HOME=/home/ec2-user/tools/cloudwatch' >> ~/.bashrc | |
echo 'export AWS_ELB_HOME=/home/ec2-user/tools/elb' >> ~/.bashrc | |
echo 'export AWS_IAM_HOME=/home/ec2-user/tools/iam' >> ~/.bashrc | |
echo 'export AWS_RDS_HOME=/home/ec2-user/tools/rds' >> ~/.bashrc | |
echo 'export AWS_S3_HOME=/home/ec2-user/tools/s3' >> ~/.bashrc | |
echo 'export AWS_ACCESS_KEY=Input Your Access Key' >> ~/.bashrc | |
echo 'export AWS_SECRET_KEY=Input Your Sercret Key' >> ~/.bashrc | |
echo 'export EC2_URL=https://ec2.ap-northeast-1.amazonaws.com' >> ~/.bashrc | |
echo 'export PATH=$PATH:$JAVA_HOME/bin:$EC2_HOME/bin/:$AWS_AUTO_SCALING_HOME/bin/:$AWS_CLOUDWATCH_HOME/bin/:$AWS_ELB_HOME/bin/:$AWS_IAM_HOME/bin/:$AWS_RDS_HOME/bin/:$AWS_S3_HOME/bin' >> ~/.bashrc | |
source ~/.bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment