Hi,
I followed the step of Ubuntu Open Source GPU with Tarball to install Omnisci on Ubuntu GPU instance.But when I wanted to load some sample data and perform an omnisql query, I encountered some mistakes as below:
I ran the code
cd $OMNISCI_PATH
>sudo ./insert_sample_data
When prompted, I entered 2 to insert the 10 thousand row flights dataset. But the output was like this:
-adding schema
Thrift: Fri Jan 29 21:54:51 2021 TSocket::open() connect() <Host: localhost Port:6274>: Connection refused
Thrift: Fri Jan 29 21:54:51 2021 TSocket::open() connect() <Host: localhost Port:6274>: Connection refused
Failed to open transport. Is omnisci_server running?
Then, I ran the following code:
$OMNISCI_PATH/bin/omnisql
After I input the password, it outputs
Thrift: Fri Jan 29 22:08:16 2021 TSocket::open() connect() <Host: localhost Port:6274>: Connection refused
Thrift: Fri Jan 29 22:08:16 2021 TSocket::open() connect() <Host: localhost Port:6274>: Connection refused
Failed to open transport. Is omnisci_server running?
It seems I canāt connect to the server, but the server is already running
omnisci_server.service - OmniSci database server
Loaded: loaded (/lib/systemd/system/omnisci_server.service; enabled; vendor preset: enabled)
Active: active (running) since Fri 2021-01-29 22:42:34 CST; 673ms ago
Main PID: 45979 (omnisci_server)
Tasks: 7
Memory: 14.8M
CPU: 425ms
CGroup: /system.slice/omnisci_server.service
āā45979 /opt/omnisci/bin/omnisci_server --config /var/lib/omnisci/omnisci.conf
My system is Ubuntu 16.04, and I use 8 Tesla V100-PCIEs as my gpu. There are some schoolfellows using these gpus too, does this affect?
Thanks!