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.

    3 juillet 2016 à 20:34:31 UTC+2 - 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

    2 juillet 2016 à 23:56:49 UTC+2 - 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 !

    2 juillet 2016 à 23:47:05 UTC+2 - 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

    1 juillet 2016 à 10:03:47 UTC+2 - 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 ?)

    28 juin 2016 à 22:04:08 UTC+2 * - permalink - archive.org - https://www.digitalocean.com/community/tutorials/understanding-nginx-server-and-location-block-selection-algorithms
    configuration logic nginx
  • Containers Vs. Config Management
    26 juin 2016 à 18:12:25 UTC+2 - permalink - archive.org - https://blog.containership.io/containers-vs-config-management-e64cbb744a94?gi=9f56020ac4e0
    12factor bestof docker
  • The Twelve-Factor App
    26 juin 2016 à 18:11:23 UTC+2 - permalink - archive.org - http://12factor.net/
    12factor
  • thumbnail
    Why 12 Factor Application Patterns, Microservices and CloudFoundry Matter
    26 juin 2016 à 18:10:20 UTC+2 - 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
    26 juin 2016 à 18:10:06 UTC+2 - 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

    23 juin 2016 à 15:40:27 UTC+2 - 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..)

    22 juin 2016 à 16:11:50 UTC+2 - 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à !

    22 juin 2016 à 13:48:18 UTC+2 - permalink - archive.org - https://links.infomee.fr/?2MGbUw
    nagios
  • Get the members of a nodegroup, must be run from the master
    21 juin 2016 à 19:19:53 UTC+2 - permalink - archive.org - https://gist.github.com/jalons/650f9686e855221751a38f03c3d0b302
    salt
  • My First 10 Minutes On a Server - Primer for Securing Ubuntu
    19 juin 2016 à 20:01:56 UTC+2 - 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

    19 juin 2016 à 19:55:23 UTC+2 - 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
    19 juin 2016 à 19:52:41 UTC+2 - 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
    16 juin 2016 à 15:05:04 UTC+2 - 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
    14 juin 2016 à 11:46:19 UTC+2 - 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
    13 juin 2016 à 09:42:20 UTC+2 - 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)
    10 juin 2016 à 16:06:00 UTC+2 - 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