Advanced Search
Search Results
64 total results found
Third Party Tools
Windows System Tools Collections NirSoft This no-frills site has a wealth of tools for virtually anything you need to monitor or do on Windows. Info/Downloads: http://www.nirsoft.net NoVirusThanks Collection of various utilities for Windows ...
Security
Anti-Virus VirusTotal Link: https://www.virustotal.com Firewall Windows Firewall Control (from Third Party Tools) Passwords XKPasswd Great site for generating secure passwords Link: https://xkpasswd.net/s/ Use/Load Following Recommended Config...
Disable Graphic Persistency
If your popup windows keep showing up where the you last moved them when you open them back up after them being closed, Wonderware is trying to remember where you last opened it and open it back up there. This causes issues when you're expecting the popup to s...
Windows Time Settings in a Domain
Time synchronization is an important part of any Active Directory domain. In this post, we'll look at the impact of time being out of sync, how to configure time sync correctly, and how to troubleshoot when things go wrong. Why We Should Synchronize Time Wh...
Timekeeping best practices for Windows, including NTP
For achieving accurate timekeeping in Windows guest operating systems, there are two main issues to consider: correctly configuring time synchronization and avoiding excessive CPU and memory overcommitment. Time synchronization utilities are necessary to corre...
Veeam Linux Agent
To install Veeam Agent for Linux: Download the Veeam software repository installation package (veeam-release) from the Veeam Download page, and save the downloaded package on the computer where you plan to install the product. (As of writing this, the lates...
Ubuntu Time Configuration
Setting the Time Zone To check the current time zone set, run the following command: timedatectl To get a list of available time zones, run the following command: timedatectl list-timezones To set the timezone to one of the above time zones, run the follo...
Windows Problem Steps Recorder
While troubleshooting it is often helpful to visualize the issue as well as the steps taken which lead to it. When creating a set of troubleshooting files, it is recommended to create a series of screenshots while reproducing the issue.Current versions of Wind...
Optimizing Microsoft SQL Server on the Galaxy Repository Node
Originally pulled from: https://softwaresupportsp.aveva.com/#/okmimarticle/docid/tn441 LEGACY TECH NOTE # 826 SUMMARY This Tech Note describes configuration points for optimizing Microsoft SQL Server performance and management when it is inst...
Galaxy Server SQL Tips
Galaxy Information Get total number of active users on a repository SELECT * FROM SKVirtualActor WHERE IsActiveUser = 1; Troubleshooting Cleaning up the change log DELETE FROM gobject_change_log WHERE change_date <= DATEADD(dd, -15, GetDate()) Clean up ...
How to determine Archestra/SQL versions by cab or aaPKG files
Determining Archestra Version from .cab or .aaPKG files At the root of the .cab file or. aaPKG file you'll find a __GalaxyInfo.txt file. To get this file, rename the .cab or .aaPKG to a .zip file and then open it. Open the __GalaxyInfo.txt fle in a text edito...
Install Nginx
Install Nginx apt install -y nginx systemctl enable nginx ufw allow http chown www-data:www-data /usr/share/nginx/html -R rm /etc/nginx/sites-enabled/default nano /etc/nginx/conf.d/default.conf server { listen 80; listen [::]:80; server_name _;...
Install MariaDB
Install MariaDB sudo apt install -y mariadb-server mariadb-client Allow remote access from other servers (if needed) To allow remote access we need to change the bound IP address for MariaDB. Edit the configuration file: sudo nano /etc/mysql/mariadb.conf.d...
Install PHP 7.4
Install PHP sudo apt install -y php7.4 php7.4-fpm php7.4-mysql php-common php7.4-cli php7.4-common php7.4-json php7.4-opcache php7.4-readline php7.4-mbstring php7.4-xml php7.4-gd php7.4-curl php7.4-zip Using PHP with Apache Install Apache PHP Module sudo a...
Installing Ignition on a Headless Linux Server
Since Ignition 8 it is really simple to install Ignition in a headless linux server environment. A java runtime is no longer needed as Ignition ships with its own built in correctly licensed java executable. There is just one gotcha, and that is downloading th...
Install Microsoft SQL Server
Import the public repository GPG keys: wget -qO- https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add - Register the Microsoft SQL Server Ubuntu repository for SQL Server sudo add-apt-repository "$(wget -qO- https://packages.microsoft.com/co...
Install Webmin
Enable root access using sudo: sudo -i Edit the /etc/apt/sources.list file on your system: nano /etc/apt/sources.list Add the line: deb https://download.webmin.com/download/repository sarge contrib You should also fetch and install my GPG key with which ...
Install HAProxy & CertBot (LetsEncrypt)
HAProxy Install HAProxy Install HAProxy v2.9 with the following commands: sudo add-apt-repository -y ppa:vbernat/haproxy-2.9 sudo apt update sudo apt install -y haproxy Install WhoIs for Basic Password Protection of Statistics Page (Optional) Install Wh...
User Management
Add a User Add a user with the following command: sudo adduser <username> Add User to a Group sudo usermod -aG <group> <username> Common groups to add users to: sudo - If user needs access to sudo privileges
Securing SSH Connections from Windows
Create and secure .ssh user directory on Linux mkdir ~/.ssh && chmod 700 ~/.ssh Create Public/Private key pair from Windows Powershell ssh-keygen -b 4096 You'll be prompted for a storage location which is best to leave at default. You'll also be prompted ...