Bonnes Pratiques Web & Cloud
58.8K views | +4 today
Follow
Bonnes Pratiques Web & Cloud
Administration cloud et développement web
Curated by Mickael Ruau
Your new post is loading...
Your new post is loading...

Popular Tags

Current selected tag: 'vagrant'. Clear
Scooped by Mickael Ruau
Scoop.it!

xdissent/ievms

xdissent/ievms | Bonnes Pratiques Web & Cloud | Scoop.it
ievms - Automated installation of the Microsoft IE App Compat virtual machines
Mickael Ruau's insight:

Microsoft provides virtual machine disk images to facilitate website testing in multiple versions of IE, regardless of the host operating system. With a single command, you can have IE6, IE7, IE8, IE9, IE10, IE11 and MSEdge running in separate virtual machines.

No comment yet.
Scooped by Mickael Ruau
Scoop.it!

Une VM moderne pour IE avec Vagrant

Une VM moderne pour IE avec Vagrant | Bonnes Pratiques Web & Cloud | Scoop.it

Nous développons une application Web destinée à des utilisateurs corporate sous Internet Explorer 9. Nos Product Owners utilisent Windows et IE 11, nous développons sous Mac OS X, et les serveurs tournent sous Linux.

Dans cet environnement hétérogène, nous utilisions déjà Vagrant pour gérer plusieurs VM Linux : intégration continue, bases de données, conteneur Web.

 

Doc Microsoft : https://az792536.vo.msecnd.net/vms/release_notes_license_terms_8_1_15.pdf

 

Login Instructions
Login Information (for Windows Vista, 7, 8, 10 VMs):
IEUser, Passw0rd!
 
Instructions to set password for XP VMs:
1.Using virtualization platform of choice, load the XP VM
2.Go to Control Panel | User Accounts
3.Select IEUser
4.Select "Create a password" link and enter the desired password

 

Mickael Ruau's insight:

D’autres VM avec plusieurs versions de Windows et d’IE ont été mises à disposition gratuitement par Microsoft, pour les développeurs Web, avec une licence temporaire pour un usage de test. On peut théoriquement les utiliser aussi facilement :

vagrant box add win7-ie11 http://aka.ms/vagrant-win7-ie11vagrant init win7-ie11vagrant upvagrant rdp

En pratique c’est plus compliqué, car aucun accès à distance n’est configuré par défaut. Pas de SSH, et pas de RDP (le protocole de Microsoft).

  • Le premier symptôme est un timeout, au moment où Vagrant essaie de se connecter à la VM pour vérifier qu’elle est bien démarrée
  • On ne peut pas non plus manipuler notre VM avec Vagrant, pour l’éteindre ou pour la redémarrer

Nous allons voir comment personnaliser une box Microsoft pour corriger ces problèmes, et comment la redistribuer.

No comment yet.
Scooped by Mickael Ruau
Scoop.it!

Setup modern.ie vagrant boxes

Since modern.ie released vagrant boxes, it' no longer necessary to manually import the ova file to virtualbox, as mentioned here.

However, the guys at modern.ie didn't configured the box to work with WinRM. This how-to addresses that, presenting steps to proper repackage these boxes, adding WinRM support. Additionally configures chocolatey package manager and puppet provisioner.

No comment yet.
Scooped by Mickael Ruau
Scoop.it!

config.winrm - Vagrantfile - Vagrant by HashiCorp

config.winrm - Vagrantfile - Vagrant by HashiCorp | Bonnes Pratiques Web & Cloud | Scoop.it
The settings within config.winrm relate to configuring how Vagrant will access your Windows guest over WinRM. As with most Vagrant settings, the defaults are typically fine, but you can fine tune whatever you would like.
No comment yet.
Scooped by Mickael Ruau
Scoop.it!

markhuber/modern-ie-vagrant

markhuber/modern-ie-vagrant | Bonnes Pratiques Web & Cloud | Scoop.it

modern-ie-vagrant - Vagrant based Modern.IE VMs

Mickael Ruau's insight:

##modern-ie-vagrant Based on the virtual machine images released with the Modern.IE project, modern-ie-vagrant makes testing IE easier with help from Vagrant. The machine images in modern-ie-vagrant are based on the original images with the addition of activating WinRM to make them compatible with the Vagrant WinRM communicator.

No comment yet.
Scooped by Mickael Ruau
Scoop.it!

Vagrant et la virtualisation pour faciliter le développement

Vagrant est un outil permettant de gérer des machines virtuelles afin d'avoir en local, lors du développement d'une application, le même environnement qu'en production ou en staging.

Mickael Ruau's insight:

Vagrant vous propose, via un simple fichier de configuration et un ensemble de commandes, de définir le système utilisé et de définir la configuration souhaitée pour votre environnement.

Les principaux avantages de cet outil sont la simplicité, la portabilité des VM, la légéreté (comparé à une machine virtuelle installée avec l’un des outils cités précédemment) et également la facilité que l’on a à reproduire ou dupliquer un même environnement plusieurs fois.

No comment yet.