LinuxBoss: enable fuse on vps – openvz

enable fuse on vps – openvz1. In order to enable FUSE on VPS you need first confirm the FUSE module is enabled on Hardware node in which the vps is hosted.Commands to enable FUSE on Hardware node ::# modprobe fuseCheck module is loaded properly :# lsmod | grep fusefuse2. Enable FUSE for VPS :# vzctl […]

[Tutorial] Linux: “Fatal: no entropy gathering module detected”

Since friday, I have a VPS server with Debian. I had to upgrade my VPS from Lenny to Squeeze (from stable to testing). Upgrading went right, but I got that Fatal message in the title, when starting up CenterIM and Elinks. Googling it was a pain in the ass, but I’ve found something. That’s why […]

Using IPV6 On OpenVZ Containers | captaingeek.net

Using IPV6 On OpenVZ Containers Posted on June 1, 2009, 12:01 am, by Michael, under How To. Many of you have probably used OpenVZ and got very angry at the fact that out the box, the ipv6 support is there, but difficult, hidden and badly documented. Well one of the most common compliants is that […]

Lord’s Lair » error writing /proc/self/oom_adj: Operation not permitted

error writing /proc/self/oom_adj: Operation not permitted 05.05.10 | G33keries, Tips Si vous rencontrez cette erreur dans vos logs (auth.log) à l’intérieur d’un Container OpenVZ 1 auth.log: leela sshd[17009]: error writing /proc/self/oom_adj: Operation not permitted Voici comment vous « débarasser » de cette erreur Je l’ai rencontré sur la configuration suivante : 1 root@Leela:~# dpkg -l […]

monter dossier d’un hote openvz sur un ve

Sous openvz l’on a besoin par moment de monter un dossier de l’hote sur les vps pour par exemple un dossier de sauvegarde ou de template pour des applications . Dans mon cas avec des ve debian voici la syntaxe que j’ai utilisé, creation d’un fichier /etc/vz/conf/vps.mount  #!/bin/bash source /etc/vz/vz.conf source ${VE_CONFFILE} mount –bind -n […]

Jean-Christophe VASSORT » OpenVZ

Régler l’heure d’un environnement virtuel OpenVZTuto servant à régler l’heure d’une machine virtuelle OpenVZ. Source: http://forum.openvz.org/index.php?t=msg&goto=6694& Admettons que l’environnement virtuel ait l’ID 101. On stoppe le VE:? vzctl stop 101On lui donne la possibilité de régler l’heure: vzctl set 101 –capability sys_time:on –saveOn le démarre: vzctl start 101On entre dedans pour finaliser l’opération: vzctl enter […]

Sysadmin Wiki : openvz

OpenVZ est une technique de virtualisation noyau, qui permet de partager le noyau entre plusieurs systèmes. Il est équivalent à Vserver. Voici quelques commande d’exploitation utiles : vzctl set 107 –diskspace 6G:7G –save #définir les quotas disques à 6Go soft et 7Go hard vzctl set 106 –save –tcprcvbuf 17203200 #augmenter le quotas de reception tcp […]

openvz et sysctl.conf sous squeeze

Open with your favorite editor (eg: nano, vim) /etc/sysctl.conf and edit as following : net.ipv4.conf.all.rp_filter=1 net.ipv4.icmp_echo_ignore_broadcasts=1 net.ipv4.conf.default.forwarding=1 net.ipv4.conf.default.proxy_arp = 0 net.ipv4.ip_forward=1 kernel.sysrq = 1 net.ipv4.conf.default.send_redirects = 1 net.ipv4.conf.all.send_redirects = 0 net.ipv4.conf.eth0.proxy_arp=1 After you’ve edited /etc/sysctl.conf file run: sysctl -p Step 4. Open /etc/vz/vz.conf and set as following: NOTE: This is important! If you don’t do […]

Kafe-in.net Blog/OpenVZ : Les ressources système dans un VE

Le noyau linux OpenVZ permet de se cloisonner en VE (Virtual Environment). Pour chaque VE créé, il attribue une certaine quantité de ressources système comme par exemple un nombre de processus maximum ou bien une certaine quantité de mémoire. Ces ressources sont appelées, en jargon « OpenVZique » les « bean counters », soit les « compteurs de haricots »…si quelqu’un […]

maxgarrick.com » Understanding OpenVZ resource limits

OpenVZ resource limits can be a little tricky, even after reading through the documentation on the OpenVZ website. With this post, I hope to explain the /proc/user_beancounters file as well as provide an illustration of memory guarantees/limits in an example 256mb container. Before attempting to understand OpenVZ’s memory limits, let’s recap Linux’s memory setup. This […]