Questions tagged [ubuntu-14.04]

Ubuntu 14.04, named "Trusty Tahr" is a Long Term Support release of Ubuntu Linux (released in April 2014). Note that http://askubuntu.com is specifically dedicated to Ubuntu questions.

Ubuntu 14.04, named "Trusty Tahr" is a Long Term Support (LTS) release of Ubuntu Linux. LTS releases receive updates for 5 years and have available paid support from Canonical. The version number comes from the year and month of release (April of 2014).

1173 questions
-1
votes
2 answers

Postgres DB HDD needs expanding

I have an Azure VM running Postgres on Unix, supplied by Bitnami: PostgreSQL 9.6.2-0 (Ubuntu 14.04) The DB works fine and I am populating it, but after some time, the DB reaches about 25GB in size and then my code (populating the DB)…
pookie
  • 151
  • 1
  • 7
-1
votes
1 answer

nslookup returns 192.168.1.1 for www.google.com

I have a machine with 2 network interfaces on it eth0 and eth1. I want to use interface eth0 for internet and eth1 for my intranet communication which is connected to a internal router. The internet connection works fine when only the interface…
-1
votes
1 answer

Strange ModSecurity entries in Apache error log

I recently migrated my VPS to Plesk Onyx v17 (running on Ubuntu 14.04) and, when checked the error logs this morning, I noticed multiple records like this one: [Tue Apr 11 06:26:33.063983 2017] [:error] [pid 3306:tid 140450353870592] [client…
Mike S
  • 1
  • 1
  • 2
-1
votes
2 answers

BIND DNS-server not starting

I've got a VPS running Ubuntu 14.04.5 LTS and Plesk 12.5.30*. I'm trying to setup a master DNS server using the BIND component for Plesk. The problem is that the service doesn't start and there is no error message. When I start BIND using Plesk, I…
FelixSFD
  • 101
  • 5
-1
votes
1 answer

ansible task generating weird syntax for logrotate definition file

I am using ansible logrotate definition for logrotate in ubuntu 14.04 which is having definition as below --- - name: dependencies apt: pkg={{item}} state=latest with_items: - unzip - jq - name: check if already downloaded stat:…
Shailesh Sutar
  • 1,517
  • 5
  • 23
  • 41
-1
votes
1 answer

Connect two VM's in a data center

I asked my hosting provider if I can use internal data traffic over http between two virtual machines I run with the same provider. The short answer was, that this is not possible and the machines can only communicate over their static public ip.…
ulrich
  • 99
  • 1
-1
votes
1 answer

Getting error while installing Varnish Cache

I am using Ubuntu 16.04 LTS on AWS EC2. While installing varnish cache server I am getting following error. Reading package lists... Done Building dependency tree Reading state information... Done Suggested packages: varnish-doc The following NEW…
-1
votes
2 answers

Apache Processes and CPU load oddness

For the last couple of hours I've been trying to battle with my server to keep it up during some pretty minor load (50 concurrent users). Spec: 6 CPUs 12GB RAM During this time, memory usage maxed out at 4GB, so no problems there. However, Apache…
Nick
  • 103
  • 2
-1
votes
1 answer

Nameservers on ubuntu 14.04 server with VestaCP

I have a pretty annoying nameserver problem on this ubuntu server of mine... I tried altering resolv.conf, i tried altering network/interfaces, i tried altering it trough the control panel, i just don't seem to get how to do it... Do you guys know…
-1
votes
1 answer

How can i get rid of “apache2 : Depends: perl but it is not going to be installed” in ubuntu 14.04 desktop?

This is the error message i have at console when running $sudo apt-get install apache2 Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you…
-1
votes
3 answers

Copy a file with SCP on Ubuntu 14 with PEM key on both servers

I have 2 servers on Amazon AWS. I need to pass a file from A to B. Both servers have pem keys (different). I put the pem file of B on A (Is that correct?) Then tried to do from A: scp -i /tmp/B.pem backup.sql.gz…
Noam B.
  • 119
  • 3
  • 7
-1
votes
1 answer

Reason to upgrade ubuntu server 14.04 to 16.04 on low end vps?

Having looked over a bunch of the docs, I have yet to find any compelling reason to upgrade Ubuntu server 14.04 on a low end (512MB digital ocean) droplet. I don't need ZFS, and am not sure why I would want systemd -- and these seem to be the only…
Stephen
  • 143
  • 5
-1
votes
1 answer

What permissions should I give to CA Bundle file?

Hi I setup an ssl certificate using godaddy and read the following article: Best location for SSL certificate and private keys on Ubuntu. I am trying to protect an aws ubuntu gitlab instance that uses nginx as a server. My /etc/ssl/private/ has the…
Gobi Dasu
  • 134
  • 1
  • 6
-1
votes
2 answers

Route only Web Traffic of my Ubuntu machine through OpenVPN proxy

My question is simple, but I couldn't find a clean, step_by_step guide/example on the Internet. I have an OpenVPN proxy server and I want to just route the web traffic of my local Ubuntu machine through it.I know we can route just a specific…
Alex
  • 159
  • 2
  • 9
-1
votes
1 answer

Setup web folder for multiple developers and Apache

I'm trying to setup a web folder on LAMP with Ubuntu 14.04 where : Apache/PHP can read everything inside. (r-x for folders and r-- for files) Multiple users in a "devs" group can do anything inside. (rwx for folders and rw- for files) Newly created…