4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 60 / 217
Newer►
  • Tomcat load balancing – mod_proxy vs mod_jk le match | Blog Technique Xebia - Cabinet de conseil IT

    Bon, c'est bien comme je pensais, ça ne sert plus à grand chose en 2016.

    2016年7月3日 GMT+2 下午8:34:31 - permalink - archive.org - http://blog.xebia.fr/2010/02/03/tomcat-load-balancing-mod_proxy-vs-mod_jk-le-match/
    ajp java
  • Elasticsearch 5.0.0-alpha4 released | Elastic

    Bientôt la stack en 5.0

    2016年7月2日 GMT+2 下午11:56:49 - permalink - archive.org - https://www.elastic.co/blog/elasticsearch-5-0-0-alpha4-released
  • Dear Graphite Users and Developers

    Ça c'est une très bonne nouvelle !

    2016年7月2日 GMT+2 下午11:47:05 - permalink - archive.org - https://blog.raintank.io/dear-graphite-users-and-developers/
    graphite
  • thumbnail
    Web application name to backend mapping in HAProxy | HAProxy Technologies – Aloha Load Balancer

    Very convenient way to confgure haproxy

    via VG Doo

    2016年7月1日 GMT+2 上午10:03:47 - permalink - archive.org - http://blog.haproxy.com/2015/01/26/web-application-name-to-backend-mapping-in-haproxy/
    haproxy map
  • Understanding Nginx Server and Location Block Selection Algorithms | DigitalOcean

    Très intéressant l'algo utilisé par nginx pour choisir le bloc server et ensuite le bloc location. Je me demande si il existe des astuces pour debug en cas de problèmes... (comment savoir dans quel(s) bloc(s) passe une request ?)

    2016年6月28日 GMT+2 下午10:04:08 * - permalink - archive.org - https://www.digitalocean.com/community/tutorials/understanding-nginx-server-and-location-block-selection-algorithms
    configuration logic nginx
  • Containers Vs. Config Management
    2016年6月26日 GMT+2 下午6:12:25 - permalink - archive.org - https://blog.containership.io/containers-vs-config-management-e64cbb744a94?gi=9f56020ac4e0
    12factor bestof docker
  • The Twelve-Factor App
    2016年6月26日 GMT+2 下午6:11:23 - permalink - archive.org - http://12factor.net/
    12factor
  • thumbnail
    Why 12 Factor Application Patterns, Microservices and CloudFoundry Matter
    2016年6月26日 GMT+2 下午6:10:20 - permalink - archive.org - https://spring.io/blog/2015/01/30/why-12-factor-application-patterns-microservices-and-cloudfoundry-matter
    12factor bestof devops
  • Why 12 Factor Application Patterns, Microservices and CloudFoundry Matter? Part 2 – What to change and how. – /dev
    2016年6月26日 GMT+2 下午6:10:06 - permalink - archive.org - http://www.agilemobiledeveloper.com/2015/06/10/why-12-factor-application-patterns-microservices-and-cloudfoundry-matter-part-2-what-to-change-and-how/
    12factor bestof devops
  • Note: vimdiff and included colorscheme

    They all sux to visualize difference EXCEPT:
    1) murphy
    2) torte

    :colorscheme murphy

    2016年6月23日 GMT+2 下午3:40:27 - permalink - archive.org - https://links.infomee.fr/?3de1_g
    color vim vimdiff
  • Carrying your Git settings around

    .ssh/authorized_keys

    environment="GIT_AUTHOR_NAME=Arnaud M",environment="GIT_AUTHOR_EMAIL=arnaud@foo.bar",environment="GIT_COMMITTER_NAME=Arnaud M",environment="GIT_COMMITTER_EMAIL=arnaud@foo.bar" ssh-rsa .....

    Peut être pratique quand plusieurs personnes commit depuis le même serveur (pour avoir un historique git avec les noms..)

    2016年6月22日 GMT+2 下午4:11:50 - permalink - archive.org - http://cweiske.de/tagebuch/carry-git-settings.htm
    git ssh
  • Note: Nagios bricolage..

    contexte : le plugin firefox que j'utilise pour checker nagios ne permet pas de filtrer comme je veux les alertes c'est à dire :
    https://nagiosserver/nagios/cgi-bin/status.cgi?host=all&servicestatustypes=28&serviceprops=41002&hostprops=41002&sorttype=1&sortoption=6&sorttype=1&sortoption=1

    Solution temporaire, crado, de la rewrite avec nginx :

    server {
    listen 80 default_server;
    location / {
    rewrite ^.*$ /nagios/cgi-bin/status.cgi?host=all&servicestatustypes=28&serviceprops=41002&hostprops=41002&sorttype=1&sortoption=6&sorttype=1&sortoption=1 break;
    proxy_pass https://nagiosserver;
    proxy_redirect off;
    }
    }

    Je fais tourner ça en local, je fais pointer mon plugin sur localhost, et voilà !

    2016年6月22日 GMT+2 下午1:48:18 - permalink - archive.org - https://links.infomee.fr/?2MGbUw
    nagios
  • Get the members of a nodegroup, must be run from the master
    2016年6月21日 GMT+2 下午7:19:53 - permalink - archive.org - https://gist.github.com/jalons/650f9686e855221751a38f03c3d0b302
    salt
  • My First 10 Minutes On a Server - Primer for Securing Ubuntu
    2016年6月19日 GMT+2 下午8:01:56 - permalink - archive.org - http://www.codelitt.com/blog/my-first-10-minutes-on-a-server-primer-for-securing-ubuntu/
    security
  • thumbnail
    MySQL Back-up: Take a mysqldump with each database in its own SQL File

    mysql -N -e 'show databases' | while read dbname; do mysqldump --complete-insert --routines --triggers --single-transaction "$dbname" > "$dbname".sql; done

    todo : regarder les options

    2016年6月19日 GMT+2 下午7:55:23 - permalink - archive.org - https://ma.ttias.be/mysql-back-up-take-a-mysqldump-with-each-database-in-its-own-sql-file/
    backup dump mysql
  • The Children's Illustrated Guide to Kubernetes
    2016年6月19日 GMT+2 下午7:52:41 - permalink - archive.org - https://deis.com/blog/2016/kubernetes-illustrated-guide/
    cronweekly docker k8s
  • How to Safely Store Your Users' Passwords in 2016 - Paragon Initiative Enterprises Blog
    2016年6月16日 GMT+2 下午3:05:04 - permalink - archive.org - https://paragonie.com/blog/2016/02/how-safely-store-password-in-2016
    password security
  • nagios-plugin-elasticsearch/check_elasticsearch at master · anchor/nagios-plugin-elasticsearch · GitHub
    2016年6月14日 GMT+2 上午11:46:19 - permalink - archive.org - https://github.com/anchor/nagios-plugin-elasticsearch/blob/master/check_elasticsearch
    check es nagios
  • Solved: Skype group chat not working anymore - Skype Community

    Probleme de conversation cachée...
    To solve this "LoggedOut" issue, try this on any chat window:

    /msnp24

    and restart your Skype.

    After restarting, /dumpmsnp output shows the following status:

    System: MSNP: Connection Data (MSNP24):

    • Status: LoggedIn
    2016年6月13日 GMT+2 上午9:42:20 - permalink - archive.org - https://community.skype.com/t5/Linux/Skype-group-chat-not-working-anymore/td-p/3987288
    skype
  • Note: graphite, python, dispatch

    TIL :

    • wsp files has a length limit.
    • use gauge in type, dont fucking use counter (it accepts only integer)
    2016年6月10日 GMT+2 下午4:06:00 - permalink - archive.org - https://links.infomee.fr/?FJATHQ
    graphite
Links per page: 20 50 100
◄Older
page 60 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation