How to test Artifactory DB connection - sql-server

I have set Jfrog Artifactory to connect to a SQL server DB.
Now, i want to test this connection to see if it works.
How can i test this connection?
Thanks

Start Artifactory and see that it connect to it. What other test do you want to do? Another option will be to download app as DBvisualizer and connect it using the same url and port + user and password as you configured in Artifactory

Related

Can I stop VSCode Remote Server re-installing itself when I connect via SSH?

I have got VSCode Remote via SSH working successfully between my Mac client and our Centos server. Our server is not online by default and I have to manually set proxies for it to download the Server.
VSCode Server wants to re-wget itself every now and then when I connect. When it does I need to kill the connection, set the proxies and reconnect to allow it to download the Server files.
My question: Is this wget procedure required (i.e. important updates) or can I bypass it?
Thanks in advance

How can I access database mongodb on the server staging by console on the putty?

I want to access database mongodb on the server staging by putty. But i'm still confused to setting it
Look at this :
What needs to be set there?
I want a full explanation
Or maybe there is another better way to access mongodb?
With Putty you can create a SSH session on the server on which the MongoDB server is running, so you can't use Putty directly to connect to your MongoDB server. You can do the following:
First Solution
Use SSH to connect to your server where the MongoDb is running (paste in your hostname or IP adress in the Putty Window and connect to Port 22)
Login with your server credentials on this server
Use mongo command line tool on the server and connect to the MongoDB server
Second solution (therefore your MongoDB port has to be accessable from the internet and you need the mongo CLI tool on your machine)
Open a CMD on your Laptop/Desktop PC
Use mongo yourMongoDbServerHostname:Port/dbname -u dbuser -p dbpassword and you create a connection to your remote MongoDb server
If you are looking for a Mongo GUI client, have a look at: https://robomongo.org/ or https://www.mongodb.com/products/compass
If thats not working, please provide further information about the MongoDb server.

Connecting Jitterbit to Heroku Postgre

I'm trying to connect to Heroku Postgre using Jitterbit Cloud Data Loader.
got my connection parameters all setup but unfortunately I run into an error FATAL: no pg_hba.conf entry for host "210.213.78.5", user "u49bh1311s0496", database "dfsj8qbgvj0ram", SSL off
Would like to ask for possible solution with this.
Thank you for your help.
Whenever I connect remotely to a Heroku Postgresql database, I need to have SSL on.
You'd typically connect using the heroku domain name instead of an IP as well.
Try this as your connection string:
jdbc:postgresql://210.213.78.5:5432/dfsj8qbgvj0ram?ssl=true&sslfactory=org.postgresql.ssl.NonValidatingFactory
with your username and password.

How to create a sql server connection in mobile report publisher

I did a fresh install of SQL 2016 RC1. Report Builder works (for paginated reports). But I can't get the Mobile Report Publisher to create a connection to from my laptop to the sql instance. When I try to connect to the server I get a "Server Error" Unable to connect to remote server. I'm running the latest preview 3 of mobile publisher. I've tried server/reportserver & server/reports for a server address, no luck. I get a different error if I uncheck the option to use a secure connection.
Any ideas?
Ok, so, the reports_preview is gone. And after lots of trial and error, the url needs to include the port:
sqlrpt16-1:80/Reports/
I had to uncheck the Use secure connection option, which probably uses https, which i didn't configure during setup.
please try connecting to the new portal url : /reports_preview.
Hope that helps!

Connection string for SQL Server Express 2014

On Win 7 system I installed SQL Server 2014 Express. I created instance HM1. I've set it up to use mixed mode. I created a SQL Server user and I am able to login with no issue.
My goal is to connect to a database using this SQL Server user using configuration file. This connection will be used for another application. Note: if I disable user/password usage during login I have no problem but I have to use credentials.
For connection I provided machine_name\SQLSERVEREXPRESS\HM1. I also provided username and password. I also changed the service for SQLEXPRESS and HM1 to run as local account.
When I try to connect using that file I've got the error
Can't connect to database
Again if I disable user/password usage I am able to connect using the same file with no problem.
Could someone help me with it?
Thanks
For connection I provided "machine_name\SQLSERVEREXPRESS\HM1".
You just want this:
machine_name\HM1
That's probably not your only problem, but that's all I can tell you until you try that and then come back and include more detail from the error message.
You need to put the un-encoded password in the config file instead of the base64 encoded one. Alternatively, you can also put Trusted_Connection=True; in the connection string if your database server resides on the same server as the application server. This will use the OS credentials instead of the username/password that you provide.

Resources