Sign up for HP Cloud Services Beta - FREE crunching power

Page 2 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.

theAnimal

Diamond Member
Mar 18, 2003
3,828
23
76
I got an invite. I setup my servers online but there is not an option to enable a public IP. How am I supposed to connect to this thing?

Click on manage servers, it will show your running instances and they should each have private and public IP. If yours do not then I'd say click on each instance and select terminate, then set up new servers.

The guide I linked at evga was what I used and was very easy to follow.
 

somethingsketchy

Golden Member
Nov 25, 2008
1,019
0
71
I've submitted an application to join the beta. Will attempt to get BOINC running and see how the 10 compute instances will work out. Since I can't spend a lot of money on electric in my home state (and can't really add more hardware in an aging electrical system), might as well give Cloud Computing a shot.

EDIT: Realized it was 10 compute instances, not 20 >.<
 

blckgrffn

Diamond Member
May 1, 2003
9,198
3,185
136
www.teamjuchems.com
I was only allowed AZ1 and only allowed 20GB of RAM, so two large instances is eating up my RAM allocation. I wish I could specify more CPU & less RAM...

"Please be aware that we are asking all private beta customers to:

1. Please only create instances in AZ1

2. Limit your HP Cloud Compute usage to 20GB of RAM total for all instances within an availability zone

3. Limit HP Cloud Object Storage usage to 2TB of total data across the account

4. Only use the private beta for testing purposes. No production workloads should be hosted on the system at this time"

Ha, evidently not all
 
Last edited:

somethingsketchy

Golden Member
Nov 25, 2008
1,019
0
71
Looks like I have something very basic running for BOINC under a 4 vCPU, 16GB RAM VM. The only thing that I'm disappointed with at the moment, is the VM does not appear to upload an updated Total Credit/RAC amount promptly.

Only after I issue an update command via commandline, do you get an update. Currently running a test with Correlizer and see if it's worth the effort.
 

Peter Trend

Senior member
Jan 8, 2009
405
1
0
I'm in! Just finished installing four large instances (4 cores, 8GB RAM, 240GB HDD) and four small instances (2 cores, 2GB RAM, 60GB HDD) , which hits the RAM limit of 20GB per availability. They let me have two availabilities, AZ1 and AZ2, so I must have just gotten lucky before they restricted it further. I'm sticking to Lucid - I tried a couple of instances in Oneiric but it wasn't behaving so I scrapped it. It seems a shame that we can't clone instances, or upload our own VM images...they really ought to add that feature before they start charging for it!

What are you guys using for the SSH connection? I'm using PuTTY in Win7, it seems to work well so far
HFM.NET works now, I'm getting anything from 1100-3800 PPD with the small instances, and 6700-11000 PPD with the large instances. Not even close to 100k total.
 
Last edited:

somethingsketchy

Golden Member
Nov 25, 2008
1,019
0
71
What are you guys using for the SSH connection? I'm using PuTTY in Win7, it seems to work well so far

I used PuTTY for the initial work, then I switched to Poderosa (an SSH terminal with tabs). So far it's alright, though I had to restrict the refresh rate for top (top -d 5.0) so viewing top didn't add any more load.
 

blckgrffn

Diamond Member
May 1, 2003
9,198
3,185
136
www.teamjuchems.com
Any directions for getting BOINC up and running at the command line? If so, I would very much appreciate a link. Thanks in advance!

I can run a couple more 2vCPU instances and I figured that's a better fit for BOINC...
 

somethingsketchy

Golden Member
Nov 25, 2008
1,019
0
71
I'll try and write something up tonight using the history log from the VM and a troubleshooting guide I found for setting up BOINC on a *nix command line.
 

somethingsketchy

Golden Member
Nov 25, 2008
1,019
0
71
Here is the "guide" from the history log as promised. Using Correlizer as an example, with lines directly from my history log, minus the Account Key.

NOTE: the line that references an Account Key, is your key from the "Your Account" page, in its respective project. In this case Correlizer uses a 32 character key (letters and numbers).

Source: http://wiki.debian.org/BOINC/Troubleshooting

Code:
sudo apt-get install boinc-client boinc-manager
boinccmd --project_attach <URL of project> <Account Key>
boinccmd --project <URL> update
boinccmd --set_run_mode always
boinccmd --set_network_mode always
boinccmd --project <URL> resume
boinccmd --get_state

EXAMPLE: Correlizer

Code:
sudo apt-get install boinc-client boinc-manager
boinccmd --project_attach http://svahesrv2.bioquant.uni-heidelberg.de/correlizer/home.php [ABCDEFGHIJKLMNOPQRSTUVWXYZ123456]
boinccmd --project http://svahesrv2.bioquant.uni-heidelberg.de/correlizer/home.php update
boinccmd --set_run_mode always
boinccmd --set_network_mode always
boinccmd --project http://svahesrv2.bioquant.uni-heidelberg.de/correlizer/home.php resume
boinccmd --get_state

SECONDARY NOTE: the BOINC/Troubleshooting page had reference boinccmd as boinc_cmd. I was not successful in getting this to work in my HPCS VM. It will only accept boinccmd. However for the most part the rest of the troubleshooting page is cut and dry.

http://boinc.berkeley.edu/wiki/Boinccmd_tool - this is the list of the other variables you can issue within the BOINC client manager.
 
Last edited:

thecoolnessrune

Diamond Member
Jun 8, 2005
9,673
580
126
I've just got my instances wroking things out to test and one of the things I notice it that I only seem to be maxing out 1 core (I never seem to break past 1.15 max load). Don't really know why its not setting up another WU (I run BOINC purely for help rather than points so the client has tons of projects to pull WU from).
 

somethingsketchy

Golden Member
Nov 25, 2008
1,019
0
71
Check the "Computer Preferences" in your account page and then check to see what the value is for "On multiprocessors, use at most" line (10th option down from the top). That is what will limit your thread/core count for multi-core/multi-thread CPUs.
 

blckgrffn

Diamond Member
May 1, 2003
9,198
3,185
136
www.teamjuchems.com
Here is the "guide" from the history log as promised. Using Correlizer as an example, with lines directly from my history log, minus the Account Key.

NOTE: the line that references an Account Key, is your key from the "Your Account" page, in its respective project. In this case Correlizer uses a 32 character key (letters and numbers).

Source: http://wiki.debian.org/BOINC/Troubleshooting

Code:
sudo apt-get install boinc-client boinc-manager
boinccmd --project_attach <URL of project> <Account Key>
boinccmd --project <URL> update
boinccmd --set_run_mode always
boinccmd --set_network_mode always
boinccmd --project <URL> resume
boinccmd --get_state

EXAMPLE: Correlizer

Code:
sudo apt-get install boinc-client boinc-manager
boinccmd --project_attach http://svahesrv2.bioquant.uni-heidelberg.de/correlizer/home.php [ABCDEFGHIJKLMNOPQRSTUVWXYZ123456]
boinccmd --project http://svahesrv2.bioquant.uni-heidelberg.de/correlizer/home.php update
boinccmd --set_run_mode always
boinccmd --set_network_mode always
boinccmd --project http://svahesrv2.bioquant.uni-heidelberg.de/correlizer/home.php resume
boinccmd --get_state

SECONDARY NOTE: the BOINC/Troubleshooting page had reference boinccmd as boinc_cmd. I was not successful in getting this to work in my HPCS VM. It will only accept boinccmd. However for the most part the rest of the troubleshooting page is cut and dry.

http://boinc.berkeley.edu/wiki/Boinccmd_tool - this is the list of the other variables you can issue within the BOINC client manager.

:thumbsup:

I'll do my best to put this to work today You're the man! (making a gender assumption there, my apologizes if I am wrong )
 

thecoolnessrune

Diamond Member
Jun 8, 2005
9,673
580
126
Check the "Computer Preferences" in your account page and then check to see what the value is for "On multiprocessors, use at most" line (10th option down from the top). That is what will limit your thread/core count for multi-core/multi-thread CPUs.

Yes, this was the first thing I checked and it's set to 99 processors to ensure its never an issue. I spun up a windows client and joined it to the same account manager and it immediately began using all of its cores.
 

thecoolnessrune

Diamond Member
Jun 8, 2005
9,673
580
126
I took a clip of a putty session to show CPU load.



As you can see, only one core is really doing anything. On top of this, the CPU seems to almost scale linearly only up to 100%. While not in the screenshot there are actually two BOINC processes running at the same time. But most of the time one of them is idle. One CPU will drop to 70% and the other CPU will suddenly load up another 30% on the other process. Again though it only seems like the system is only allowing 1 fully loaded core.

The account manager is set to use up to 99 processor so I don't understand what the limitation is at all.
 

somethingsketchy

Golden Member
Nov 25, 2008
1,019
0
71
In the image that you have linked, the primegrid_cllr_ process is the actual one that will be done on the CPU. The boinc process in your top diagram (PID 32018) will not have any processing power. Just to double check some other settings, what do you have for the the three options under "Computing Preferences"?

On multiprocessors, use at most - 3 processors
On multiprocessors, use at most (enforced...) - 100% of the processors
Can be used to reduce CPU heat - 100% of CPU time
 

thecoolnessrune

Diamond Member
Jun 8, 2005
9,673
580
126
I linked another image here to show that sometimes there are 2 processes, but it only is doing something for maybe a second before it returns to being a process not consuming any cpu power.



Also I attached a image of the profile that the boxes are working off of. Does anything seem off?

 
sale-70-410-exam    | Exam-200-125-pdf    | we-sale-70-410-exam    | hot-sale-70-410-exam    | Latest-exam-700-603-Dumps    | Dumps-98-363-exams-date    | Certs-200-125-date    | Dumps-300-075-exams-date    | hot-sale-book-C8010-726-book    | Hot-Sale-200-310-Exam    | Exam-Description-200-310-dumps?    | hot-sale-book-200-125-book    | Latest-Updated-300-209-Exam    | Dumps-210-260-exams-date    | Download-200-125-Exam-PDF    | Exam-Description-300-101-dumps    | Certs-300-101-date    | Hot-Sale-300-075-Exam    | Latest-exam-200-125-Dumps    | Exam-Description-200-125-dumps    | Latest-Updated-300-075-Exam    | hot-sale-book-210-260-book    | Dumps-200-901-exams-date    | Certs-200-901-date    | Latest-exam-1Z0-062-Dumps    | Hot-Sale-1Z0-062-Exam    | Certs-CSSLP-date    | 100%-Pass-70-383-Exams    | Latest-JN0-360-real-exam-questions    | 100%-Pass-4A0-100-Real-Exam-Questions    | Dumps-300-135-exams-date    | Passed-200-105-Tech-Exams    | Latest-Updated-200-310-Exam    | Download-300-070-Exam-PDF    | Hot-Sale-JN0-360-Exam    | 100%-Pass-JN0-360-Exams    | 100%-Pass-JN0-360-Real-Exam-Questions    | Dumps-JN0-360-exams-date    | Exam-Description-1Z0-876-dumps    | Latest-exam-1Z0-876-Dumps    | Dumps-HPE0-Y53-exams-date    | 2017-Latest-HPE0-Y53-Exam    | 100%-Pass-HPE0-Y53-Real-Exam-Questions    | Pass-4A0-100-Exam    | Latest-4A0-100-Questions    | Dumps-98-365-exams-date    | 2017-Latest-98-365-Exam    | 100%-Pass-VCS-254-Exams    | 2017-Latest-VCS-273-Exam    | Dumps-200-355-exams-date    | 2017-Latest-300-320-Exam    | Pass-300-101-Exam    | 100%-Pass-300-115-Exams    |
http://www.portvapes.co.uk/    | http://www.portvapes.co.uk/    |