à tester le script de report en perl
-
http://wiki.centos.org/HowTos/RsnapshotBackupsPoint de vue différents :)
Ici, lorsqu'on utilise "localhost", la connexion va se faire par une socket et lorsqu'on utilise "127.0.0.1", la connexion se fera par tcp. On pourrait se dire que le comportement est anormal, mais en fait, non :
"The patch won't be added as then "localhost" has two meanings - one time meaning "use the unixdomain socket in the default location" and one time actually "resolve localhost and use TCP" as it is taught in many places that "localhost" in MySQL has the first meaning we keep it there."
La socket est déterminée ici dans le php.ini :
; Default socket name for local MySQL connects. If empty, uses the built-in
; MySQL defaults.
mysql.default_socket =
-
https://bugs.php.net/bug.php?id=52434à regarder plus tard
via sebsauvage
-
http://media.ccc.de/Article interessant : dissocier metrologie et supervision dans le domaine du monitoring
-
http://blog.ysance.com/decrypt/zabbix-centreon-nagios-cacti-ou-munin/Sympa de pouvoir requeter (get delete etc) avec des REST API
-
http://www.elasticsearchtutorial.com/elasticsearch-in-5-minutes.htmlComment créer un script d'init pour une application java.
EDIT : ce truc n'a pas marché pour moi :
s=ps -C 'java -jar /path/to/application.jar' -o pid h
Du coup, j'ai remplacé par :
s=$(pgrep --full 'une string unique qui identifie la command line pour lancer mon jar')
#
#
#
check_status() {
s=ps -C 'java -jar /path/to/application.jar' -o pid h
if [ $s ] ; then
return $s
fi
return 0
}
start() {
check_status
pid=$?
if [ $pid -ne 0 ] ; then
echo "The application is already started"
exit 1
fi
echo -n "Starting application: "
java -jar /path/to/application.jar >> /path/to/logfile 2>&1 &
echo "OK"
}
stop() {
check_status
pid=$?
if [ $pid -eq 0 ] ; then
echo "Application is already stopped"
exit 1
fi
echo -n "Stopping application: "
kill -9 $pid &
echo "OK"
}
status() {
check_status
if [ $? -ne 0 ] ; then
echo "Application is started"
else
echo "Application is stopped"
fi
}
case "$1" in
start)
start
;;
stop)
stop
;;
status)
status
;;
restart|reload)
stop
start
;;
*)
echo "Usage: $0 {start|stop|restart|reload|status}"
exit 1
esac
exit 0
-
http://gustavostraube.wordpress.com/2009/11/05/writing-an-init-script-for-a-java-application/function sayhello() {
echo hello
}
OR
sayhello() {
echo hello
}
Et en one-line :
sayhello() { echo hello; }
-
https://links.infomee.fr/?zlvmKwJ'ai du faire ça pour que la synchro fonctionne car mon certificat n'est pas au meme nom que mon domaine owncloud...
Quand je serai motivé, je referai un certificat correctement, en attendant je me note la rustine ici juste au cas où :
i have to set CURLOPT_SSL_VERIFYHOST => 1 in array $curlSettings in file 3rdparty/Sabre/DAV/Client.php to use WebDAV correctly with my setup. If not i get the warning message in admin-screen.
-
http://forum.owncloud.org/viewtopic.php?f=23&t=102933 articles à lire :
http://julien-pauli.developpez.com/tutoriels/php/compilation/
http://julien-pauli.developpez.com/tutoriels/php/internals/presentation/
http://julien-pauli.developpez.com/tutoriels/php/internals/bases-creer-extension/
http://tech.covoiturage.fr/author/julien_pauli/
+Bonus :
http://julien-pauli.developpez.com/tutoriels/php/sapis/
https://support.cloud.engineyard.com/entries/26902267-PHP-Performance-I-Everything-You-Need-to-Know-About-OpCode-Caches
-
https://links.infomee.fr/?bHKQ5APlein de theme pour android.
Testables facilement avec l'application en plus !
-
http://mycolorscreen.com/vimdiff /path/to/file scp://remotehost//path/to/file
-
http://serverfault.com/questions/59140/how-do-diff-over-sshapplication Android pour faire du offline plz -_-
-
http://linuxfr.org/news/tags-et-rss-au-menu-de-poche-1-3Moi aussi faudra que je teste, je cinnais plusieurs personnes qui apprécient cette distrib.
via arnaudb(https://arnaudb.net/shaarli/?WzE6mw)
-
http://blog.vintherine.org/post/2013/11/19/Ma-proc%C3%A9dure-d-installation-Archlinux