Questions tagged [ubuntu-12.04]

Ubuntu 12.04, named "Precise Pangolin" was a Long Term Support (LTS) release of Ubuntu Linux that has reached End of Life in April 2017. Extended maintenance stopped in April 2019.

Ubuntu 12.04, named "Precise Pangolin" is a former 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 2012).

1024 questions
4
votes
2 answers

How do I set nginx's cache files to file permissions 777?

I'm trying to write a process that invalidates the cache on nginx (and doesn't re-warm the cache). By default, nginx has 700 on its cache files. The closest setting that I could find was: proxy_store_access user:rw group:rw all:r; However, that…
Homer6
  • 221
  • 2
  • 7
4
votes
1 answer

Why does name resolution not work on the server itself?

I have got an Ubuntu Linux 12.04.1 server which as one service runs bind9 for name resolution for a xxx.local domain which forwards all other requests to the name servers of my Internet provider. This works fine for all clients in the network…
dummzeuch
  • 607
  • 1
  • 9
  • 20
4
votes
2 answers

What is the effect of adding a user on a MySQL slave?

This is on a Ubuntu 12.04 server running MySQL 5.5 which is slaved to an OS X server running MySQL 5.1 Logrotate has been sending error: error running shared postrotate script for '/var/log/mysql.log /var/log/mysql /mysql.log…
Ironlenny
  • 203
  • 1
  • 3
  • 8
4
votes
2 answers

Ubuntu 12.04 logger won't write to remote syslog

I'm trying to use logger to send events to a remote syslog server. The syslog server is Ubuntu 12.04 running the default rsyslogd. The "client" servers are both Ubuntu 12.04 and SLES11SP1. On SLES11, I can send events to the syslog server…
4
votes
2 answers

ipv6 multiple addresses and firewall on remote machine

I have an ubuntu server (serverA) which has a couple of IPv6 addresses. One of these is based on it's MAC address, and is known to the network, the other one I presume ubuntu created as a 'private' address which hides the MAC address. I have…
askvictor
  • 854
  • 3
  • 15
  • 29
4
votes
1 answer

I can't connect to VNC Server (connection refused : error 10061).

I purchased a vps and configured it by using this tutorial (means installed GENOM desktop and VNC server): http://www.time4vps.eu/knowledgebase.php?action=displayarticle&id=41 Then I installed tiger VNC viewer and Real VNC Viewer plus. I tried to…
user58859
  • 518
  • 3
  • 8
  • 17
4
votes
2 answers

How to make Chef-Server use Ruby 1.9 on Ubuntu?

I've installed Chef Server on Ubuntu 12.04 using the official instructions, which uses the "omnibus installer" that has embedded ruby 1.8.7. I'm trying to install knife-windows, but when I run gem install knife-windows I get this error: ERROR: …
Eric Lathrop
  • 673
  • 1
  • 5
  • 9
4
votes
1 answer

GlusterFS Mount Keeps Disconnecting Randomly

We are using GlusterFS to provide a distributed file system on 2 web servers which use a shared media directory and cache. So i have created 2 gluster volumes (media and var) and have mounted these in /var/www/site/media and /var/www/site/var/. Each…
4
votes
1 answer

libcurl Reporting Different Version Between Commands

I previously had cURL 7.22.0 on Ubuntu 12.04 Server.. but I now need to upgrade to cURL 7.30.0. I've done the following to compile this version for Ubuntu: wget http://curl.haxx.se/download/curl-7.30.0.tar.gz tar -xvzf curl-7.30.0.tar.gz cd…
BT643
  • 551
  • 3
  • 9
  • 21
4
votes
1 answer

Cannot find network subsystem in cgroup on Ubuntu 12.04 LTS

I'm trying to use cgroups to limit a process's network bandwidth, as described in this answer. However, I am unable to find the "files" they refer to. I am using Ubuntu 12.04 LTS with cgroup-bin installed. cgroups are automatically mounted under…
user1202136
  • 143
  • 1
  • 5
4
votes
2 answers

Error 2013: Lost connection to MySQL server during query when executing CHECK TABLE FOR UPGRADE

I just upgraded Ubuntu from 11.10 to 12.04. My rails app now returns the (passenger) error "Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (111) (Mysql2::Error)". I get a similar error when I try to access mysql at…
Dean Richardson
  • 91
  • 1
  • 1
  • 4
4
votes
1 answer

I need to monitor a log file with monit if the file does not change monit will alert

I need help. I was looking in to Monit documentation and I need help. I could not find my answer there. I need to monitor a log file of a service, if that log file stops to increase in size or even better something in the log file stops coming in…
cr0c
  • 958
  • 4
  • 16
  • 35
4
votes
2 answers

Why Kernel Shared Memory is 0 on Ubuntu 12.04?

Can any one explain to me why KSM is not working does that mean that currently my kernel is not utilizing KSM for less ram utilization. grep KSM /boot/config-3.2.0-23-generic CONFIG_KSM=y cat /sys/kernel/mm/ksm/pages_shared 0 cat…
Kevin Parker
  • 757
  • 1
  • 13
  • 32
4
votes
1 answer

Port 80 redirect does not work for localhost

I want to run a simple python webserver on my ubuntu linode with the following command (it simply puts the current dir up on the port specified) python -m SimpleHTTPServer 8080 I am using port 8080 to avoid using sudo to run on port 80 To make it…
gws
  • 145
  • 1
  • 4
4
votes
2 answers

How to configure SSL for CouchDB

How do I configure Couchdb to use ssl, I've followed the instructions here with no success. I generate my own self-signed certificate: mkdir cert && cd cert openssl genrsa > privkey.pem openssl req -new -x509 -key privkey.pem -out mycert.pem -days…
Martinffx
  • 277
  • 3
  • 5