]> git.mxchange.org Git - pizzaservice-core.git/commitdiff
updated INSTALL.txt with new JNDI name for mail session + added maybe missing JMS...
authorRoland Häder <roland@mxchange.org>
Fri, 7 Jul 2017 23:53:37 +0000 (01:53 +0200)
committerRoland Häder <roland@mxchange.org>
Fri, 7 Jul 2017 23:53:37 +0000 (01:53 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
INSTALL.txt [deleted file]

diff --git a/INSTALL.txt b/INSTALL.txt
deleted file mode 100644 (file)
index 74bb8f4..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-Installation instructions:
-==========================
-
-0) Create an empty database and setup proper permissions
-
-1) (Import install/install.sql into your new database) Currently DROP+CREATE
-
-2) Setup a JDBC pool. I took the simple driver:
-
-Pool name: ShopPool
-Resource type: java.sql.Driver
-Driver: MySQL
-Driver class: org.mariadb.jdbc.Driver
-
-URL: jdbc:mysql://localhost/your_database
-user: your_login
-password: your_password
-
-3) Setup a JDBC resource:
-
-JNDI name: jdbc/shop
-Pool name: ShopPool
-
-4) Setup a JMS connection factory:
-
-JNDI name: jms/shopConnectionFactory
-Resource type: javax.jms.QueueConnectionFactory
-
-5) Setup a JMS destination resource:
-
-JNDI name: jms/shopCheckoutQueue
-Physical destination name: checkout
-Resource type: javax.jms.Queue
-
-You should be done now. And always try to give informative descriptions, not
-just only "shop" or "factory".
-
-Of course, you need to build and deploy the EAR/WAR files. ;-)
-
-6) In juser-core project you will find a JAR named "commons-codec-1.10.jar" you
-   need to copy this to your $GLASSFISH_DOMAIN/lib/ path to make password
-   encryption working. Please setup sufficient access rights (CHMOD 0644 is
-   enough).
-
-   If you forgot this file to copy and you have copied it now, please restart
-   the Glassfish server so the JAR can be found and loaded.