I am developing Xamarin app(ios, android) using ros(realm object server).
1. how to connect ros with ros studio and realm browser.
i entered my ip address, host info:
it is result. i dont know what is form:
i want use url only.
2. i want to know how to set realm object server URL. now i always have localhost:9080. i cant find infomation about that anywhere.
Can i connect ros in mac with realmstudio in windows?
plz..
The URL entered when connecting to the Realm Object Server should use the http:// or https:// protocol and you should make sure that it also has the right port.
In your case I would expect that you can connect
http://192.168.0.190:9080
.. if you're running ROS on your local developer machine you can simply use
http://localhost:9080
also, you should the username + password should match that of the ROS server. This is realm-admin and an empty password, if you havn't changed it.
Related
i'm using live server extension from vs code, after hosting my server locally, i sent it to my boss so that he can check my work,
i don't think he logged into my localhost server .
I've used http://"my ip adress":port
I checked in another device it is working.
How can know that he entered into that link?
(I'm using windows 10)
How to access local postgreSQL server running on computer, from mobile my phone?
I am making flutter app and use pgAdmin v6.10 as local server. I'm stuck for 2days trying different solutions to access server from my mobile browser but no progress.
I believe if i can access local server through mobile browser, also i can send data from my flutter app to database.
My pgAdmin runs on pc browser nicely but on phones browser doesn't open,
I've tried addresses 192.168.43.12:port(i.e computer's ip:port number) and 127.0.0.1:port
but they all didn't work, i get ERR_CONNECTION_REFUSED
Also i added this line on pg_hba.conf file
TYPE DATABASE USER ADDRESS METHOD
host flutterdb flutterdb_admin 192.168.43.12/24 scram-sha-256
And on my postgresql.conf file there is
listen_addresses = '*'
I'm following tutorial series from: https://youtu.be/WFe1kZhvUIw
I need your help please.
NOTE: I am using Windows laptop
i think that if u have dev environment, just you can try to open the connection..
you can try to configure for accept all connections
How to configure PostgreSQL to accept all incoming connections
I have been tasked to block our openvpn access to specific devices using MAC address, It seems possible to do this with the openvpn access server but i'm using the community edition, would there be a way to perform this task?
or would there be any suggestions on how to do it using a different method?
This can be done on the community addition with the client-connect cmd, but it is necessary for the client to have push-peer-info in the local vpn config. That will force the client to report the MAC address of its default gateway to the environment variable IV_HWADDR on the OpenVPN server. The script can then retrieve that value and compare it to a list of authorized MAC addresses in whatever language and manner you see fit. To allow the connection your script needs to exit with a value of 0, conversely to drop the connection it needs to exit with any non-zero number.
I have an cloud sql instance up and running and have made a link using a jdbc driver to the instance ip using android studio project. I can successfully run queries from an ip address that I insert manually into the google cloud sql settings and not any other network. This makes my app accessible only from certain ip addresses. Is there a way i can authenticate my google cloud sql to all ip addresses. I do not wish to use the google app engine if possible as I believe it will only complicate my application. My app works well enough is there an easy way to access my sql from any network having supplied my username and password in the code itself?
You can use the console to authorize 0.0.0.0, which will allow connections from any IP address. However, this is not necessarily a good solution. If you embed your database's username and password in your Android app, it can be found by someone else taking apart the apk. If they do that, they will then have complete access to your database. It is more complicated, but you should put some kind of server in front of your database, and have the user authenticate with that server/application, and only have that server communicate directly with your database.
I have a client who is allowing me access to a subdomain hosted on his server. I have tested to connection through Mac terminal and I'm able to sign in successfully. However, when attempting to use Cyberduck, I'm having issues.
We've narrowed down the problem to "ftp://" in the connection string. i.e., connecting to subdomain.myserver.com works but ftp://subdomain.myserver.com does not. I looked through the preferences and I don't see a way to remove this. Is there any other way to use Cyberduck to connect via FTP without "ftp://" being used in the connection string?