3. Publishing Applications to Users
7. SGD Servers, Arrays, and Load Balancing
B. Secure Global Desktop Server Settings
C. User Profiles, Applications, and Application Servers
The tarantella archive Command
tarantella array add_backup_primary
tarantella array edit_backup_primary
tarantella array list_backup_primaries
tarantella array remove_backup_primary
The tarantella emulatorsession Command
tarantella emulatorsession list
tarantella emulatorsession info
tarantella emulatorsession shadow
tarantella emulatorsession suspend
tarantella emulatorsession end
tarantella object list_attributes
tarantella object list_contents
tarantella object new_container
tarantella object new_dynamicapp
tarantella object new_windowsapp
tarantella object remove_mapping
tarantella object remove_member
The tarantella restart Command
The tarantella security Command
tarantella security certrequest
tarantella security decryptkey
tarantella security fingerprint
The tarantella service Command
The tarantella tokencache Command
The tarantella uninstall Command
The tarantella version Command
The tarantella webserver Command
tarantella webserver add_trusted_user
tarantella webserver delete_trusted_user
tarantella webserver list_trusted_users
The tarantella webtopsession Command
This command manipulates the application server password cache. SGD Administrators can create, modify, delete, and examine entries.
tarantella passcache new | edit | list | delete
The following table shows the available subcommands for this command.
|
Note - All commands include a --help option. You can use tarantella passcache command --help to get help on a specific command.
The following example creates a password cache entry for the SGD user Indigo Jones, on the application server represented by the application server object prague.
$ tarantella passcache new \ --person "o=Indigo Insurance/cn=Indigo Jones" \ --resource "o=appservers/cn=prague" \ --resuser indigo --respass rainbow
The following example lists entries in the password cache for the SGD user Indigo Jones.
$ tarantella passcache list \ --person "o=Indigo Insurance/cn=Indigo Jones"
Deletes entries in the application server password cache.
Note - You can also use this command to delete the decision to always use a smart card to authenticate to an application server.
tarantella passcache delete { [--person pobj | --anon | --ldap ] [ --resource resource ] } | --file file
The following table shows the available options for this command.
|
If neither --person, --anon, nor --ldap is specified, all password cache entries for the specified resource are deleted.
If --resource is not specified, all the password cache entries for the person, or anonymous user, are deleted.
Note - Make sure you quote any object names containing spaces, for example, "o=Indigo Insurance".
The following example deletes all password cache entries for the user Indigo Jones.
$ tarantella passcache delete \ --person "o=Indigo Insurance/cn=Indigo Jones"
The following example deletes all password cache entries for anonymous users on the application server prague.indigo-insurance.com.
$ tarantella passcache delete \ --anon --resource .../_dns/prague.indigo-insurance.com
The following example deletes the password cache entry for the east service object.
$ tarantella passcache delete \ --ldap --resource east
Edits entries in the application server password cache.
tarantella passcache edit { { --person pobj | --anon | --ldap } --resource resource --resuser resuser [ --respass respass ] } | --file file
The following table shows the available options for this command.
|
Note - Make sure you quote any object names containing spaces, for example, "o=Indigo Insurance".
The following example edits the password cache entry for the SGD user Indigo Jones, on the application server represented by the application server object prague.
$ tarantella passcache edit \ --person "o=Indigo Insurance/cn=Indigo Jones" \ --resource "o=appservers/cn=prague" \ --resuser indigo --respass rainbow
The following example edits the password cache entry for anonymous users on the application server paris.indigo-insurance.com.
$ tarantella passcache edit \ --anon --resource .../_dns/paris.indigo-insurance.com
The following example creates a password cache entry for the mainldap service object, which is an LDAP service object.
$ tarantella passcache edit \ --ldap --resource mainldap \ --resuser cn=sgd-user,cn=Users,dc=example,dc=com \ --respass rainbow
The following example edits the password cache entry for the east service object, which is an Active Directory service object.
$ tarantella passcache edit \ --ldap --resource east \ --resuser admin@east.example.com --respass rainbow
Lists entries in the application server password cache.
tarantella passcache list { [ --person pobj | --anon | --ldap ] [ --resource resource ] [ --resuser resuser ] [ --format text | xml ] } | --file file
The following table shows the available options for this command.
|
If you omit all arguments, or just specify --format, all entries in the password cache are displayed.
Note - Make sure you quote any object names containing spaces, for example, "o=Indigo Insurance".
The following example lists entries in the password cache for the SGD user Indigo Jones.
$ tarantella passcache list \ --person "o=Indigo Insurance/cn=Indigo Jones"
The following example lists all entries in the password cache.
$ tarantella passcache list
The following example lists the password cache entry for the east service object.
$ tarantella passcache list \ --ldap --resource east
tarantella passcache new { { --person pobj | --anon | --ldap } --resource resource --resuser resuser [ --respass respass ] } | --file file
Adds entries to the application server password cache.
The following table shows available options for this command.
|
Note - Make sure you quote any object names containing spaces, for example, "o=Indigo Insurance".
The following example creates a password cache entry for the SGD user Indigo Jones, on the application server represented by the application server object prague.
$ tarantella passcache new \ --person "o=Indigo Insurance/cn=Indigo Jones" \ --resource "o=appservers/cn=prague" \ --resuser indigo --respass rainbow
The following example creates a password cache entry for anonymous users on the application server paris.indigo-insurance.com, prompting for the password.
$ tarantella passcache new --anon --resuser \ --resource .../_dns/paris.indigo-insurance.com
The following example creates a password cache entry for the mainldap service object which is an LDAP service object.
$ tarantella passcache new \ --ldap --resource mainldap \ --resuser cn=sgd-user,cn=Users,dc=example,dc=com \ --respass rainbow
The following example creates a password cache entry for the east service object which is an Active Directory service object.
$ tarantella passcache new \ --ldap --resource east \ --resuser admin@example.com --respass rainbow