LoginSignup
0
0

More than 5 years have passed since last update.

commands for initial settings on AWS

Last updated at Posted at 2015-01-28
shell
# adduser vagrant
cp -r ~/.ssh ~vagrant/
chown vagrant.vagrant -R ~vagrant/.ssh
visudo

# create db user
psql --host=endpoint --username=user --password --dbname=db
  CREATE USER user WITH PASSWORD '';
sudo yum install postgresql93-devel

# set some passwords to env
vi ~/.profile
  export DB_PASSWORD=pass

# iptables (http, https)
sudo vi /etc/sysconfig/iptables
sudo service iptables restart
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0