Configurer Glassfish V4.0 : Différence entre versions

De wiki gPod
Aller à : Navigation, rechercher
Ligne 1 : Ligne 1 :
Les application sous glassfish sont déployer dans des '''Domaines'''. Chaque domaine possède un port TCP d'accès + un port TCP pour accéder à l'interface d'administration
+
Les application sous glassfish sont déployer dans des '''Domaines'''. Chaque domaine possède un port TCP d'accès à l'instance HTTP + un port TCP pour accéder à l'interface d'administration
 
Il est possible de déployer plusieurs application dans un domaine, mais il est préférable de déployer une application par domaine pour que chacune soit étanche aux autres.
 
Il est possible de déployer plusieurs application dans un domaine, mais il est préférable de déployer une application par domaine pour que chacune soit étanche aux autres.
  
Ligne 13 : Ligne 13 :
 
Domain domain1 deleted.
 
Domain domain1 deleted.
 
Command delete-domain executed successfully.
 
Command delete-domain executed successfully.
 +
 
}}
 
}}
  
  
  
== Création du domaine gPod ==
+
== Création du domaine gpod ==
 +
glassfish# /usr/local/glassfish/v4/bin/asadmin --user admin create-domain --adminport 4848 --instanceport 8080 gpod
 +
Enter the admin password [Enter to accept default of no password]> '''Saisir votre mot de passe'''
 +
Enter the admin password again> '''Saisir votre mot de passe'''
 +
Using port 4848 for Admin.
 +
Using port 8080 for HTTP Instance.
 +
Using default port 7676 for JMS.
 +
Using default port 3700 for IIOP.
 +
Using default port 8181 for HTTP_SSL.
 +
Using default port 3820 for IIOP_SSL.
 +
Using default port 3920 for IIOP_MUTUALAUTH.
 +
Using default port 8686 for JMX_ADMIN.
 +
Using default port 6666 for OSGI_SHELL.
 +
Using default port 9009 for JAVA_DEBUGGER.
 +
Distinguished Name of the self-signed X.509 Server Certificate is:
 +
[CN=localhost,OU=GlassFish,O=Oracle Corporation,L=Santa Clara,ST=California,C=US]
 +
Distinguished Name of the self-signed X.509 Server Certificate is:
 +
[CN=localhost-instance,OU=GlassFish,O=Oracle Corporation,L=Santa Clara,ST=California,C=US]
 +
Domain gpod created.
 +
Domain gpod admin port is 4848.
 +
Domain gpod admin user is "admin".
 +
Command create-domain executed successfully.
 +
 
 +
 
 +
glassfish# /usr/local/glassfish/v4/bin/asadmin --host localhost --port 4848 enable-secure-admin
 +
glassfish# /usr/local/glassfish/v4/bin/asadmin start-domain jamtickettest

Version du 9 décembre 2013 à 11:39

Les application sous glassfish sont déployer dans des Domaines. Chaque domaine possède un port TCP d'accès à l'instance HTTP + un port TCP pour accéder à l'interface d'administration Il est possible de déployer plusieurs application dans un domaine, mais il est préférable de déployer une application par domaine pour que chacune soit étanche aux autres.

suppression du domaine par défaut

 Terminal


Création du domaine gpod

glassfish# /usr/local/glassfish/v4/bin/asadmin --user admin create-domain --adminport 4848 --instanceport 8080 gpod Enter the admin password [Enter to accept default of no password]> Saisir votre mot de passe Enter the admin password again> Saisir votre mot de passe Using port 4848 for Admin. Using port 8080 for HTTP Instance. Using default port 7676 for JMS. Using default port 3700 for IIOP. Using default port 8181 for HTTP_SSL. Using default port 3820 for IIOP_SSL. Using default port 3920 for IIOP_MUTUALAUTH. Using default port 8686 for JMX_ADMIN. Using default port 6666 for OSGI_SHELL. Using default port 9009 for JAVA_DEBUGGER. Distinguished Name of the self-signed X.509 Server Certificate is: [CN=localhost,OU=GlassFish,O=Oracle Corporation,L=Santa Clara,ST=California,C=US] Distinguished Name of the self-signed X.509 Server Certificate is: [CN=localhost-instance,OU=GlassFish,O=Oracle Corporation,L=Santa Clara,ST=California,C=US] Domain gpod created. Domain gpod admin port is 4848. Domain gpod admin user is "admin". Command create-domain executed successfully.


glassfish# /usr/local/glassfish/v4/bin/asadmin --host localhost --port 4848 enable-secure-admin glassfish# /usr/local/glassfish/v4/bin/asadmin start-domain jamtickettest