Catégorie : Gestion de serveur
-
Etre informé des connexions SSH par mail
Trouvé ici : http://www.webhostgear.com/43.html 1. Login to your server and su to root, I know the irony! 2. cd /root 3. pico .bashrc 4. Scroll to the end of the file then add the following: echo ‘Accès Shell Root le ‘ `date` `who` | mail -s `hostname` Shell Root de `who | cut -d »( » -f2…
-
SPRI
Trouvé ici : http://www.host.co.in/forums/f20/spri-system-priority-435/ SPRI – changes the priority of different processes in accordance to level of importance, hence increasing server performance. SPRI (System Priority) is a utility designed to que different processes with different priority levels based on 3 class levels of importance (high,med,low). The problem? Linux has priority levels to thread all tasks…
-
My.cnf
Le thread_cache_size : le laisser a 0 revient plus ou moins à désactiver le pre-forking des children dans apache.
-
Dépannage de serveur
– « uptime » donnera la charge instantanée de la machine, – « free », dont la colonne « used » vous indiquera la quantité de mémoire utilisée par vos applications- top, htop, iotop,… – « dmesg » montre les messages issus du kernel linux du serveur,- la lecture des fichiers de logs : tail -f /var/log/messages /var/log/daemons – « df –h » vous indique…
-
Rebooter en soft
Tout simplement avec : /sbin/reboot
-
Voir ce qui se passe… tail -f /var/log/messages
Pour savoir ce qui se passe : tail -f /var/log/messages Pour arrêter le défilement, il suffit simplement de taper ctrl + c.
-
Installer Sphinx pour IPB 3.1
Extrait du tutoriel d’IPS : Installing Sphinx cd /tmp wget http://sphinxsearch.com/downloads/sphinx-0.9.8.1.tar.gz tar xzvf sphinx-0.9.8.1.tar.gz cd sphinx-0.9.8.1 Next you need to configure, make and make install the package ./configure make make install If you get an error at any of these steps, stop and correct it. For instance, if Sphinx cannot find your mysql binaries, you…
-
Sphinx et reboot du serveur
Après un reboot du serveur, le moteur de recherche Sphinx ne fonctionne plus ? rm -f /var/sphinx/*.spl /usr/local/bin/searchd –config /path/to/sphinx.conf
-
Plus rien ne marche comme il faut ?…
Plus d’accès SSH, FTP, etc.? Fonctionnement anormal Apache/MySQL ? Pas de solution qui fonctionne ? => Reboot hard du serveur (ça fait combien d’années que tu n’as pas rebooté ton serveur ? ? ?).
-
Connaître le nombre de requêtes par IP
netstat -ntu | awk ‘{print $5}’ | cut -d: -f1 | sort | uniq -c | sort -n