Changes between Version 3 and Version 4 of Installation/DatabaseSetup


Ignore:
Timestamp:
Dec 18, 2012 10:10:53 PM (11 years ago)
Author:
jhickey
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Installation/DatabaseSetup

    v3 v4  
    205205== Setting up your serial server ==
    206206
    207 TBD.  We hope to have a VMWare image with the necessary software for DigiEtherlite devices soon.
     207This section is a work in progress.  Here are some notes:
     208
     209We have VMware images for both DIGI Etherlite serial boxes and IPMI based serial ports.
     210
     211You will need to make sure that root from your boss node can log into the serial server.  This is so that groups can be added to the group file when new projects are created. 
     212
     213Copy your ssh keys to the new serial server:
     214
     215{{{
     216[jhickey@boss.isi.deterlab.net:~] > sudo scp ~root/.ssh/id_rsa.pub root@capture2digi:.ssh/authorized_keys
     217}}}
     218
     219If you have trouble logging in automatically and you are using a CentOS VM, you may have to manually log in and issue:
     220
     221{{{
     222restorecon -R -v /root/.ssh
     223}}}
     224
     225Test out that you can ssh as root to the serial server VM:
     226
     227{{{
     228[jhickey@boss.isi.deterlab.net:~] > sudo ssh capture2digi
     229Last login: Tue Dec 18 22:07:23 2012 from 192.168.252.1
     230[root@capture2digi ~]#
     231}}}
     232
     233Now add the serial server to the database:
     234
     235{{{
     236[jhickey@boss.isi.deterlab.net:~] > mysql tbdb
     237Reading table information for completion of table and column names
     238You can turn off this feature to get a quicker startup with -A
     239
     240Welcome to the MySQL monitor.  Commands end with ; or \g.
     241Your MySQL connection id is 15870862
     242Server version: 5.0.92-log FreeBSD port: mysql-server-5.0.92
     243
     244Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
     245
     246mysql> insert into tipservers set server='capture2digi';
     247}}}