2019-11-16 15:34:43 -06:00
|
|
|
# rdc
|
|
|
|
|
Radeon Data Center
|
2020-03-04 15:51:16 -05:00
|
|
|
|
2020-03-10 14:02:05 -04:00
|
|
|
## To run the rdcd and rdci from the build folder without authentication
|
|
|
|
|
```
|
|
|
|
|
sudo LD_LIBRARY_PATH=$PWD/rdc_libs/ ./server/rdcd -u
|
|
|
|
|
LD_LIBRARY_PATH=$PWD/rdc_libs/ ./rdci/rdci discovery -u
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## To run the rdcd and rdci from the build folder with authentication
|
2020-03-04 15:51:16 -05:00
|
|
|
```
|
|
|
|
|
sudo LD_LIBRARY_PATH=$PWD/rdc_libs/ ./server/rdcd
|
|
|
|
|
LD_LIBRARY_PATH=$PWD/rdc_libs/ ./rdci/rdci discovery
|
|
|
|
|
```
|
|
|
|
|
|
2020-03-10 14:02:05 -04:00
|
|
|
## Troubleshooting
|
|
|
|
|
Check the ssl connection in rdci:
|
|
|
|
|
```
|
|
|
|
|
rdcd_hostname= "" # Set the rdcd you want to connect
|
|
|
|
|
openssl s_client -connect $rdcd_hostname:50051 -cert /etc/rdc/client/certs/rdc_client_cert.pem -key /etc/rdc/client/private/rdc_client_cert.key -CAfile /etc/rdc/client/certs/rdc_cacert.pem
|
|
|
|
|
```
|
|
|
|
|
|