Le blog d’un serveradmin débutant…
-
Installation de git
Je fais la première installation de cette façon : ./configure –prefix=$HOME make make install Mais au final, impossible de synchroniser SparkleShare et Git. Je réinstalle de cette façon : make prefix=/usr all make prefix=/usr install et ça roule…
-
Redémarrer csf et lfd
csf -r service lfd restart
-
Se débarrasser du message de lfd « excessive resource usage »
Exemple : Edit /etc/csf/csf.pignore file and add a line like this one : exe:/usr/sbin/avahi-daemon
-
Commandes MySQL
Voir : http://www.pantz.org/software/mysql/mysqlcommands.html Voir aussi : http://www.wbluhm.com/MySQLTut.html To login (from unix shell) use -h only if needed. # [mysql dir]/bin/mysql -h hostname -u root -p Create a database on the sql server. mysql> create database [databasename]; List all databases on the sql server. mysql> show databases; Switch to a database. mysql> use [db name]; To…
-
Exécuter un script .sql
mysql <my_db_name> -u<user_name> -p<password> < mysql.sql
-
Créer fichier pour démarrage de red5
Voir ici : http://www.skipcam.com/help/installing-red5/ CREATE INIT FILE vi /etc/init.d/red5 paste the script below than save and close by pressing ESC than typing :wq Code: #!/bin/sh # Startup script for Red5 flash streaming server on RedHat/CentOS (cPanel) # chkconfig: 2345 95 55 # description: Red5 Flash Streaming Server # processname: red5 PROG=red5 RED5_HOME=/usr/local/red5 DAEMON=$RED5_HOME/$PROG.sh PIDFILE=/var/run/$PROG.pid #…
-
Admin panel dans RED5
Il se trouve à cette adresse : MONIP:5080/demos/adminPanel.html Mais dans la version 0.9, il semble que la création d’un admin ne fonctionne pas… L’installer des applications est accessible ici : MONIP:5080/installer
-
High number of TIME_WAIT sockets and tcp_tw_recycle
Check by : netstat -an|grep « :80″|awk ‘/tcp/ {print $6}’|sort -nr| uniq -c Then make changes. In order to revert back the ‘tcp_tw_recycle’ changes delete following lines from /etc/sysctl.conf net.ipv4.tcp_fin_timeout=30 net.ipv4.tcp_tw_recycle = 1 net.ipv4.tcp_tw_reuse = 1
-
DirectAdmin et donner un mot de passe aux comptes root
Voir ici : http://help.directadmin.com/item.php?id=45 When connecting to the MySQL screens in DirectAdmin, if this error appears, that would indicated that the « da_admin » user has not been setup correctly. To resolve this do the following. 1) Make sure the root mysql password works. If you know it, skip to 2). The mysql root password can be…
-
Fichiers logs à consulter…
Fichiers se trouvant dans /var/log : mysql-slow.log, messages, dmesg, secure, etc. error_log si PRM est installé, le fichier prm_log et les fichiers se trouvant dans le répertoire killed (le numéro du fichier est indiqué dans prm_log). Cf. également : http://www.webmaster-hub.com/publication/Gerer-plus-facilement-les-logs.html
Vous avez des recommandations de livres ?