Plaxis not starting remotly

Hello,

I have prepared a Python script to accelerate routinely calculation in Plaxis. I would like it to open Plaxis and start executing the actions I have set in the script withou me having to open Plaxis, close the stat window and set the server manually. My scritp instructs Plaxis to open remotelly however, the stating window and a 'non-active server' prevent the scritp from seting boreholes, geometry, mesh... and so on.

1) Are there any Python codding lines that would allow to close the start window?

2) Is there a way to 'Configure remote scripting server...' using Python?

 

Parents
  • It is possible to start PLAXIS Input with specifying the port number and the password. So if you launch PLAXIS via the command line (or the Python subprocess module)

    When using the remote scripting in an automated process, you can start the server without manual interaction by launching your PLAXIS application with the AppServerPort and ApppServerPassword command line parameters.

    For example in order to start the server in PLAXIS 2D on port 21403 using mypassword as the password:

    C:\Program Files\Bentley\Geotechnical\PLAXIS 2D CONNECT Edition V20\PLAXIS2Dx.exe --AppServerPassword=mypassword --AppServerPort=21403
Reply
  • It is possible to start PLAXIS Input with specifying the port number and the password. So if you launch PLAXIS via the command line (or the Python subprocess module)

    When using the remote scripting in an automated process, you can start the server without manual interaction by launching your PLAXIS application with the AppServerPort and ApppServerPassword command line parameters.

    For example in order to start the server in PLAXIS 2D on port 21403 using mypassword as the password:

    C:\Program Files\Bentley\Geotechnical\PLAXIS 2D CONNECT Edition V20\PLAXIS2Dx.exe --AppServerPassword=mypassword --AppServerPort=21403
Children