Dedicated server

Convert Windows Server 2019/2022 Evaluation to Retail

To convert your windows server 2019 from Evaluation to Retail, use the following PowerShell command: DISM /Online /Set-Edition:ServerStandard /ProductKey:N69G4-B89J2-4G8F4-WWYCC-J464C /AcceptEula   For no restart prompt after the conversation, please use the following command: DISM /NoRestart /Online /Set-Edition:ServerStandard /ProductKey:N69G4-B89J2-4G8F4-WWYCC-J464C /AcceptEula Convert Windows Server Standard 2022 DISM /NoRestart /Online /Set-Edition:ServerStandard /ProductKey:VDYBN-27WPP-V4HQT-9VMD4-VMK7H /AcceptEula    

Convert Windows Server 2019/2022 Evaluation to Retail Read More »

add wp-cli to cageFS

Login to your server as root. Install wp-cli as stated here: http://wp-cli.org/#installing After installing WP-CLI Open file: /etc/cagefs/conf.d/wp.cfg using: $ nano /etc/cagefs/conf.d/wp.cfg Add the following content to that file and save. [wp] comment=wp paths=/usr/local/bin/wp And then run: $ cagefsctl –force-update Now all users who have SSH access can use wp command.

add wp-cli to cageFS Read More »

change ssh port on CentOS 7

Edit /etc/ssh/sshd_config $ nano /etc/ssh/sshd_config Look for: #Port 22 Change to any port number of your choice, for example, 1234 Port 1234 (remove # from the beginning and change 22 to 1234, make sure not to use a port number that’s already used by another service like 80,21,443,53,25 etc..) 2) Add the port number to the

change ssh port on CentOS 7 Read More »

EasyApache is currently upgrading your Apache and PHP installation

If you are continuously getting the message “EasyApache is currently upgrading your Apache and PHP installation” While trying to configurting PHP and suEXEC in WHM Try this on SSH: mv AN_EASYAPACHE_BUILD_IS_CURRENTLY_RUNNING AN_EASYAPACHE_BUILD_IS_CURRENTLY_RUNNING_bk Your issue should be solved. source

EasyApache is currently upgrading your Apache and PHP installation Read More »