I have a windows 8.1 vm created on azure, it has 14 GB of memory and 200 some GB storage. I have installed Oracle with a templated database onto it. Everything is fine with the installation and I can use sqlplus
to do sql commands and such. The listener is also on.
But, I am having troubles connecting to the VM from a c# app. I have opened the 1521
ports as shown in this document near the bottom. Is there something else I can do/try or haven't done to allow me to connect to the database from my PC?
I also am trying to ping the public ip address supplied but have not been able to do so, any help there would be nice too. I have followed the steps here
Update:
I have tried to connect to the database from PLSQL Developer, here is the listing I put in my TNSNames.ora file (I have also tried the public IP address instead of the [myapp].cloudapp.net):
AzureDB =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = [myapp].cloudapp.net)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = PLDB)
)
)