I am not able to deploy jars into oracle service bus console , the session activation is not getting successful showing error like 'A connection to the server has failed(status=unknown)'.
Related
when install integration server on ibm app connect enterprise version 12 an error occurs , it said Could not connect to the Integration Server after starting it.
with log message
Error initializing event log file:
BIP2119E: IBM App Connect Enterprise internal error: diagnostic information ''The process cannot access the file because it is being used by another process.'', '32', ''\\?\C:\Users\mohamed.yehia\IBM\ACET12\workspace2\new\log\integration_server.new.events.txt'', '3221225472', '4', '1', '32', ''The process cannot access the file because it is being used by another process.
I'm trying to intsall integration server on ibm app connect enterprise V12
Initially Oracle 19c(Database and Client64) was installed and TNS Listener was configured under "Net Configuration Assistant" from the following path "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Oracle - OraDB19Home1\Configuration and Migration Tools". It was running fine for more than 6 months.
2 days before we got TNSListner error and unable to connect to the database. We are able to re-start all the Oracle services except TNSLISTENER service. While restarting the service getting following error "The oracleoradb19home1tnllistenerGLDB service on local computer started and stopped. some services stop automatically if they are not in use by other services or programs."
When we tried to check the Listener configuration, unable to invoke the "Net Configuration Assistant" application from the following path "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Oracle - OraDB19Home1\Configuration and Migration Tools".
In Net Manager window also, we could not see the Listener.
After restarting the system also , unable to restart the Listener service.
Note: Oracle server is under domain user.
Getting "ORA-12154 TNS could not resolve the correct identifier specified" error while loading data into Oracle Database.
what is the purpose of Oracle Services for Microsoft Transaction server, I am asking this because I tried installing ODTwithODAC (Oracle) on a server and i got the error message Oracle Services for Microsoft Transaction Server Failed
I configured source and target endpoint for DMS services, The migration I need to perform is from EC2 to Oracle RDS using AWS DMS and both are 12c.
I am testing the source end point and I am getting this error
Endpoint identifier
Replication instance
Status
Failure message
ec2-172-31-6-111
test-dms-oracle
failed
Error Details: [errType=ERROR_RESPONSE, status=1022307, errMessage=ORA-12514: TNS:listener does not currently know of service requested in connect descriptor OCI error., errDetails=]
I don't feel this occurs because of Network error since, I tried testing the connection with all ports open. And I can able to access the DB within EC2
please refer the screenshot
Please help me to find the solution.
ORA-12514 could mean either of
a. The SERVICE_NAME in the TNSNAMES.ORA or Connect-String does not match the Database Service Name
b. The Listener is running on a non-default port and the database instance does not have LOCAL_LISTENER configured to the listener (thus the instance does not update the listener with its service name)
Run LSNRCTL STATUS and LSNRCTL SERVICES on the database server to verify the running services.
Hemant K Chitale
I am using webdeploy to deploy my web application to IIS. I followed Microsoft's 12 part tutorial for this. I successfully deployed it on my local IIS.
I have to now deploy this to production and I am following the same steps. I am connected to the remote machine via VP. Form VS2010 publish profile the connection to the server was successful. But when I enter the DB connection string as
"Data Source=xxxx\SQLExpress;Initial Catalog=SWSS;Integrated Security=True"
and try to preview the Database, I get the following error:
Web deployment task failed. ((4/1/2013 9:18:42 PM) An error occurred when the request was processed on the remote computer.)
(4/1/2013 9:18:42 PM) An error occurred when the request was processed on the remote computer.
Exception has been thrown by the target of an invocation.
Member 'ClassName' was not found.
The remote machine does not have TCP/IP enabled.
1. Is it safe to enable this in production machine?
2. If not, how to deploy DB, taking advantage of the dbdacfx?
Update 1:
Based on the comments below, I have changed my connection string as follows:
"Data Source=SWSS\SQLExpress;Initial Catalog=SWSS;User Id=xxxx;Password=xxxx;"
I created a sysadmin user in SQL server with SQL authentication rather than Windows authentication. Now the error is as follows:
Web deployment task failed. (Could not generate deployment script.
Unable to connect to target server.
Learn more at: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_EXECUTING_METHOD.)
Update 2:
Using mixed mode authentication on SQL Server fixed my issue.