Upon completing the PAM360 setup, you can begin using the application. Before configuring the necessary settings and working with the PAM360 console, it is important to familiarize yourself with a set of initial start-ups that will facilitate continuing with further PAM360 operations. This guide provides comprehensive steps on starting, shutting down, and launching the PAM360 application in both Windows and Linux environments. It also covers accessing PAM360 via the web client, configuring service accounts using gMSA (group Managed Service Account), and troubleshooting tips.
At the end of this document, you will have learned about the following operations:
PAM360 can be started, stopped, or restarted via the Windows services console. Additionally, the tray icon on the taskbar provides quick access to start or stop the service and launch the web console.
| Using the Start Menu | Using the Tray Icon |
|---|---|
|
|
PAM360 can be run as a background service by executing specific commands in a non-root user environment. The service can be started or stopped using terminal commands.
To start the PAM360 as a service in Linux, log in as non-root user and execute the following command. Upon execution, PAM360 server runs in the background as service.
systemctl start pam360.service
To check the status of the service, execute the following command:
systemctl status pam360.service
To stop PAM360 server started as a service, in Linux, execute the following command as non-root user.
systemctl stop pam360.service
To start the PAM360 as a service in Linux, log in as non-root user and execute the following command. Upon execution, PAM360 server runs in the background as service.
/etc/rc.d/init.d/pam360-service start
To stop PAM360 server started as a service, in Linux, execute the following command as non-root user.
/etc/rc.d/init.d/pam360-service stop
Changing the PAM360 Service to systemd Software Suite
By default, from build 7200, the PAM360 service will get installed in systemd software suite for utilizing the parallel processing of services and other service capabilities. However, for existing users prior to build 7200, the service will remain the same in the initd process control system unless they choose to change it. If you are an existing user and want to change the service to systemd software suite, follow the procedure mentioned below.
sh pam360.sh remove
sh pam360.sh install
systemctl start pam360.service
systemctl status pam360.service
There are different ways of connecting to the PAM360 web client:
Once the server has started after the successful installation of PAM360, the PAM360 Login screen shows up in a browser window. As PAM360 uses secured HTTPS connection, you will be prompted to accept the Security Certificate. Hit Yes, type the Username and Password in the login screen and press Enter.
In Windows
Right-click the PAM360 tray icon and click PAM360 Web Console to launch the web client manually. The PAM360 Login screen shows up in a browser window. As PAM360 uses the secured HTTPS connection, you will be prompted to accept the Security Certificate. Hit Yes, type the Username and Password in the login screen and press Enter.
In Linux
Open a browser and connect to the URL - https://<hostname>:portnumber/
where, <hostname> is the host where the PAM360 server is running,<portnumber> is the default port 8282. For example, https://chnpam-165:8282
If you want to connect to the PAM360 web client in a remote machine (different from the one where PAM360 is running), open a browser and connect to the below URL - https://<hostname>:port
As PAM360 uses the secured HTTPS connection, you will be prompted to accept the Security Certificate. Hit Yes, type the Username and Password in the login screen and press Enter.
Additional Details
The administrator can modify the initial authentication mechanism to AD/LDAP/Microsoft Entra ID as needed, followed by two-factor authentication (2FA).
For a more streamlined and passwordless authentication process, utilize the Smart Login method by scanning the QR code with the PAM360 mobile application. Administrators can enable Smart Login or set it as the preferred initial login method by navigating to Admin >> Customization >> General Settings >> User Management.
PAM360 supports managing services using a group Managed Service Account (gMSA), which enhances security and management of services. To learn about gMSA in detail, refer to Microsoft's documentation.
To create a group Managed Service Account,
Import-Module ActiveDirectory
Add-KdsRootKey -EffectiveTime ((get-date).addhours(-10))
New-ADServiceAccount -Name <MSA_AccountName> -DNSHostName <DNSNAme> -PrincipalsAllowedToRetrieveManagedPassword <Machine_Name>$
Add-ADComputerServiceAccount -Identity <Machine_Name> -ServiceAccount <MSA_AccountName>
Install -ADServiceAccount -Identity <MSA_AccountName>
You have now successfully created a group Managed Service Account (gMSA) account. Now, you can run your PAM360 service using the gMSA account.
If you are unable to install the service account, execute the below command before executing install statement:
Set-ADServiceAccount -Identity <MSA_AccountName> -KerberosEncryptionType AES128,AES256