Jfrog artifactory access server time out - artifactory

We configured Artifactory 5.5.1 by using yum install using default derby db able to access with derby db.
When we changed to external db postgres, I not able to access Artifatory, access server is timed out after 60000 miliseconds.
Do we need to do any additional configuration changes?

Related

MariaDB: root access from network means also from SSH?

During the securing of MariaDB it asks me the following question:
Disallow root login remotely? [Y/n]
Normally, root should only be allowed to connect from 'localhost'.
This ensures that someone cannot guess at the root password from the
network.
Because I'm working on a headless server (Ubuntu Server) without any screen nor keyboard, my only way to reach the o.s. is via SSH.
Disabling the remote root login will prevent me to access from SSH as well? I guess yes, and I kept the remote login enabled.
It's the default admin account of MariaDB, has same name with system root account, but there's no direct relationship between them. System user bob can also use command mysql -uroot -p to connect MariaDB with admin privilege.
login remotely means connecting to MariaDB remotely using port 3306. if remote login is enabled for root and MariaDB bind a public IP, anyone can try to connect to your DB by mysql -uroot -hIP. then a security incident happened if weak password used.
Disallow root login remotely? [Y/n]
That's from MariaDB perspective, NOT the SSH.
When you are login via SSH and then login to MariaDB via mysql cli to localhost server, MariaDB assume that you login "locally".
As like many other RDBMS, MariaDB allow to login remotely, in your case without SSH, to any remote server via TCP/IP. This kind of login to MariaDB is the meaning about above question.
Example:
You are now at Host A (IP: 192.168.0.10). The MariaDB server at Host B (IP: 192.168.0.11).
If you are accessing the MariaDB server via mysql client cli and execute:
mysql -h192.168.0.11 -uroot -p
That's called "root login remotely"

How to connect to MariaDB (10.5.8) with MYSQL Workbench as user identified via ed25519?

I can set MYSQL Workbench to connect to MariaDB with SSL connection as user identified via mysql_native_password, but if I set the identification to ed25519 it fails. Exists any plugin or solution for it? Should I use another free database management software for MariaDB?
MySQL Workbench depends on libmysql, which doesn't provide the ed25519 authentication plugin, since MySQL server doesn't support ed25519 authentication.
As an alternative you can connect via TLS/SSL instead, or try to install the ed25519 client plugin from MariaDB Connector/C (assuming that the authentication api is still the same in MySQL and MariaDB).

Unable to connect to destination server using jenkins. Able to do it from (putty) terminal

I am trying to connect to remote server from jenkins. Have followed the procedure to create the public/private pass key and copied them to the remote server as well.
changed the permissions to the .ssh/ authorized_keys.
Can successfully access using terminal (putty), doesn't ask for password.
jenkins.plugins.publish_over.BapPublisherException: Failed to connect session for config [Jboss Dev]. Message [Auth fail]

Kamailio not connects to remote database

I have Kamailio on ubuntu at 10.10.145.189 and mysql on centos at 10.10.118.91.
While installing kamailio, the command
/usr/local/sbin/kamdbctl create
worked and all databases created on 10.10.118.91 without any issue.
But when i try commands like
kamctl db show subscriber
it responds with error as follows.
ERROR 1045 (28000): Access denied for user 'kamailioro'#'ip-10-10-145-189.ec2.internal' (using password: YES)
10-10-145-189.ec2.internal was its hostname.
Solved it by creating database users kamailio and kamailioro with host any.
With the default configuration of kamctctlrc, /usr/local/sbin/kamdbctl create will create the user kamailio in the mysql db with localhost and the IP of the mysql server as the Host. After that when you use the command kamctl it tries to access the mysql db with kamailio#"IP_of_kamailio_server" and hence the access is denied.
Try changing in the kamctctlrc file
DBACCESSHOST=IP_of_kamailio_server to access the DB from the kamailio server
or
DBACCESSHOST=% to access the DB from any host for the user kamilio
and then create the schema in the DB /usr/local/sbin/kamdbctl create

Configuring DNS entry on unix for SQL Azure with DataDirect6.1

Could you please advise me, how to configure a DSN entry for SQL Azure on UNix AIX box with DataDirect 6.1 to connect from PowerCenter 9.1.0.
Aix Server: 10.10.10.10 : 2222
On this Port, ABCXYZ9PQR(Database Server name) Database is configured.
Database name: TestDatabase
Telent is working from application server. Telnet 10.10.10.10 2222 --> Connected
Able to connect to the SQL server from Windows.
Please advise me what are the tests do I need to perform, and configure the DSN entry in ODBC.ini.
Thanks,
Sarat
Below steps are necessary for configuring odbc:
Ensure that the env variables ODBCHOME & ODBCINI are set. These has to be set before Informatica Services are started. Else they wont get picked up.
configure DNS in obdc.ini file for the DB server.
Use ssgbodbc utility (download from mysupport site) to test if the odbc connection goes through
Copy the DNS name from the entry in odbc.ini variable and paste it in the Connection String section of the ODBC connection in Workflow Manager.
I'm not clear from your description though:
Can you clarify if the Informatica Services is installed on AIX box (10.10.10.10)? how did you configure the connection to azure on windows box?
-Sadagopan

Resources