Catégorie : Gestion de serveur

  • mput : envoyer plusieurs fichiers en FTP

    Pour envoyer plusieurs fichiers : ftp> mput *.rar Pour éviter les demandes après chaque fichier, il faut se connecter avec l’option i : ftp -i toto.fr

  • Mettre à jour Sphinx pour IPB

    To upgrade Sphinx, do the same when installing : https://www.admin-noobs.net/?cat=30 (but remember to remove spl files) BACKUP : Make a backup of /usr/local/bin/searchd (and indexer, and indextool if you have one) somewhere. So if the new version fails. Can just restore these few binary files back to the same place and revert to the old…

  • Commandes FTP

    Supprimer répertoire : rmdir Supprimer plusieurs fichiers : mdelete ! pour lancer une commande sur le shell à l’endroit ou vous avez lancé le ftp (ex : !dir, !ls…) ascii force le transfert en ascii bell beep quand la commande est finie binary force le transfert binaire bye termine la session ftp et quitte cd…

  • PRM – restarting services automatically

    Found here : http://www.crucialp.com/resources/tutorials/server-administration/how-to-howto-install-prm-process-resource-monitor.php   How to install PRM (Process Resource Monitor) PRM (Process Resource Monitor) Introduction PRM monitors the process table on a given system and matches process id’s with set resource limits in the config file or per-process based rules. Process id’s that match or exceed the set limits are logged and killed;…

  • Voir l’utilisation de la memoire

    Taper : free -m

  • Mysql qui s’emballe et read_buffer_size

    Solution : mettre read_buffer_size à 1

  • Table_cache

    Pour table_cache, on peut compter 512 octets par table.

  • Comprendre IPTABLES

    Trouvé ici : http://www.debian-administration.org/articles/226 Voir également : http://documentation.online.net/fr/serveur-dedie/tutoriel/iptables-netfilter-configuration-firewall    Whilst it’s true that using iptables can be confusing it’s pretty straightforward once you get the hang of it. To start off with there are three real « chains » which iptables uses: INPUT Which is used to grant or deny incoming connections to your machine. OUTPUT Which is used to grant…

  • Loopback et IPTABLES

    # Allow loopback access. This rule must come before the rules denying port access!! iptables -A INPUT -i lo -p all -j ACCEPT # Rule for your computer to be able to access itself via the loopback iptables -A OUTPUT -o lo -p all -j ACCEPT

  • Paramétrer ou changer la politique d’une chaîne

    iptables -P [chaine] [politique] Exemple : iptables -P OUTPUT ACCEPT