Lost root level password on Linux CentOS November 27, 2006
Posted by paragonhost in Linux.3 comments
Q:
I have lost my system (centos 4.3) root password,
I have change try to change the root password by the command “change password” but I receive the message “error 32 you must be authentificated”
Thank you,
A:
You need to boot into single user mode (by sitting in front of the actual computer)
Then you can reset it from there.
Quoted from another post:
“Boot into single user mode. You can do that by modifying the grub boot option on startup.
1. Press ‘e’ to edit startup
2. Use the arrow keys to highlight the kernel line and pres ‘e’ to edit the parameters
3. At the end of the line, add the word ’single’ (without the ‘) and press Enter
4. Press ‘b’ to boot the system
You will be dropped directly into a bash shell as root and can change the password. You can also access your file system from there. You will not have any network access while in single user mode though.”
Business Class Hosting by: ParagonHost
“World Class Internet Services”
Understanding VOIP - Key Elements to Understand November 24, 2006
Posted by paragonhost in VOIP.add a comment
*** What is Jitter
Jitter is the variation in time between data packets sent and packets arriving caused by network difficulties such as route changes, congestion, packet loss, traffic regulators etc., and plays a major role in the quality of a VoIP call. Excessive jitter occurs when the time delay is too long (high latency) and packets arrive outside the time window and get lost from the call (discarded). As a result, the recomposed sound no longer reflects exactly what was sent, and depending of the extent of the delay may not be understandable by the recipient.
*** What is Packet Loss
Packet loss plays a key role in the quality of VoIP connections, as high packet loss causes some of the voice data not to arrive to the recipient. Packet loss occurs when voice packets are discarded by the jitter buffer, or dropped by network routers/switches due to high congestion. MyVoIPSpeed measures the percentage of packet loss and reports the associated level of sound quality.
*** What is QOS
Quality of Service (QoS) is a feature of routers and switches which prioritizes traffic so that more important traffic can pass first. The result is a performance improvement for critical network traffic. QoS equipment is useful with VoIP phones or in LANs with high volumes of local traffic.
Also, QOS represents the level of consistent download bandwidth speed (or throughput) provided by your ISP. A consistent broadband speed results in a better quality connection for for time-sensitive applications such as VoIP or multimedia.
*** What is MOS
The MOS, or Mean Opinion Score, is a numeric measure of the sound quality at the receiving end of a communication circuit. Although the score is subjective it provides a widely-used method to rate the quality of voice communication in a simple way that meaningful to end users. The score is normally between 1 and 5 with 5 being the best.
The MOS value is reported in the Summary tab once a connection test completes, a VoIP simulation that drops below 3.5 is considered poor quality, a measure of 4.2-4.5 is considered good quality.
*** What is MOS
Max Pause is the longest pause recorded between data transfers during the download speed test. This should be a very small number. If not, it could indicate Internet congestion or a bad Internet connection.
The Maximum Download Pause and Average Download Pause values are reported in the Advanced tab once a connection test completes.
Broadband Speed Tester Benchmarks November 23, 2006
Posted by paragonhost in Internet, VOIP.add a comment
Broadband Speed Tester Benchmarks
A comparison of Internet connection speed testers
by Jerry Jongerius - March 4, 2005 - v16
| All Bandwidth Testers are not Created Equal |
![]() Fig.1 - myspeed.visualware.com |
Is your Internet speed tester accurate?
Writing an Internet bandwidth speed tester on the surface appears to be very easy. Just download a test data file, time it, and calculate the resulting bandwidth, right? No, even major companies get it wrong, as we will see below. The result is many speed testers that report an incorrect bandwidth for your connection.
The need for speed test accuracy
Are you getting the bandwidth that you paid for? If you paid for a 8 Mbps service, but are only testing at 6 Mbps, is the problem with your broadband connection, or with your speed tester?
The need for broadband bandwidth consistency - Why QOS Matters
Your broadband connection is only as reliable as its weakest link. So if you paid for a 3 Mbps connection, but the performance of the connection jumps around from 5 Mbps to 1 Mbps (over time averaging 3 Mbps), you will effectively be limited to 1 Mbps for planning purposes. Because if you deploy an application that needs more than 1 Mbps, that application will fail, because at times it really will not have more than 1 Mbps to use. In other words, it is far easier to deploy a ‘race car’ (application) on a ‘track’ (broadband) that is ‘flat’ (consistent) rather than ‘rolling hills’ (excellent, then poor, then excellent).
Measuring broadband consistency/QOS
In order for your speed tester to provide an accurate quality of service (QOS) measurement for your broadband connection, it first needs to be able to very accurately measure your bandwidth. The concept of QOS is illustrated below.
Fig.2 - Provider A, 100% QOS
Fig.3 - Provider B, 20% QOS
Both provider A (Fig.2) and provider B (Fig.3) deliver an average of 3 Mbps performance. Provider A provides an excellent consistent service, obtaining a QOS of 100% (3/3). However, provider B does not provide consistent results, resulting in a QOS of 20% (1/5) (details). Most high-quality broadband connections today easily deliver a QOS over 90%. Test your broadband QOS now using MySpeed.
The bottom line
In order to correctly evaluate your Internet broadband connection bandwidth and consistency, you need a speed tester that is very accurate and precise.
| Benchmarking Various Speed Testers |
In Fig.4 you can see the results of the author’s evaluation of various widely-used Internet broadband speed testers:
| Speed Tester | Run #1 | Run #2 | Run #3 | Run #4 | Run #5 |
Fig.4 - ‘Mbps / Kbps’ for various Internet speed testers
All tests were run from the author’s PC7 via a cable modem broadband connection8 with a known download speed around 4.23 Mbps and an upload speed around 370 kbps.
As discussed, a credible speed tester must provide both consistent and accurate results. From the table above you can see that only MySpeed provided consistent and accurate test results.
Why are some speed testers not as accurate and consistent as compared to other testers? Unfortunately, many companies write their own bandwidth speed test without understanding how easy it is to create a speed tester which contains hidden incorrect assumptions, resulting in a speed test which produces inaccurate test results. Writing an accurate speed tester at a minimum requires:
- a detailed working knowledge of certain aspects of TCP/IP
- a knowledge of timer units vs accuracy in the programming language used
- an understanding of basic mathematical concepts, like precision
- a server with an appropriate connectivity for multiple simultaneous client speed tests
- an ability to validate one’s own speed test results
Let’s examine some of the speed testers and analyze the test results.
| Evaluating Speed Tester Two |
![]() Fig.5 - Speed Tester Two results |
After reviewing the HTML source code for this speed tester, it appears to be timing (cable modem connection type) how long it takes for a 518,095 byte JPEG image to download within the context of a web page, and calculating the bandwidth like:
TIME = (time in seconds for image to download)
KBYTES = 500;
kbps = Math.round(KBYTES/TIME*8*10*1.02) / 10;
There are a couple of issues with this code. The first is an error in the KBYTES (in 1000 byte units) of the JPEG image. It is 518.095, not the 500 seen in the code. The second is the 1.02 multiplier, which could be an attempt by the test author to account for TCP/IP header overhead, but as that multiplier is not accurate the true intent of this multiplier is not known.
Timing how long it takes to download an image is a classic, well known and published speed test method. However, this technique is flawed in that it incorrectly assumes that:
- downloading a moderately sized image utilizes 100% of the download bandwidth immediately
- JavaScript language is a good choice for timing events
![]() Fig.6 - Speed Tester Two bandwidth utilization |
In reality, downloading a moderately sized image only utilizes 100% of the download bandwidth after an initial startup time.
The reason why is left as an exercise for the reader (requires a moderate understanding of how TCP/IP works).
This initial under-utilization can clearly be seen in the bandwidth utilization over time graph in Fig.6, of the actual image download during this speed test. This initial short under-utilization is one of the reasons that this speed test is not accurate. This speed test assumes 100% bandwidth utilization at all times, when in reality that is not the case. The result (as can be seen in the table above) is a large error (because of the relatively small image file downloaded) by this speed tester in underestimating the true bandwidth speed (a speed of 3.2 Mbps reported for a 4.2 Mbps link).
Interestingly, when the author used a download performance verification program to download exactly the same JPEG image as is used by this speed tester, the calculated download speed was 4,234,000 bps! So, if you avoid the pitfalls and use an accurate speed test program, accurate results can be achieved. Everything (the client computer, the server computer, the network) was the same except the program used to calculate the bandwidth speed. Clearly, the bandwidth calculation in this speed tester needs to be changed.
Finally, how accurate is JavaScript at timing events? The JavaScript Date() object provides millisecond units, but not necessarily millisecond accuracy. Under Windows, the accuracy is only to (at best) 0.01 seconds. This means that depending upon the final download time, there can only exist two or to three digits of precision. So when the test displays a download speed like “3306.3 Kbps” (which implies a precision to 5 digits), given that they only have two (or three) digits of precision in their time measurements, it is clear that this speed test author did not apply the concept of mathematical precision (the end result cannot be more precise than the minimum precision of the intermediate values).
Understanding Precision: Your boss gives you a digital thermometer which displays the temperature accurate to the degree. He asks you to calculate average temperature outside your office at high noon in May. Every day in May you take a measurement. At the end of the month you calculate the average and present your results to your boss. Do you report the average with any decimal digits, like 85.47°, or do you just report the temperature rounded to the degree, like 85°.
The answer is 85° because you can never have more digits of precision in a calculated answer than the minimum digits of precision in any value used to calculate the answer. So if all temperatures have two digits of precision, you can only present an answer with two digits of precision.
Another way of understanding the answer is to look at 85.47°, which is pretty much saying that the average could not have been 85.45° or 85.49°. But given the error possible in each daily temperature measurement, you really don’t know that. So reporting 85.47° as the average temperature is implying a precision that does not exist.
| Evaluating Speed Tester Three/Four |
![]() Fig.7 - Speed Tester Three/Four results |
After reviewing the HTML source to this speed tester, it appears to be using a very similar technique to Speed Tester Two, in that it embeds a lot of text within a web page, then times how long it takes for the web page to download, as in:
start = new Date().getTime();
(614405 bytes in the HTML)
end = new Date().getTime();
elapsed = (end-start)/1000;
KBps = Math.round(614405*100/(elapsed*1024)) / 100;
This speed test is making very similar incorrect assumptions that timing a moderately sized web page will provide you with a measure of your bandwidth. For all of the same reasons that Speed Tester Two is not accurate, neither is this speed test.
Moreover, this speed test reports a Mbps value that has been calculated incorrectly. The text on this speed tester’s web page appears very clear on the issue of bits vs bytes:
- Kbps - kilobits per second, or thousands of bits per second
- KBps - kilobytes per second
- Mbps - megabits per second, or millions of bits per second
- MBps - megabytes per second
As you can see in Fig.7 (ignoring mathematical precision issues for now), downloading 614405 bytes in 1.609 seconds is 372.91 kilobytes per second, but that is not 2.913 megabits per second (it is that many megabytes per second). It is instead 3.055 megabits per second (614405*8/1.609/1000000).
The bottom line is that Speed Tester Three/Four is not accurate, and the Mbps value reported to the end user is calculated incorrectly.
| Evaluating Speed Tester Five |
![]() Fig.8 - Speed Tester Five results |
A Java applet is used, which comes the closest to being the correct choice for a speed test, however the results are still far from accurate. A likely cause is that their servers (or network) are over-utilized, making it very difficult to provide an accurate speed test.
When the author ran some tests with this speed tester a couple of days later, the results seemed much better, but they were still were not accurate. After reviewing the HTML source code, the test download files were found.
Once again, when using an authenticated download speed program the download results were 4.23 Mbps. This confirms that this speed tester also incorrectly assumes 100% download utilization during the entire download.
| Evaluating Speed Tester Six |
![]() Fig.9 - Speed Tester six results |
This speed tester appears to have been written using Macromedia Flash. Given how quickly the test completed (under one second), this tester appears to be using a very small download file size. Also, given the wildly varied results, the web server or network to the web server appears to be highly utilized.
When the author tested the download speed from this tester’s server using a speed test verification program, results were mostly in the upper 3 Mbps range, sometimes above 4 Mbps, and once around 1 Mbps, confirming that this speed test is assuming 100% bandwidth utilization during the entire download, resulting in a bandwidth measurment that is a lot more incorrect than it should be. Also, since 4.23 Mbps results were not obtained every time (except once), this confirms that either the web server or network of Speed Tester Six is over utilized.
In Fig.9, this speed tester places “Cable” below that of T1, which is around 1.5 Mbps. Given that almost all cable companies provide cable modem download speeds above 3.0 Mbps, it appears that this speed tester was written some time ago and not updated to deal with today’s true broadband connections.
| How Accurate is Your Speed Tester? |
The key benchmark for any bandwidth speed tester is: Can it deliver consistent and accurate results for a highly accurate broadband connection of known speed? If not, the speed tester cannot be trusted.
The results of this benchmark analysis determined that only the MySpeed speed tester provided accurate and consistent Internet bandwidth speed test measurements.
| References |
- MySpeed: 4,233,464/370,888, 4,233,336/370,912, 4,232,408/370,648, 4,232,984/370,600, and 4,232,008/370,440. These results are fully auditable and can be viewed in the online enhanced reporting database. See tests #190078, #190080, #190081, #190083, and #190084. [Feb 28, 2005]
- CNET bandwidth meter: 3434.3, 3225.3, 3148.1, 3182.5, and 3225.3 kbps. [Feb 28, 2005]
- McAfee Speedometer (restart via web browser restart): 2.858, 2.885, 2.856, 3.001, and 2.804 Mbps. [Feb 28, 2005]
- McAfee Speedometer (restart via the ‘retest’ button): 2.856, 3.296, 4.223, 4.167, and 4.481 Mbps. [Feb 28, 2005]
- speedtest.dslreports.com 3,359,457/368,459 3,093,440/370,851 3,329,373/369,480 bps from server 1 and 679,936/363,967 620,765/363,967 bps from server 2. [Feb 28, 2005]
- Intel Broadband Speed Test: 732.2 Kbps, 767.9 Kbps, 1.3 Mbps, 339.4 Kbps, 700.6 Kbps. [March 3, 2005]
- Client computer was a Windows XP Professional, 3.20 Ghz Pentium 4, 1.0 GB RAM system. The ethernet card (Realtek RTL8169/8110 Gigabit) was connected at 100 Mbps to a LinkSys 10/100 Workgroup Switch, connected to a LinkSys WRT54G router, connected to a LinkSys BEFCMU V3 cable modem, connected to Comcast; see 8 below.
- Tests were performed on a broadband cable modem with a known download speed right around 4.23 Mbps and a known upload speed right around 370 kbps. In the test environment, the cable network amazingly provides virtually 100% consistent bandwidth all the time, which is very unusual for a broadband cable system, but which is great for running benchmarks. This speed was validated by downloading and uploading large files. 51,726,024 bytes were downloaded in 97,786 milliseconds (4,231,800 bps) and 8,626,342 bytes were uploaded in 186.36 seconds (370,310 bps).
Source: http://www.myspeed.com/support/benchmarks.html
World Class Internet Services: http://www.paragonhost.com
Business Class VOIP Services: http://www.telxvoip.com
What is Quaility of Service (QOS) Why do we need it? November 23, 2006
Posted by paragonhost in VOIP.add a comment
Why is Quality of Service (QOS) a crucially important metric for business applications?
| A tale of two airlines |
Consider for a moment two competing cargo airlines (A and B) operating out of Washington Dulles airport with service to London. Both airlines have the same aircraft, both airlines charge the same rate per package shipped and both airlines offer seven flights a week. On the surface it appears that there is very little to differentiate the service offered by these two companies. It would also be fair to say that, on paper at least, these competing airlines offer the same throughput capacity in terms of packages shipped per week.
Now consider that airline A offers one flight per day for each day of the week whereas the airline B offers all of its seven flights on a single day of the week. So while both airlines provide the same throughput capacity over the weekly period, they differ greatly in the actual service provided.
Depending on your delivery needs these different airline service models will succeed or fail in quite dramatic fashion. If your business is an online real-time mail order business, choosing airline B would mean that your customers would be unlikely to get next day delivery and at worst would have to wait an entire week for their order to be shipped. In contrast, by choosing airline A with its daily service to London you would obviously be able to deliver a much more consistent next day delivery service to your customers, which is often critical for a mail order business to remain competitive.
A different delivery requirement would not necessarily provide the same benefit however. If, for example, your delivery needs were simply to supply stock to your retail outlet in London on a monthly basis you could argue that airline B would offer the better overall service depending on your capacity needs. If the quantity of packages to ship each week exceeded the capacity of a single aircraft, then airline A would take two or more days to ship your goods to London whereas airline B would more than likely be able to accommodate the entire shipment in a single day.
Obviously, the business requirements for delivery define which service model works best. Real-time (daily) demand needs a very regular and consistent service whereas irregular (weekly) batch demand does not.
| QOS and ISPs |
Now consider two competing Internet Service Providers (ISPs A and B) offering, what on the surface seems to be, the identical broadband services of 3 Mbit per second. However, ISP A delivers a consistent throughput of 3 Mbps for each and every second, whereas ISP B offers an inconsistent throughput of 5 Mbps in the first second, 1 Mbps in the second, 3 Mbps in the third, 4 Mbps in the fourth and 2 Mbps in the fifth, as depicted in the graphs below.
![]()
Fig. 1. While both ISPs average 3 Mbps, ISP A provides a consistent
throughput of 3 Mbps, while ISP B provides fluctuating throughput.
Over a full five second period both ISPs have delivered 15 Mbps of data (average of 3 Mbps), but which ISP is offering the better Internet service overall? The answer to that question is identical in concept to the airline answer: It depends entirely on the business application.
If your Internet usage is simply browsing websites and downloading files then you are unlikely to notice much difference in the services offered by these two competing ISPs. It could be argued that ISP B would provide a better browsing service as more data can transfer in the first second making web page retrieval a little quicker. However if, as many businesses do, you run applications that are geared to a real-time environment such as multimedia applications, video, online conferencing and VoIP telephony, then the consistent service offered by ISP A will deliver a dramatically better quality of service than the fluctuating service offered by ISP B.
So while these two ISPs may provide similar throughput, they have entirely different Quality of Service (QOS) models, with QOS being defined as:
minimum speed
————————————— = Quality of Service
maximum speed
In Fig. 1 above, the QOS for provider A is 100% (5/5), whereas the QOS for provider B is 20% (1/5).
The end result is that you are more likely to get ‘jerky’ video and sound breaks using ISP B than with ISP A even though both ISPs, on paper, offer 3 Mbps service.
| Q. Should you be concerned about the QOS of your networks? |
A. Absolutely
Obviously there are many different types of applications that run over the Internet, especially when it comes to business B2B type applications. In addition to the multimedia type applications, there are many other very QOS-sensitive applications that are commonly used across the Internet. These applications will deliver a very poor customer experience when operated on networks that have a poor QOS rating. As an example, Citrix (delivers the Windows desktop environment), a business application framework widely-used across the Internet and corporate extranets, is sensitive to changing latencies and as a result can easily disconnect when run on networks with a poor QOS rating.
Finally, understanding the QOS needs of an application and the QOS provided by the ISP is a crucial step in delivering a good overall customer experience. Understanding the QOS requires accurate measurement and reporting of throughput over time, along with a periodic review of the application requirements vs. the actual service provided
Source: http://www.myspeed.com/support/qos_matters.html
Content Powered By: ParagonHost, LLC http://www.paragonhost.com
Voip Services Powered By: TelxVoip http://www.telxvoip.com
MySpeed PC - Internet Speed Test Program November 23, 2006
Posted by paragonhost in VOIP.add a comment
ParagonHost: http://www.paragonhost.com/intro.html
“World Class Internet Services”
TelxVoip: http://www.telxvoip.com
“Total VOIP Solutions for your Business”
MySpeed PC is a downloadable speed test program that accurately measures your Internet connection bandwidth, and provides an easy to understand report of your download and upload speeds and connection quality.
FREE for personal use!
![]()
For additional speed test features see MySpeed PC Advanced. For information on hosting MySpeed on your website see the MySpeed Server and MySpeed Server Professional options.
KEY FEATURES:
|
|
MySpeed PC Advanced
Download a FREE trial of MySpeed PC Advanced Edition! |
HowTo: install cPanel on a Linux O/S server November 16, 2006
Posted by paragonhost in cPanel.2 comments
Installing cPanel on a linux box is as simple as:
cd /home
wget layer1.cpanel.net/latest
sh latest
After you install cPanel you may want to visit http://www.webhostgear.com and search for the cPanel newbee user guide
Have Fun!
Source: http://www.TouchSupport.com
Content Powered by: http://www.ParagonHost.com
HowTo: CentOS Install for a cPanel Web Server November 14, 2006
Posted by paragonhost in cPanel.5 comments
This is a basic installation tutorial for the CentOS operating system for dedicated server duties ! ![]()
CentOS is a free whitelabel distro of RedHat Enterprise with all the bells and wistles, and is the OS of choice for many web hosting companies
Installing the OS using ‘Text Mode’ :
1 - Insert the first Linux installation CD-ROM (disc 1) in the CD-ROM drive of your server and restart the server.
2 - At the boot: prompt, type text and press the Enter key. This starts the installation process.
3 - On the Language Selection screen, select English as the language that you want to run the installation program in, then click OK.
4 - On the Keyboard Selection screen, select the keyboard attached to your server, then click OK.
5 - On the Mouse Selection screen, select the mouse attached to your server, then click OK.
6 - On the Welcome screen, review the installation information, then click OK.
7 - On the Installation Type screen, select Custom, then click OK.
8 - On the Disk Partitioning Setup screen, select Disk Druid. Quote:
- If your disk has existing partitions, select each partition and click Delete.
9 - Create the following disk partitions: Quote:
The following partitions are recommended prior to installing cPanel:
**1 GB /
*50 MB /boot (No seperate /boot for FreeBSD)
**1 GB /tmp
*10 GB /usr
**7 GB /var
**1 GB swap (swap should be 2x RAM)
Remaining space to /home Note: The above partitioning scheme is assuming a 40 GB hard drive. If you have a larger hard drive, you should increment /usr & /var accordingly. To create the / partition ‘root’: Quote:
* On the Partitioning screen (see step 8 ) , click New.
* In the Mount Point field, type / .
* For the Filesystem type select ext3.
* In the Size (MB) field, type 1024, then click OK. To create the /boot partition: Quote:
* On the Partitioning screen (see step 8 ) , click New.
* In the Mount Point field, type /boot.
* For the Filesystem type select ext3.
* In the Size (MB) field, type 50, then click OK. To create the /tmp partition : Quote:
* On the Partitioning screen (see step 8 ) , click New.
* In the Mount Point field, type /tmp .
* For the Filesystem type select ext3.
* In the Size (MB) field, type 1024, then click OK. To create the /usr partition : Quote:
* On the Partitioning screen (see step 8 ) , click New.
* In the Mount Point field, type /usr .
* For the Filesystem type select ext3.
* In the Size (MB) field, type 10240, then click OK. To create the /var partition : Quote:
* On the Partitioning screen (see step 8 ) , click New.
* In the Mount Point field, type /var .
* For the Filesystem type select ext3.
* In the Size (MB) field, type 7168, then click OK. To create the swap partition: Quote:
* On the Partitioning screen (see step , click New.
* For the Filesystem type field, select swap.
* In the Size (MB) field, enter a number that is twice the current RAM (1024 If you are using 512 MB Ram), then click OK. To create the /home partition: Quote:
* On the Partitioning screen (see step , click New.
* In the Mount Point field, type /home.
* For the Filesystem type select ext3.
* In the Size (MB) field, select Fill all available space, then click OK.
10 - When finished, Click OK.
11 - On the Boot Loader Configuration screen, select LILO Boot Loader, then click OK.
12 - On each of the following three screens, click OK.
13 - On the Network Configuration screen, clear Use bootp/dhcp, enter your server network configuration, then click OK.
14 - On the Hostname Configuration screen, enter the fully qualified host name of your server, then click OK.
15 - On the Firewall Configuration screen, select No firewall, then click OK.
16 - On the Language Support screen, select English (USA), then click OK.
17 - On the Time Zone Selection screen, select the location, then click OK.
18 - On the Root Password screen, enter in the root password for your server, re-enter the password to confirm it, then click OK.
19 - If you want to create an account that you can use to remotely log on to your server using SSH or FTP, click Add.
*** Provide the login name and password, then click OK.
20 - Review the information on the User Account Setup screen, then click OK.
21 - Review the information on the Authentication Configuration screen, then click OK.
22 - On the Package Group Selection screen, verify that only the following packages are selected. Clear all other check boxes.
Quote:
. Network Support
. Messaging and Web Tools
. DNS Name Server
. Network Managed Workstation
. Software Development
23 - Click OK.
24 - Review the Installation to begin screen, then click OK.
25 - Insert the second/third installation CD-ROM when notified to, then click OK.
26 - To create a boot disk, click Yes. Otherwise, click No.
27 - When done, the installation complete screen displays.
28 - Click OK, then press Enter to restart.
[2] Checking the host name and network settings :
After your first boot, you must check your system’s host name and network configuration to ensure that they are correct. To check your system’s host name and network configuration:
- Log on to the system as the root user.
- Type vi /etc/hosts to open the host file and modify the contents.
- Verify that the file is in the following format:
- Verify that the loopback entry (127.0.0.1) appears in the file. A correctly configured file should look like this: Note : The IP addresses used here are for illustration purposes only; they are not valid values.
Quote:
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost
10.1.1.1 myhost.mydomain.com myhost - Modify the file as needed.
- Type :wq to close the file.
- Type vi /etc/sysconfig/network to open the network sysconfig file and modify the contents.
- Verify the host name. A correctly configured file should look like this: Note : The IP addresses used here are for illustration purposes only; they are not valid values.
Quote:
NETWORKING=yes
HOSTNAME=myserver.mydomain.com
GATEWAY=10.100.0.1 - Modify the file as needed.
- Type :wq to close the file.
- Type vi /etc/sysconfig/network-scripts/ifcfg-eth0 to open the network scripts file and modify the contents.
- Verify that network information. A correctly configured file should look like this: Note : The IP addresses used here are for illustration purposes only; they are not valid values.
Quote:
DEVICE=eth0
BOOTPROTO=static
BROADCAST=10.1.1.1
IPADDR=10.1.1.1
NETMASK=255.255.0.0
NETWORK=10.1.0.0
ONBOOT=yes - Modify the file as needed.
- To make these changes active, restart the system by typing:
Quote:
shutdown -r now [3]cPanel Installation Instructions:
Quote:
Important : You must have a valid cPanel license. If you do not have a valid cPanel license, please contact one of cPanel distributors listed at http://www.cpanel.net/dist.htm or buy a license directly from cPanel at http://www.cpanel.net/store/. cPanel now uses a universal install script which can be found at http://layer1.cpanel.net/. You can use the following commands in the root shell to download and start the installation script:
Quote:
mkdir /home/cpins
cd /home/cpins
wget http://layer1.cpanel.net/latest
sh latest At this point the installation has started and may take anywhere from 30 - 60 minutes to complete. At no point during the installation should you be prompted for user input. You will know the cPanel installation has been completed by the screen output coming to a stop & the statement “Done.” is printed on your screen. You should then hit “ctrl c”† to continue. Note: You must be on a stable connection to install cPanel. If your shell session disconnects during a cPanel install the cPanel installation will be aborted. You can restart the cPanel installation by completing “sh cpanel-*”† again, however it is recommended that you reformat your machine & start over to ensure a clean slate before placing the machine into production.
[4]cPanel/WHM Configuration: Following a successful install you should setup cPanel/WHM as soon as possible. In order to complete this process you will need to log into your machine using its main (eth0/fxp0) IP address; you should input something similar to this into your browser:
Quote:
https://xxx.xxx.xxx.xxx:2087 Note: you should replace xxx.xxx.xxx.xxx with your actual IP address. Further to that, you will be prompted about a self signed SSL certificate; ignore this by clicking on “Yes”. A self signed certificate is generated by cPanel/WHM to ensure a secure/encrypted communication with your server. You will now be prompted with a few questions related to how you would like your installation of cPanel/WHM customized. You can walk through the wizard by clicking on “Next Step” or if you are an experienced user feel free to click on “Finish” to skip to the end. For a complete user guide on how to access cPanel/WHM and/or use any of the functions within cPanel/WHM, please visit cPanel do*****ents section at http://www.cpanel.net/docs.htm That’s all for now .. Just keep in mind, this is not the all-in-one package for server installaion, you’ll have to secure the server, update your kernel, install a firewall, configure SSH, apply patches …. etc,etc,etc,etc Zzzzzzzzzzz This was just to illustrate the BASIC steps to get you online.
PHVendor-ABMX November 13, 2006
Posted by paragonhost in Uncategorized.add a comment
*** ABMX
- http://www.abmx.com
RackMount Hardware Vendor
- About
ABMX.com is the specialized server division of ONLY, Inc., corporation headquartered in Orange County, the heart of California’s Technology Coast. Founded in 1994, our company is committed to building quality into its products and services. We are dedicated to developing and using advanced technologies to better service our customers. We are committed to being the trusted source for all of the OEM, VAR, Reseller and Integrator’s foundational system housing requirements. Our mission is to provide exceptional research, design, development and expertise in support of our products and customers. Authorized reseller for a number of brand name computer products, we work with world-renowned computer manufacturers and pass their technologies to our customers to help them maintain their competitive edge. Our customers include Fortune 500 companies, Federal, state and local government offices, educational institutions as well as avid computer enthusiasts. The key to our success, lies in our persistent pursuit of unparallel customer satisfactions and continued mutual beneficial teamwork with our business partners. We strongly believe that the continuation of such an endeavor will for sure enable our business partners and us to achieve further success.
Corporate Address:
ONLY, Inc.
dba ABMX, Aaronix, Pacific Memory Group
1921 Carnegie Ave. #3E
Santa Ana, CA 92705
Phone:
800-711-1788
494-955-1208
Fax:
949-955-1248
- Returns:
To take advantage of this warranty, you must do following:
Contact our tech. support by dialing 949-955-1208
If it is determined that your product requires service, you will be issued an RMA number.
Pack the defective product securely for shipping. Include only the product(s) that are defective.
To ensure prompt service, customer should provide a detailed and specific description of problems for returning the product.
Ship the defective product, the copy of original invoice, and the RMA number to:
ONLY, Inc.
1921 Carnegie Ave. Unit 3E
Santa Ana, CA 92705
Attention RMA#
Make certain that your RMA number is displayed prominently on the outside of the shipping package. We cannot accept returns without an RMA number. This warranty is void if the product is damaged in transit. Please insure your shipment.
Free Web Position Check November 8, 2006
Posted by paragonhost in Internet.add a comment
Check your ranking in Google, Yahoo! and MSN. Free Position Check Top search engine ranking on important keywords is vital for serious traffic. Why pay to check your rankings? Check your search engine position now for free! View and compare your rankings in Google, Yahoo! and MSN all at once. Check your ranking for as many search terms as you want. Easy and free position check tool. Check Your Search Engine Position in Google, Yahoo! & MSN Google, Yahoo! and MSN provide over 80% of all searches across the internet. The key to getting maximum qualified traffic for your website is by having a top ranking in their SERPs (search engine results pages). The higher your ranking – the more free traffic you’ll get! Top Ranking is All About the Right Keyword Phrases and Search Terms Your goal should be to get high rankings on the keyword phrases and search terms that visitors use to find your website. Regularly check your top keywords using our Free Position Check tool to see whether your search engine optimization and search engine submission is successful. Position Check Is FREE! The best part of our Position Check Tool is that it’s free. You can use it as many times as you like and you pay absolutely nothing! It’s one of the many great free services we offer to help your search engine marketing success. Feel free to also try our Submit Free and DIY Meta Tags services.
Source: http://www.ineedhits.com/free-tools/free-position-check.aspx?source=INK06-11-08blog2
Aggregation: ParagonHost, LLC http://www.paragonhost.com
Google’s Minus 30 Penalty November 8, 2006
Posted by paragonhost in Internet.1 comment so far
Talk about a new secret Google penalty is heating up over at Webmaster World forums, with some users complaining of a 30 spot ranking drop in just one day.
The thread starts with a poster upset over a sudden ranking drop,
“I just got my site rank #31 on its own domain name and bunch of keywords/phrases I usually watch were bumped from #1 to “precisely #31. Those #2 through #10 are sort of all over the map but generally within the first 60 results.”
Speculation over the cause of the penalty seems to suggest it comes from ‘black-hat’ or unethical SEO practices. These are methods that attempt to artificially boost your search engine ranking, but do not follow search engine guidelines. From Webmaster World, “I had the same problem few months ago, I believe was an anchor text over optimization. From #1 to exactly #31, still haven’t recovered, but slowly going back”.
The specific ranking drop of 30 points has led many to believe the penalty is automated and built in to Google’s searching algorithm, but, not surprisingly, there has been no comment from Google on this particular issue.
If you’re looking for a SEO solution that won’t get you penalized, why not try out our Optimizer Kit Plus and save 10% for only 4 more days! You can also find more information about which optimization tactics comply and which don’t comply with Google’s Webmaster Guidelines in “Google’s Webmaster Guidelines: Straight from the Horse’s Mouth”.









