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