-
MYSQL – Réinitialiser le mdp root
-
Linux – partition /boot pleine
First check your kernel version, so you won’t delete the in-use kernel image, running: uname -r Now run this command for a list of installed kernels: sudo dpkg –list ‘linux-image*’ | grep ^ii and delete the kernels you don’t want/need anymore by running this: sudo apt-get remove linux-image-VERSION Replace VERSION with the version of the…
-
ESX – activer snmp
Afin de monitorer les serveurs ESXi à l’aide de Nagios ou HP SIM, il faut configurer le service SNMP. Voici les étapes: Se connecter au serveur ESXi à monitorer via SSH ou console locale. Modifier le fichier /etc/vmware/snmp.xml à l’aide de VI: vi /etc/vmware/snmp.xml Appuyer sur “i” pour passer en mode insertion. Modifier…
-
SSH – Accès root
Warnning: this method might be unsafe for server users. ubuntu don`t allow root user and also login in ssh as root by default. so the first thing you have to do is to enable your root user account. $ sudo passwd root ok, you have got your root account enabled now. I am not sure…
-
MYSQL – sauvegarde bases
Pour Sauvegarder et restaurer des données Mysql en ligne de commande on utilise les utilitaires mysqldump et mysql. De préférence on utilise le compte admin créé lors de l’installation de MySql : ici c’est l’utilisateur root. Sauvegarde MySql Il y a différents types de sauvegarde mysql. On peut sauvegarder toutes les bases de données, une…
-
linux – SSL – récupérer .key à partir d’un certificat pfx exchange
Ensuite, lancez OpenSSL pour extraire la clef privée, et le fichier cert Exporter le fichier de clef privée du fichier pfx. openssl pkcs12 -in filename.pfx -nocerts -out key.pem Exporter le fichier du certificat à partir du fichier pfx openssl pkcs12 -in filename.pfx -clcerts -nokeys -out cert.pem Supprimer la passphrase à partir de la clef privée openssl rsa…
-
LINUX – configurer un compte exchange avec evolution
This document explains how to connect to the Office 365 service. Important: Use of Linux/Evolution is not supported and therefore the Help Desk will not be able to provide any type of troubleshooting. Use these instructions as a general overview for connecting your Office 365 account UW-Madison’s implementation. To configure the Evolution client to access…
-
LINUX – Installer teamviewer sur ubuntu 16.04
Install TeamViewer on Ubuntu 16.04 First go to TeamViewer download page and download the deb package for Debian/Ubuntu. Notice that this is a 32 bit deb package. 64 bit deb package is only available for old Debian/Ubuntu systems without multiarch capability (e.g. Debian 6, Ubuntu 10) and is useless for Ubuntu 16.04. Once the download…
-
LINUX – Ajouter une route statique
Add a Static route using « route » command route add [-net|-host] <IP/Net> netmask <Mask> gw <Gateway IP> dev <Int>X Example route add -net 10.10.10.0 netmask 255.255.255.0 gw 192.168.1.1 dev eth0 route add -host 10.10.1.1 netmask 255.255.255.0 gw 192.168.1.1 dev eth0 This adds the route immediatly to the Kernel IP routing table. To confirm the route has…
-
BITNAMI gitlab – activer l’accès ssh
How to enable sshd? Some applications like GitLab or Gitorious require to have SSH access to import the repositories. The « ssh » server is disabled by default for Virtual Machines. You can enable the « ssh » server from the machine console as follows: For Ubuntu $ sudo mv /etc/init/ssh.conf.back /etc/init/ssh.conf $ sudo start ssh Now you can…