Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X
I am cloning a 10.2 M020 Server.But when I am done all the configuration and trying to start the windchill.I am getting following message in server manager and it gets stuck. Method server does not get launched.
2015-06-27 12:02:21,039 INFO [main] wt.server.manager.startup - ServerManager bound in registry.
2015-06-27 12:02:21,046 INFO [main] wt.manager.CacheMasterNegotiator - Cache master stub name: CacheMaster
2015-06-27 12:02:21,046 INFO [main] wt.manager.CacheMasterNegotiator - Using low-locking algorithm
can anybody please provide the information?
Hi
Please remove the cashes and restart the windchill. it should work.
regards,
vijay
If Vijay's suggestion doesn't work, take a look at CS150162. I have added the following line to my SQL server database import script:
delete from windchill.RMIStubs where RMIStubs.Name ='CacheMaster'
looks like SM is with for the database connection.
check if you are able to ping DB machine, make sure firewall is turn off and Database User and database mapping in SQL Server Mangement studio
Hope it helps
Shreyas
Go to Start > Run
Type Drivers
Go to etc folder
Open hosts file in a text editor like notepad
Verify IP address and host name are correct
Add or Update server alias or name in Hosts file
Note: In case IP address changes frequently then need to update manually every time by contacting respective IT departments of customer
you can view CS125275
The sever can not started.
But there is no error in log file.
The only information is like title.
why?
I had the same problem: Maps an existing user in a database to a Microsoft® SQL Server™ login.
I have resolved this issue (i.e., MS-SQL 15023)
Please, check the following link for your reference: https://technet.microsoft.com/en-us/library/aa259633(v=sql.80).aspx
------------------------------------------------------------------------------------------------------
USE wcadmin
GO
EXEC sp_change_users_login 'UPDATE_ONE', wcadmin, wcadmin
GO
--------------------------------------------------------------------------------------------------------
Ran into this problem this morning. It turned out to be a DB connection issue I found per Shreyas Atre comment. I attempted to connect to my Oracle DB using SQLPlus and I got...
ORA-28000: the account is locked
I unlocked the user by performing the following steps...
sqlplus / as sysdba
alter user yourUserName identified by yourPassword account unlock;
Hope this helps someone.
Now I need to figure out how/why the DB user account got locked.
The question is relevant?
Today I got the same issue and finally I fixed it.
It was caused by the DB user password expiration - go to the SQLPLUS and try to connect with "oracle" (or another which you have created during installation) and log in. It will ask you to change password.
Then just start Windchill again.