Continue to Site

Welcome to MCAD Central

Join our MCAD Central community forums, the largest resource for MCAD (Mechanical Computer-Aided Design) professionals, including files, forums, jobs, articles, calendar, and more.

Rename Intralink Server Hostname

yedis

New member
Hi All,


I just renamed my Intralink Server Hostname and the IP addressfrom serverA to serverB.I have reconfiguredallclientsData Server Hostname from serverA to serverB.


But I have problem on my client whenI try to login, below is the message:


"<?:namespace prefix = v ns = "urn:schemas-microsoft-com:vml" /> Cannot connect to the specified nfs server, serverA(***) Ensure that the file server is running, and that the owner of the file server process has permission to read/write to the file vault location(s).</v:shape>


If........contact Technical Support."</v:shape>


(***) still recognize the old servername</v:shape>


Is there anyone who can help me resolve this issue. </v:shape>


Thank you.</v:shape>


yedis</v:shape>
 
The server name is in multiple places within the Oracle database.


When I ran an Intralink training class, the instructor had to run some SQL commands to chnage the names so the files would work.
 
<DIV>When I was testing our upgrade from Intralink 3.2 to 3.4, I had to deal with this.</DIV>
<DIV>On the client, you only need to edit <client-load-point>\tnsnames.ora. Change the name on the line that has "Host =".</DIV>
<DIV></DIV>
<DIV>On the server, similar edits need to be madeto tnsnames.ora & listener.ora.</DIV>
<DIV>In 3.2, these are found in <dataserver-load-point>/oracle.</DIV>
<DIV>For 3.4, they are in <osa-load-point>/oraprod/network/admin.</DIV>
<DIV></DIV>
<DIV>Our dataserver installation is under UNIX, but I would expect the PC layout to be similar.</DIV>
 
Thank every body,


Just for an additional information, my server is running on w2k server and my Intralink server version is 3.4.


For garrychampoux,


both of listener.ora and tsnames.orahas been edited as per current hostname and restrarted.but still has same error.


For looslib and jnoval


Do you know the specific sql commands that you mentions above?


Thank you for your efforts.





 
I have a note somewhere, but it is not simple. Are you used to user sql plus on oracle.


You also need the passwords for fileserver and dataserver. Perhaps they still are the default one.
 
IF I remember correct you have to use sqlplus for Intralink 3.4 for 3.3 it was svrmgrl


It is your own risk. Make a dumpfile first.


The commands for intralink 3.4 are in a command prompt:
sqlplus internal/change_on_install
select * from pdm.pdm_pool;
update pdm.pdm_pool set poolhost='servername';
update pdm.pdm_fileserver set fsvhost='servername';
select poolhost from pdm.pdm_pool;
select poolpath from pdm.pdm_pool;
select fsvhost from pdm.pdm_fileserver;
commit;
quit;



Change the servername with your servername.
The select lines is only for you to be able to check in information in oracle.
If the path to the filevault also have changed you can change it with this command. Change path with your path:
udate pdm.pdm_pool set poolpath='path';


Regards Johs
 

Sponsor

Back
Top