Cloud Servers – Server Gigabit Guide https://www.servergigabit.com/guide VPS Hosting | Dedicated Server Wed, 15 Mar 2023 01:29:30 +0000 en-US hourly 1 https://wordpress.org/?v=6.7.2 https://www.servergigabit.com/guide/wp-content/uploads/2020/07/cropped-GIGABIT_logo-1-32x32.png Cloud Servers – Server Gigabit Guide https://www.servergigabit.com/guide 32 32 Minimum Space Requirement for Windows 2012 https://www.servergigabit.com/guide/kb/minimum-space-requirement-for-windows-2012 Wed, 03 Jun 2020 10:35:28 +0000 https://www.wesbytes.com/guide/?post_type=kb&p=479 According to Microsoft, the minimum disk requirement for a successful install of Windows 2012 is 32 GB. However, to cater to Windows Updates and other applications ( e.g. email, website ) which you may use. It is recommended that at least 50 GB of disk space be set aside for your cloud server.

The post Minimum Space Requirement for Windows 2012 appeared first on Server Gigabit Guide.

]]>
According to Microsoft, the minimum disk requirement for a successful install of Windows 2012 is 32 GB.
However, to cater to Windows Updates and other applications ( e.g. email, website ) which you may use. It is recommended that at least 50 GB of disk space be set aside for your cloud server.

The post Minimum Space Requirement for Windows 2012 appeared first on Server Gigabit Guide.

]]>
Restarting Cloud Server For Upgrade To Take Effect https://www.servergigabit.com/guide/kb/restarting-cloud-server-for-upgrade-to-take-effect Wed, 03 Jun 2020 10:33:15 +0000 https://www.wesbytes.com/guide/?post_type=kb&p=473 You will need to restart for the upgrade/downgrade to take effect. The restarting has to be done via the panel where you can see your invoices, services, cloud servers, etc. Here’s how… 1. Navigate to the Cloud Server, click “Shut down Virtual Machine”. 2. You will be asked to confirm your action. Click “Yes”. 3. The screenshot below shows the…

The post Restarting Cloud Server For Upgrade To Take Effect appeared first on Server Gigabit Guide.

]]>
You will need to restart for the upgrade/downgrade to take effect. The restarting has to be done via the panel where you can see your invoices, services, cloud servers, etc.

Here’s how…

1. Navigate to the Cloud Server, click “Shut down Virtual Machine”.

2. You will be asked to confirm your action. Click “Yes”.

startup virtual machine

3. The screenshot below shows the shutdown in progress.

4. When shutdown has completed (as indicated by the red “OFF”), please click “Startup Virtual Machine”.

virtual machine

4a. If you get the “Start up failed” error as illustrated below, please wait 5 minutes, then click on “Details”, then click on “Startup Virtual Machine” again.

(The startup failed because the provisioning system is in the midst of allocating new disk space to your cloud server. Allocating disk space is more time consuming when compared with other resources such as memory and CPU.)client area

5. After has started up (as indicated by the green “ON”), your cloud server will have the new amount of allocated resource/s.virtual machine details

The post Restarting Cloud Server For Upgrade To Take Effect appeared first on Server Gigabit Guide.

]]>
How Do I Start Hosting My Web Pages and PHP Scripts https://www.servergigabit.com/guide/kb/how-do-i-start-hosting-my-web-pages-and-php-scripts-2 Wed, 03 Jun 2020 10:27:19 +0000 https://www.wesbytes.com/guide/?post_type=kb&p=469 To start hosting your web pages and PHP scripts, you will need to do the following things, in gist: – Install a web server. – Install the PHP interpreter. – Configure the web server. – Install a FTP server. – Configure the FTP server. – Install a database server. – Configure the database server. Installing is the easy part. Configuring…

The post How Do I Start Hosting My Web Pages and PHP Scripts appeared first on Server Gigabit Guide.

]]>
To start hosting your web pages and PHP scripts, you will need to do the following things, in gist:
– Install a web server.
– Install the PHP interpreter.
– Configure the web server.
– Install a FTP server.
– Configure the FTP server.
– Install a database server.
– Configure the database server.

Installing is the easy part. Configuring is the hard part. However, “easy” or “hard” are relative terms, and it depends on your level of skill. If you are skillful, all of the above will be easy and you probably would not be reading this article in the first place. Thus, this article assumes that you are not skillful, in the sense that you have never done anything like build a Linux or Windows web server that runs hundreds of websites that can support common CMS like WordPress or Joomla.

First, you will need to acquire the needed skills to perform the above tasks. Skills take time and effort to acquire. The time and effort that you put into reading this entire article will certainly not suffice, but it will serve as a good start. (Wait! I do not have so much time! Is there a quicker way to do this? Yes there is!

There are several ways to install a web server. For Linux based servers, the most common way is to use a package manager. For Centos, the package manager would be Yum. For Debian, it would be Aptitude. Typically, a command like “yum install httpd” or “apt-get install apache2” would get the web server (Apache in this case here) installed in a Centos and Debian server respectively. The same thing applies to the PHP interpreter, i.e. a command like “yum install php” or “apt-get install php” should work. For more details, simply Google the words like “install apache centos” or “install PHP debian” will yield a host of articles.

After that, you will need to configure the Apache server. This will be no easy task as the Apache server is a powerful web server with many configurable options. To make it work together with PHP is even harder; “harder” in the sense that that are many ways to make it work, and there are even more ways to make it not work. Most articles in the Internet (Google “apache PHP centos” or something similar) will show you some very basic configuration approaches, but those articles by no means describe the only method of getting it done. Most involve just leaving things in their default configuration, and simply upload the web pages and scripts to the default locations (and hope that it all works out well). For Centos, it would be “/var/www/html”. For Debian, it would be “/var/www”.

For Windows server, the default web server is IIS. Installing IIS almost feels like enabling something in a Windows server. Typically, you would go to ” Start -> All Programs -> Administrative Tools -> Server Manager”, then “Roles”, “Add Roles”, tick “Web Server (IIS)”.

The purpose of the FTP server is to allow you to upload web pages and scripts into your server. In a Linux server, there are many FTP server programs available, each with its own method of configuration. But for Linux servers, using FTP is not the only way to upload files. You can use SCP, which actually uses the SSH connection to upload the files.

Typically, in a Linux server, the database server would be MySQL. Just like Apache, there are several ways to get it installed. The most common way would be to use a package manager. Thus, a command like “yum install mysql-server mysql php-mysql” (for Centos), or a command like “apt-get install mysql-server php5-mysql” (for Debian) will get it done. During the installation of MySQL, you should be prompted to set a MySQL root password. Please do not confuse this with the server’s root password. The server’s root password allows you to SSH into the server, and perform administrator tasks like installing more programs. The MySQL root password allows you to log into the MySQL server as MySQL administrator to do things like create databases and users for the databases.

For a Windows server, Microsoft will of course recommend using MSSQL as the database server. However, please note that not all versions of MSSQL are free.

The above describes the things that need to be done in order to make server capable of running a web site with PHP scripts. But it is by no means complete. It only serves as a start.

 

Some of us may not have the time, energy and/or interest to explore the intricacies of all the “ingredients” needed to make a web server that supports PHP and MySQL. In case you are wondering, “Is there a program that installs and configures all these ‘ingredients’ for me, and then gives me a graphical user interface for me to easily manage the server? ” The answer is yes. It is called the “Parallels Plesk Panel”. The software is free to download and install, but you will need a license to get it to work.

Some of our pre-build cloud servers are installed with Plesk. If you intend to explore this option, you might want to consider changing the “Template” (aka Operating System) to something like “CentOS 6.3 Plesk 11 x64”, as illustrated in the picture below.

client area

(Please note that changing the “template” or operating system of the cloud server will result in loss of data. Do this only when you have the means of re-uploading all your data.)

After that, you will need to “Rebuild Virtual Machine”, as illustrated below. (To repeat, this will result in loss of data. Do this only when you have the means of re-uploading all your data.)

client area

The post How Do I Start Hosting My Web Pages and PHP Scripts appeared first on Server Gigabit Guide.

]]>
Backup Up Your Cloud Server https://www.servergigabit.com/guide/kb/backup-up-your-cloud-server Wed, 03 Jun 2020 10:23:48 +0000 https://www.wesbytes.com/guide/?post_type=kb&p=463 Here’s how you can back up your cloud server. 1. Navigate to the Cloud Server, click “Disks”. 2. Click on the icon on the right, as illustrated in the picture below. 3. You will be brought to a page similar to the one below. Notice that the “Status” is “Pending”. This means that the backup is in progress. 4.When the…

The post Backup Up Your Cloud Server appeared first on Server Gigabit Guide.

]]>
Here’s how you can back up your cloud server.

1. Navigate to the Cloud Server, click “Disks”.

client area , click disks

2. Click on the icon on the right, as illustrated in the picture below.

client area

3. You will be brought to a page similar to the one below. Notice that the “Status” is “Pending”. This means that the backup is in progress.

status and pending

4.When the backup is done, you will see a page similar to the one below. Notice that the “Status” is “Built” now.

client area

The post Backup Up Your Cloud Server appeared first on Server Gigabit Guide.

]]>
Restore Your Cloud Server From a Backup https://www.servergigabit.com/guide/kb/restore-your-cloud-server-from-a-backup Wed, 03 Jun 2020 10:14:25 +0000 https://www.wesbytes.com/guide/?post_type=kb&p=455 1. Navigate to the Cloud Server, click “Backups”. 2. You will be shown a list of backups that you have previously taken. Click “Restore” in the row of the backup that you wish to restore from. 3. You will be shown the dialogue box below. Click on “OK” to continue with the restore process. (Please note that all data in…

The post Restore Your Cloud Server From a Backup appeared first on Server Gigabit Guide.

]]>
1. Navigate to the Cloud Server, click “Backups”.client area

2. You will be shown a list of backups that you have previously taken. Click “Restore” in the row of the backup that you wish to restore from.client area

3. You will be shown the dialogue box below. Click on “OK” to continue with the restore process. (Please note that all data in the current cloud server will be gone.)message from webpage

4. You will be brought to a page similar to the one below. The restore is happening in the background. To check whether the restore has completed, click “Overview”.client area

5. If the restore has not completed yet, you will see the “Status” as “Pending”, and that the “RestoreBackup” is “Running”, as illustrated below.client area

6. If the restore has completed, you will see the “Status” displaying the “OFF” and “ON” buttons, and that the “RestoreBackup” is now “Complete”, as illustrated below.

client area

The post Restore Your Cloud Server From a Backup appeared first on Server Gigabit Guide.

]]>
How Do I Start Hosting My Web Pages and PHP Scripts https://www.servergigabit.com/guide/kb/how-do-i-start-hosting-my-web-pages-and-php-scripts Wed, 03 Jun 2020 10:05:32 +0000 https://www.wesbytes.com/guide/?post_type=kb&p=451 To start hosting your web pages and PHP scripts, you will need to do the following things, in gist:   – Install a web server. – Install the PHP interpreter. – Configure the web server. – Install a FTP server. – Configure the FTP server. – Install a database server. – Configure the database server. Installing is the easy part.…

The post How Do I Start Hosting My Web Pages and PHP Scripts appeared first on Server Gigabit Guide.

]]>
To start hosting your web pages and PHP scripts, you will need to do the following things, in gist:

 

– Install a web server.
– Install the PHP interpreter.
– Configure the web server.
– Install a FTP server.
– Configure the FTP server.
– Install a database server.
– Configure the database server.

Installing is the easy part. Configuring is the hard part. However, “easy” or “hard” are relative terms, and it depends on your level of skill. If you are skillful, all of the above will be easy and you probably would not be reading this article in the first place. Thus, this article assumes that you are not skillful, in the sense that you have never done anything like build a Linux or Windows web server that runs hundreds of websites that can support common CMS like WordPress or Joomla.

First, you will need to acquire the needed skills to perform the above tasks. Skills take time and effort to acquire. The time and effort that you put into reading this entire article will certainly not suffice, but it will serve as a good start. (Wait! I do not have so much time! Is there a quicker way to do this?

There are several ways to install a web server.  Typically, a command like “yum install httpd” or “apt-get install apache2” would get the web server (Apache in this case here) installed in a Centos and Debian server respectively. The same thing applies to the PHP interpreter, i.e. a command like “yum install php” or “apt-get install php” should work. For more details, simply Google the words like “install apache centos” or “install PHP debian” will yield a host of articles.

After that, you will need to configure the Apache server. This will be no easy task as the Apache server is a powerful web server with many configurable options. To make it work together with PHP is even harder; “harder” in the sense that that are many ways to make it work, and there are even more ways to make it not work. Most articles in the Internet (Google “apache PHP centos” or something similar) will show you some very basic configuration approaches, but those articles by no means describe the only method of getting it done. Most involve just leaving things in their default configuration, and simply upload the web pages and scripts to the default locations (and hope that it all works out well).

For Windows server, the default web server is IIS. Installing IIS almost feels like enabling something in a Windows server. Typically, you would go to ” Start -> All Programs -> Administrative Tools -> Server Manager”, then “Roles”, “Add Roles”, tick “Web Server (IIS)”.

 

The purpose of the FTP server is to allow you to upload web pages and scripts into your server. In a Linux server, there are many FTP server programs available, each with its own method of configuration. But for Linux servers, using FTP is not the only way to upload files. You can use SCP, which actually uses the SSH connection to upload the files.

 

Typically, in a Linux server, the database server would be MySQL. Just like Apache, there are several ways to get it installed. The most common way would be to use a package manager. Thus, a command like “yum install mysql-server mysql php-mysql” (for Centos), or a command like “apt-get install mysql-server php5-mysql” (for Debian) will get it done. During the installation of MySQL, you should be prompted to set a MySQL root password. Please do not confuse this with the server’s root password. The server’s root password allows you to SSH into the server, and perform administrator tasks like installing more programs. The MySQL root password allows you to log into the MySQL server as MySQL administrator to do things like create databases and users for the databases.end using MSSQL as the database server. However, please note that not all versions of MSSQL are free.

The above describes the things that need to be done in order to make server capable of running a web site with PHP scripts. But it is by no means complete. It only serves as a start.

Some of us may not have the time, energy and/or interest to explore the intricacies of all the “ingredients” needed to make a web server that supports PHP and MySQL. In case you are wondering, “Is there a program that installs and configures all these ‘ingredients’ for me, and then gives me a graphical user interface for me to easily manage the server? ” The answer is yes. It is called the “Parallels Plesk Panel”. The software is free to download and install, but you will need a license to get it to work.

Some of our pre-build cloud servers are installed with Plesk. If you intend to explore this option, you might want to consider changing the “Template” (aka Operating System) to something like “CentOS 6.3 Plesk 11 x64”, as illustrated in the picture below.

client area

(Please note that changing the “template” or operating system of the cloud server will result in loss of data. Do this only when you have the means of re-uploading all your data.)

After that, you will need to “Rebuild Virtual Machine”, as illustrated below. (To repeat, this will result in loss of data. Do this only when you have the means of re-uploading all your data.)

client area

The post How Do I Start Hosting My Web Pages and PHP Scripts appeared first on Server Gigabit Guide.

]]>