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
Category: Dedicated server
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/wpcli.cfg using: $ nano /etc/cagefs/conf.d/wpcli.cfg Add the following content to that file and save. [wp-cli] comment=wp-cli paths=/usr/local/bin/wp And then run: $ cagefsctl –force-update Now all users who have SSH access can use wp-cli.
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 …
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
Explain Data Center Tiers , Tier-1 Tier-2 Tier-3 Tier-4
Q. What is data center tiers? What is tier 1 data center? Which tier / level is the best for maximum uptime? A. Tier 1 to 4 data center is nothing but a standardized methodology used to define uptime of data center. This is useful for measuring: a) Data center performance b) Investment c) ROI (return on …
How to control wget over SSH
Hello , in this tutorial we will talking about controlling “wget” command in SSH like Resume download , limit the download speed , start in background and more … Limit the Speed : if you want to Limit the download speed to not consume the whole uplink speed : # wget http://remoteserver.com/file.rar –limit-rate=100k