datahub
container.docker exec -it datahub bash
/tmp/Downloads/
folder.cd /tmp/Downloads/
curl http://central.maven.org/maven2/com/sap/cloud/neo-java-web-sdk/3.78.15/neo-java-web-sdk-3.78.15.zip -o neo-java-web-sdk.zip
zip
file with the SDK is downloaded we need to uncompress it.unzip
before. openSUSE is the OS used in the container, so we use zypper
as a package manager.zypper install unzip
/tmp/neo/
folder.unzip neo-java-web-sdk.zip -d /tmp/neo
cd /tmp/neo/tools/
./neo.sh help open-db-tunnel
i076835trial
, i.e. 1 on the screen below), a user id (i076835
as can be found under 2), a password of the cloud user (sorry, no plans to share here 😉 ), and an instance name of SAP HANA (in my case it is mymdc
, i.e. 3 on the screen)../neo.sh open-db-tunnel -h hanatrial.ondemand.com -a i076835trial -u i076835 -i mymdc
-p
option; plus you can open a tunnel in the background with --background
option.localhost
on the port 30015
.localhost
as a host and the DB user/password.myPassword
password to the one of your system
DB user.{
"description": "Connecting to SAP HANA in SCP Neo Trial",
"processes": {
"constantgenerator1": {
"component": "com.sap.util.constantGenerator",
"metadata": {
"label": "Constant Generator",
"extensible": true,
"config": {
"content": "SELECT * FROM M_DATABASE"
}
}
},
"saphanaclient1": {
"component": "com.sap.hana.client2",
"metadata": {
"label": "SAP HANA Client",
"config": {
"connection": {
"connectionProperties": {
"host": "localhost",
"password": "myPassword",
"port": 30015,
"user": "system"
},
"configurationType": " "
}
}
}
},
"terminal1": {
"component": "com.sap.util.terminal",
"metadata": {
"label": "Terminal",
"ui": "dynpath",
"config": {}
}
},
"tostringconverter1": {
"component": "com.sap.util.toStringConverter",
"metadata": {
"label": "ToString Converter",
"config": {}
}
}
},
"groups": [],
"connections": [
{
"src": {
"port": "out",
"process": "constantgenerator1"
},
"tgt": {
"port": "sql",
"process": "saphanaclient1"
}
},
{
"src": {
"port": "outstring",
"process": "tostringconverter1"
},
"tgt": {
"port": "in1",
"process": "terminal1"
}
},
{
"src": {
"port": "result",
"process": "saphanaclient1"
},
"tgt": {
"port": "ininterface",
"process": "tostringconverter1"
}
}
],
"inports": {},
"outports": {},
"properties": {}
}
Diagram
view of the chart, and click on the Auto Layout
to get the better layout of the components.SELECT * FROM M_DATABASE
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
25 | |
16 | |
14 | |
12 | |
10 | |
9 | |
9 | |
8 | |
8 | |
8 |