Questions tagged [vps]

VPS stands for Virtual Private Server and usually refers to a single instance of a virtual machine leased for private running on a shared physical machine.

VPS stands for Virtual Private Server and usually refers to a one instance of a virtual operating system leased for private use on a shared physical machine. The physical machine typically runs a hypervisor which allows multiple of these ("virtual" or "guest") operating systems to share the same physical server.

A VPS runs its own copy of an operating system, and customers have superuser-level access to that operating system instance, so they can install almost any software that runs on that OS. For many purposes they are functionally equivalent to a dedicated physical server, and being software-defined, are able to be much more easily created and configured. They are priced much lower than an equivalent physical server, but as they share the underlying physical hardware with other VPSs, performance may be lower, and may depend on the workload of other instances on the same hardware node.

2257 questions
13
votes
2 answers

SMTP AUTH extension not supported by server in python 2.4

This is my normal code in my VPS hosting which provide python 2.4 def mail(receiver,Message): import smtplib try: s=smtplib.SMTP() s.connect("smtp.gmail.com",465) s.login("email@gmail.com", "password") …
Hamoudaq
  • 1,490
  • 4
  • 23
  • 42
12
votes
3 answers

Java seems to ignore -Xms and -Xmx options

I'd like to run a very simple bot written in java on my VPS. I want to limit jvm memory to let's say 10MB (I doubt it would need any more). I'm running the bot with the following command: java -Xms5M -Xmx10M -server -jar IrcBot.jar…
Itako
  • 2,049
  • 3
  • 16
  • 19
12
votes
3 answers

Deploy nodejs app to bluehost

I have a VPS in bluehost, I installed node and npm through SSH and I've managed to run a node app in www.mywebsite.com:3000, so I have two questions: 1) How do I run the app.js so when it 'listens' to www.mywebsite.com ? I mean when I go to…
LuisEgan
  • 952
  • 2
  • 13
  • 28
12
votes
6 answers

Django: vps or shared hosting?

I am new to web development and everything involved with it. Im finishing my website in django and i will soon have to find a hosting and deploy it. I heard there are vps or shared hosting types. So here are the questions: 1. How many visits/clicks…
barin
  • 4,481
  • 6
  • 28
  • 29
11
votes
2 answers

Custom 404 shows "File not found" for php files instead of redirecting

I'm trying to create a custom 404 error page. What I have so far works very well with all unexisting documents, folders, images, htmls, etc. - opens my custom 404 page (with output Custom 404!) However, when I try to access a file with a .php…
Biker John
  • 2,621
  • 10
  • 33
  • 52
11
votes
9 answers

Running my own server with a "developers background"?

I have a couple of different projects running for the moment - some PHP apps and a few WordPress instances, which all currently are kept at a web hosting company. The contract period time is about to end and I would lie if I wouldn't say that I…
Industrial
  • 41,400
  • 69
  • 194
  • 289
11
votes
1 answer

Are there any "gotchas" in deploying a Cassandra cluster to a set of Linode VPS instances?

I am learning about the Apache Cassandra database [sic]. Does anyone have any good/bad experiences with deploying Cassandra to less than dedicated hardware like the offerings of Linode or Slicehost? I think Cassandra would be a great way to scale…
z8000
  • 3,715
  • 3
  • 29
  • 37
11
votes
2 answers

Lowest Spec VPS to run Ruby on Rails

I want to get started with my first Ruby on Rails application. It will pull an image, and some text about the image display both, and have a small box to write some text about the image, which will then be written to a database once submitted. It's…
Joseph
  • 914
  • 2
  • 14
  • 29
10
votes
6 answers

Remote Postgresql - extremely slow

I have setup PostgreSQL on a VPS I own - the software that accesses the database is a program called PokerTracker. PokerTracker logs all your hands and statistics whilst playing online poker. I wanted this accessible from several different…
Ricky
  • 7,785
  • 2
  • 34
  • 46
10
votes
5 answers

Wordpress issue: after migration only homepage works

A few days ago I tried transferring my wordpress website from shared hosting to vps but I've run into a problem. After following many guides/tutorials and googling myself I can't figure out why it's not working. The homepage is the only page that…
Forrestgump360
  • 101
  • 1
  • 1
  • 3
10
votes
2 answers

pip install require tls/ssl

I have got a problem with install python on my OVH vps server kubuntu 14.04 desktop. What i need to do ? :~/Desktop# python get-pip.py pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available. …
Piotr
  • 175
  • 1
  • 2
  • 11
10
votes
1 answer

How to LogIn as root in Google Cloud Compute Engine?

I don't know why Internet giant Google has no instant chat support or ticketing support system for their services. I have created a new instance under Google cloud compute engine with linux centos-6. Now i want to log into system via SSH with full…
10
votes
1 answer

Laravel 5 not getting any error logs

I installed Laravel 5 on a new VPS, I was running everything fine but I noticed I wasn't getting any Laravel errors the system would only fire a server 500 error at me which is no help when debugging my code. When I looked in the laravel…
archvist
  • 712
  • 2
  • 18
  • 41
10
votes
4 answers

Using wget to download a ZIP file

I'm having trouble using wget for my Debian 7.0 VPS server hosted by OVH. I'm trying to download a ZIP file from MediaFire, and when I connected via SSH I typed, wget…
Logan Butler
  • 159
  • 1
  • 2
  • 9
10
votes
2 answers

Multiple Domains on a VPS with Apache

I am planning on getting a VPS soon and have two sites I want to host. I have my local vhosts setup for my development environment using host file to port it correctly. My question is hopefully simple: When setting up with two separate domains that…
Jim
  • 18,673
  • 5
  • 49
  • 65