Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
~>ssh ndeflaux@fremont ls -la /home/ndeflaux/PlatformIAMCreds
total 40
drwxrwxr-x  2 ndeflaux FHCRC\domain^users 4096 2011-02-16 16:31 .
drwxr-xr-x 30 ndeflaux FHCRC\domain^users 4096 2011-02-16 17:16 ..
-r--------  1 ndeflaux FHCRC\domain^users  126 2011-02-16 16:31 brian.holt_creds.txt
-r--------  1 ndeflaux FHCRC\domain^users  126 2011-02-16 16:31 bruce.hoff_creds.txt
-r--------  1 ndeflaux FHCRC\domain^users  129 2011-02-16 16:31 david.burdick_creds.txt
-r--------  1 ndeflaux FHCRC\domain^users  125 2011-02-16 16:31 john.hill_creds.txt
-r--------  1 ndeflaux FHCRC\domain^users  127 2011-02-16 16:31 mike.kellen_creds.txt
-r--------  1 ndeflaux FHCRC\domain^users  130 2011-02-16 16:31 nicole.deflaux_creds.txt
-r--------  1 ndeflaux FHCRC\domain^users  332 2011-02-16 16:31 platform_cred.txt
-r--------  1 ndeflaux FHCRC\domain^users  120 2011-02-16 16:31 test_creds.txt

How to connect to RDS

The firewall currently only allows you to connect from a server inside the Fred Hutch network. If you are working from home, ssh to fremont and then do this.

This is the super user so be careful!

Code Block

/usr/local/mysql/bin/mysql -u platform -h repo.c5sxx7pot9i8.us-east-1.rds.amazonaws.com -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 25
Server version: 5.5.8-log Source distribution

Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| innodb             |
| mysql              |
| performance_schema |
| repositorydb       |
+--------------------+
5 rows in set (0.08 sec)

Notes for the sake of posterity

...