Skip to content

Commit

Permalink
generalizations
Browse files Browse the repository at this point in the history
  • Loading branch information
zzeppozz committed Mar 4, 2024
1 parent 3a61f3c commit f7824cf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions sphinx/misc/add_new_instance_to_specify_cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@

1. Create Database
1. look through the sql file for issues and do test upload to local database
2. mysql -umaster -p'master' -e "create database unsm_vp;"
3. mysql -umaster -p'master' unsm_vp < unsm_vp.sql
4. may need to run `grant all privileges on eurl.* to 'master'@'%';` if master doesn't have access `flush privileges;`
2. mysql -umaster -p<master_password> -e "create database unsm_vp;"
3. mysql -umaster -p<master_password> unsm_vp < unsm_vp.sql
4. may need to run `grant all privileges on eurl.* to <master_password>@'%';` if
master doesn't have access `flush privileges;`
2. DNS Registtration:
1. Login to Dreamhost, select Websites -> Manage Websites
2. For specifycloud.org, select DNS
Expand Down
4 changes: 2 additions & 2 deletions sphinx/misc/useful_bash_cmds.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## sftp
```bash
sftp -i alec_specify_ssh_key ubuntu@ec2-52-206-2-67.compute-1.amazonaws.com;
sftp -i alec_specify_ssh_key ubuntu@<ec2instance>.compute-1.amazonaws.com;
pwd;
put /Users/alecwhite/git/specify-aws/report-fonts.jar ./;
ls;
Expand All @@ -24,7 +24,7 @@ du -sh *
```bash
rsync -avz -e "ssh -i ~/specify/keys/specify-aws-ssh.pem" \
~/git/specify-aws/specify7-cluster/ \
ubuntu@ec2-52-206-2-67.compute-1.amazonaws.com:/home/ubuntu/specify7-cluster/
ubuntu@<ec2instance>.compute-1.amazonaws.com:/home/ubuntu/specify7-cluster/
```

## docker images view architecture and OS
Expand Down

0 comments on commit f7824cf

Please sign in to comment.