Archive for the tag 'manage'

SBDavid

SSL/TLS Manage Certificate Sharing

SSL/TLS Manage Certificate Sharing

If you are the server administrator, you can choose to allow your customers to share your SSL certificate.

1. Click Change Certificate Sharing Permissions to begin.

2. On the Manage SSL Certificate Sharing screen, click Enable Sharing.

Click Disable Sharing if you want to disallow users from sharing your certificate.

3. Under the Certificate Linking heading, select a domain to see an accurate link example.

htpasswd - Manage user files for basic authentication

htpasswd is used to create and update the flat-files used to store usernames and password for basic authentication of HTTP users. If htpasswd cannot access a file, such as not being able to write to the output file or not being able to read the file in order to update it, it returns an error status and makes no changes.

Resources available from the Apache HTTP server can be restricted to just the users listed in the files created by htpasswd. This program can only manage usernames and passwords stored in a flat-file. It can encrypt and display password information for use in other types of data stores, though. To use a DBM database see dbmmanage.

htpasswd encrypts passwords using either a version of MD5 modified for Apache, or the system’s crypt() routine. Files managed by htpasswd may contain both types of passwords; some user records may have MD5-encrypted passwords while others in the same file may have passwords encrypted with crypt().

-m Use MD5 encryption for passwords.
-c Create the passwdfile. If passwdfile already exists, it is rewritten and truncated.

EXAMPLES

htpasswd /usr/local/etc/apache/.htpasswd-users jsmith

Adds or modifies the password for user jsmith. The user is prompted for the password.

The database utility is used to manage databases and database users in Plesk through CLI. By using this utility, you can perform the following tasks:

* creating or deleting databases
* adding and removing database users
* adding or removing database access records for database users
* editing database user credentials
* setting charset for PostgreSQL databases

Example

The following command creates database buddies on a database server accessible at the IP address and port number 192.0.2.78:3838 and prints the created Plesk database ID:

# ./database –create buddies -domain example.com -server 192.0.2.78:3838 -print-id

To create the database buddies for the domain example.com on the local MySQL server:

# ./database –create buddies -domain example.com -type mysql