-
as seen on Server Fault
- Search for 'Server Fault'
I needed to start a new EC2 instance today and decided to try out the new spot instances, where you can reduce your instance cost by bidding on the maximum per-hour price you're prepared to pay. Since today's spot price was only 35c / hour, compared with 85c / hour for an on-demand instance, I was…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I needed to start a new EC2 instance today and decided to try out the new spot instances, where you can reduce your instance cost by bidding on the maximum per-hour price you're prepared to pay. Since today's spot price was only 3.5c / hour, compared with 8.5c / hour for an on-demand instance, I…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
Hi,
I am using cloudera setup to launch a cluster with hadoop on Amazon. Sometimes, the master hadoop node hangs and we have to restart the job from the job. Did anyone face similar problem and resolve the issue.
Thank you.
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
IIS 7.5:
Ftp Firewall Suport: Data Ranges 49152-65535 using external Ip of Amazon EC2 static IP
Ftp IPv4 Restriction: allow: Amazon EC2 static IP
Ftp Authentication: Anonymous: Enabled, Basic: Disabled, IISMgr: Enabled
Ftp Authorization: Allow All Users: Read/Write
Windows Firewall (Inbound):
Open…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I am not a Linux admin, although I wish I was, and I have seen these questions
Amazon EC2 Backup Strategy
Amazon EC2 + EBS:: Regular backup plan?
Simple Backup Strategy for Amazon EC2 instances / volumes?
And this suggestion
http://alestic.com/2009/09/ec2-consistent-snapshot
I tried using…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm pretty new to C++/CLI and I am trying to convert a System::String to a System::Char array.
Here's what I have so far:
private: System::Void modeToolStripMenuItem_Click(System::Object^ sender, System::EventArgs^ e) {
Mode frmMode;
if(frmMode.ShowDialog() == System::Windows::Forms::DialogResult::OK){
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Here is what I'm trying:
typedef cli::array<int> intarray;
int main(){
intarray ^ints = gcnew intarray { 0, 1, 2, 3 };
intarray::Reverse(ints); // C2825, C2039, C3149
return 0;
}
Compilation resulted in the following errors:
.\ints.cpp(46) : error C2825: 'intarray': must…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I had a working subversion server which used the passwd file which stores passwords in clear text. My requirements changed so that passwords now need to be encrypted. I did everything according to the book to use SASL, or so I believe, but now only the linux command line can authenticate. My OSX…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
We have two Coldfusion servers that have a huge performance difference running the exact same code on the exact same input data. The code in questions instantiates a large amount of CFCs (Coldfusion Components, which are similar to objects in OOP languages).
I compared the two servers by running…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi. I'm writing a managed C++/CLI library wrapper for the MySQL embedded server. The mysql C library requires me to call mysql_thread_init() for every thread that will be using it, and mysql_thread_end() for each thread that exits after using it.
Debugging any given VB.Net project I can see at least…
>>> More