Le blog d’un serveradmin débutant…
-
Installer Linux, Apache, MYSQL, PHP
https://www.howtoforge.com/apache_php_mysql_on_centos_7_lamp
-
Installer Fail2ban pour protéger ssh
Voir cet article : http://blog.iopsl.com/fail2ban-on-centos-7-to-protect-ssh-part-i/
-
Centos 7 – Redémarrer SSH
/bin/systemctl restart sshd.service
-
mysqlcheck – réparation de bases de données
Voir cet article : http://cipcnet.insa-lyon.fr/sqltut/nexen/using-mysqlcheck.html Depuis MySQL version 3.23.38, vous pouvez utiliser un nouvel outil d’entretien et de réparation pour les tables MyISAM . La différence avec myisamchk est que mysqlcheck doit être utilisé lorsque le serveur mysqld fonctionne, alors que myisamchk doit être utilisé lorsque le serveur ne fonctionne pas. L’intérêt st que vous…
-
erreur ftp – disk quota exceeded
Solution, donnée ici : http://www.sublimigeek.fr/erreur-ftp-disk-quota-exceeded Il « suffit » de copier sur le FTP un fichier vide portant le nom d’un gros fichier. Le gros fichier sera écrasé, de la place sera libérée et vous pourrez reprendre la main sur votre FTP !
-
Installer LAMP sur Centos 7
Cf. : http://www.krizna.com/centos/install-lamp-server-centos-7/ et http://www.cyberciti.biz/faq/howto-install-linux-apache-mariadb-php-lamp-stack-on-centos7-rhel7/
-
Install tor in Centos 7
Create repo file : #vi /etc/yum.repos.d/torproject.repo Paste and save : [tor] name=Tor repo enabled=1 baseurl=http://deb.torproject.org/torproject.org/rpm/el/7/$basearch/ gpgcheck=1 gpgkey=http://deb.torproject.org/torproject.org/rpm/RPM-GPG-KEY-torproject.org.asc [tor-source] name=Tor source repo enabled=1 autorefresh=0 baseurl=http://deb.torproject.org/torproject.org/rpm/el/7/SRPMS gpgcheck=1 gpgkey=http://deb.torproject.org/torproject.org/rpm/RPM-GPG-KEY-torproject.org.asc Important : If you have epel.repo enabled in your system, then open that file( /etc/yum.repos.d/epel.repo) and edit it to add the following line to it. Exclude=tor…
-
Emplacement des repositories dans Centos
/etc/yum.repos.d/
-
Obtenir la liste des ports ouverts sur son serveur
Commande à taper sous SSH : nmap -T Aggressive -A -v 127.0.0.1 -p 1-65000
-
Manage Processes in Linux
Commands : top htop ps aux (show processes owned by all users in a friendly format) ps axjf (hierarchical relationships in tree view) kill kill -KILLPID (if the process doesn’t stop) kill -HUP PID You can list all of the signals that are possible to send with kill by typing: kill -l Getting the PID…
Vous avez des recommandations de livres ?