~~NOTOC~~ ====== How to deploy a bundle ? ====== * First of all, you'll need a bundle ! Just build your own, or use some predefined bundles provided on this website. * Upload the bundle to the target server's file system. You can do it using ''scp'' for example, or any other file transfer tool you can use. * Unzip your bundle on the target server: mosser@anubis:~$ unzip jSeduite-EPU.zip mosser@anubis:~$ cd jSeduite-EPU mosser@anubis:~/jSeduite-EPU$ * Set up the deployment file, //ie// edit the ''settings.sh'' file using the ad'hoc values: SQLUSER="root" SQLPASSWORD="root_database_password" GLASSFISH_ADMIN="admin" GLASSFISH_PASSWORD="glassfish_admin_password" * Just run the ''deploy.sh'' script: mosser@anubis:~/jSeduite-EPU$ ./deploy.sh # Initializing database using [init.sql] # Creating relations using [DataCache.sql] SQL script # Creating relations using [FeedRegistry.sql] SQL script # Creating relations using [PictureAlbumRegistry.sql] SQL script # Creating relations using [UserProfile.sql] SQL script # Filling intial content using [data.sql] # Deploying jSeduite Web Services from [./ws] # Deploying [DataCache] Web Service using [DataCache-v1.0.war] Command deploy executed successfully. # Deploying [FeedRegistry] Web Service using [FeedRegistry-v1.0.war] Command deploy executed successfully. # Deploying [FlickrWrapper] Web Service using [FlickrWrapper-v1.0.war] Command deploy executed successfully. # Deploying [ICalReader] Web Service using [ICalReader-v1.0.war] Command deploy executed successfully. # Deploying [PicasaWrapper] Web Service using [PicasaWrapper-v1.0.war] Command deploy executed successfully. # Deploying [PictureAlbumRegistry] Web Service using [PictureAlbumRegistry-v1.0.war] Command deploy executed successfully. # Deploying [PictureSet] Web Service using [PictureSet-v1.0.war] Command deploy executed successfully. # Deploying [RssReader] Web Service using [RssReader-v1.0.war] Command deploy executed successfully. # Deploying [TvHelper] Web Service using [TvHelper-v1.0.war] Command deploy executed successfully. # Deploying [UserProfile] Web Service using [UserProfile-v1.0.war] Command deploy executed successfully. # Deploying jSeduite BPEL processes from [./jbi] # Deploying [CachedFeedReaderComponent] assembly using [CachedFeedReaderComponent-v1.0.zip] # Deploying [FeedReaderComponent] assembly using [FeedReaderComponent-v1.0.zip] # Deploying [ImageScraperComponent] assembly using [ImageScraperComponent-v1.0.zip] # Deploying [PictureAlbumsComponent] assembly using [PictureAlbumsComponent-v1.0.zip] # Deploying [TvShowsComponent] assembly using [TvShowsComponent-v1.0.zip] # Deploying [WeatherProxyComponent] assembly using [WeatherProxyComponent-v1.0.zip] mosser@anubis:~/jSeduite-EPU$ * That's all folks ! * FIXME : client & InfoProvider