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
10
votes
3 answers

nginx/apache redirection for output port on docker container on vps

I'm a linux noob in admin of docker container using apache or nginx on VPS. I use an OVH classic Vps (4go ram, 25Go SSD) with already installed image of ubuntu 15.04 + docker. Install of docker container is really easy, and in my case i install…
reyman64
  • 523
  • 4
  • 34
  • 73
10
votes
9 answers

Oracle XE Database Configuration failed

I am trying to create an oracle xe database in my vps. VPS OS : Cent OS. When try to run /etc/init.d/oracle-xe configure it throws an error Database confiration failed and to check the logs but logs just shows ORA-01034: ORACLE not…
anandaravindan
  • 2,401
  • 6
  • 25
  • 35
9
votes
2 answers

MySQL slots under PHP / PDO

I'm evaluating a migration to pdo on some hosts (VPS) but it seems to come at a price of more memory required. Q: in php.ini, there's a setting: pdo_mysql.cache_size = 2000 I can't find much information about it, it refers to mysql-slots, whats the…
Teson
  • 6,644
  • 8
  • 46
  • 69
9
votes
1 answer

Confused about X Window and GNOME/KDE

HI! I am trying to set up FreeNX (one Remote X desktop software) on my VPS (CentOS 5.5). I have googled and found several different tutorials. One tutorial says: yum groupinstall “X Window System” yum groupinstall “GNOME Desktop…
DocWiki
  • 3,488
  • 10
  • 39
  • 49
9
votes
9 answers

Chef server error on create user (/etc/opscode/pivotal.rb does not exist)

I am extremely new to chef and I am attempting to create a chef server running on a Digital Ocean Ubuntu 14.04 droplet. I am using this guide for the install. I download the .deb and installed it fine. I then run chef-server-ctl reconfigure which…
0C3D
  • 348
  • 3
  • 11
9
votes
2 answers

How do I block someone else's domain pointing to my Apache hosted website?

Hi I am running my website in Linux VPS with dedicated IP few weeks ago I found someone else domain is pointing to my website Ex :: mydomain.com === server my site content otherdomain.com === also server my site content If I update…
user3928459
  • 105
  • 2
  • 8
9
votes
1 answer

What exactly entails setting up a PHP Websocket Server?

I'm getting into Web Sockets now and have been successfully using the online websockets Pusher(didn't like it) and Scribble(amazing but downtime is too frequent since it's just one person running it). I've followed this tutorial…
Adarsh Sinha
  • 93
  • 1
  • 3
8
votes
4 answers

Can I/O latency cause a simple UPDATE to take seconds in MySQL?

My MySQL application is experiencing slow performance when running some UPDATE, INSERT and DELETE queries. In this question, I will only discuss one particular UPDATE, because it's enough to demonstrate the problem: UPDATE projects SET ring = 5…
Adiel Mittmann
  • 1,764
  • 9
  • 12
8
votes
1 answer

Gitlab Fingerprint has already been taken, Deploy keys projects deploy key fingerprint has already been taken

I want to deploy two projects in the same VPS.i've successfully deployed one project and added Deploy keys to the GitLab repository.but when I try to add the same ssh key to my other repositories Deploy keys it says, Fingerprint has already been…
Ruhith Udakara
  • 2,236
  • 1
  • 18
  • 24
8
votes
2 answers

a2enmod command not found in apache server using cpanel in linux vps

after going to /etc/httpd/conf/httpd.conf and even after changing Allow override none -> Allow override All , and then restarting the server using service httpd restart and then i type the command a2enmod proxy then i get an error : bash-…
roh_dev
  • 275
  • 2
  • 6
  • 17
7
votes
4 answers

Best practice - load a lot of stuff in the application_start?

I have a webshop with a lot of products and other content. Currently I load all content in to a global list at Application_Start, which takes aprox 15-25 seconds. This makes the the site really fast, as I can get any product/content in O(1)…
Lars Holdgaard
  • 9,496
  • 26
  • 102
  • 182
7
votes
1 answer

Are Bitnami Stacks Efficient?

I currently have a server running Cherokee, but I've had many issues with my software wanting particular technology from other servers (mostly Apache) and I was thinking of switching to Bitnami stacks since I have some diverse software (Wordpress,…
Garrett
  • 457
  • 2
  • 4
  • 19
7
votes
2 answers

Heroku vs VPS pricing

I'll be building a rails app that will basically serve user-uploaded files (not a lot, say max 1MB per client) to several facebook apps(iframes). I'm not sure what route I should take. Right now I'm considering heroku + amazon S3 as opposed to a…
Carvefx
  • 448
  • 1
  • 5
  • 18
7
votes
3 answers

Why is swap not good when using a SSD?

On Digitalocean I came up with this message when I want to add swap: Although swap is generally recommended for systems utilizing traditional spinning hard drives, using swap with SSDs can cause issues with hardware degradation over time. Due to…
yoano
  • 1,466
  • 2
  • 16
  • 20
7
votes
1 answer

scp is giving timeout errors although ssh works fine

I have a Digital Ocean droplet that I can ssh into just fine. This is how I work on the server. The other day I went to use scp and was given the following error; scp -r host@my_ip:/path/to/file . ssh: connect to host my_ip port 22: Connection…