Browse All Articles > Deploy Citrix Web Interface on Linux for reliable Web Interface / PNAgent funtionality for Xenapp, Xendesktop and Netscaler integration.
After several days of searching and hunting for limited documentation, I wanted to share this guide to hopefully save someone the hassle of trying to figure this out on their own.
I have tested this on Xendesktop 7.1 and PS 4.5 running simultaneously off of the same web interface server. So the old and the new works together easily.
For this article the following pieces of software were used -
Ubuntu 12.04 lts x64 -
Download Here Citrix Web Interface 5.4 for Java Application servers -
Download here Putty to ssh into the server -
Download Here Winscp to transfer files to/from the server -
Download Here
Starting off there are tons of guides on how to install Ubuntu server and set a static ip with dns resolution. Make sure when you are installing it you install with the below options. This article assumes you have used winscp, putty, and linux shell editors like nano and vi before.
If you know how to install Apache on its own, I would recommend doing it that way. For ease of use we select the LAMP server option in this document.
This will install the core OS with all the software needed to make this work.
Once the os is up and running.
I like to make sure a few things are installed to help troubleshoot if needed.
Make sure your system is up to date and here are the tools I like to use.
I also like to make sure dkms is installed. If it is a vm then it helps to make sure that the vmware tools gets rebuilt if there is a kernel upgrade. Else I have seen the machines loose their network connections
sudo apt-get updatesudo apt-get upgradereboot for good measuresudo apt-get install dkms htop nmon
The next thing I recommend doing is setting your permissions for tomcat6 so you can log in and deploy applications.
cd /etc/tomcat6use whatever editor you like. I personally prefer vi or nano.sudo vi tomcat-users.xmlAdd the roles and passwords to manage the tomcat apps <role rolename="admin"/> <role rolename="manager-gui"/> <user username="tomcatadmin" password="somecomplexpassword" roles="admin ,manager-gui"/>save and exit the editorrestart tomcat6/etc/init.d/tomcat6 restart
Enter the login info you provided in the tomcat-users.xml
You should now see the below or something close to it. If not review the steps that you have taken.
At this point you have tomcat configured and it is ready to deploy the web interface.
The next thing we need to do is configure the web interface application web archive.
Open up a putty session and a winscp session to the temp directory and transfer the Webinterface.jar file to the server.
When I did this I transferred it to the /tmp directory.
This may be an extra step but I wanted to make sure whatever was being built with java, would be built with the same version of java that the server was running.
You might be able to build this file locally but I have not tried it myself.
That being said once the file is transferred, open up putty and ssh to the server.
change to the /tmp directory or where ever you stored the file.
Ok. So now we need to decide if we are doing Web Interface or PNAgent.
Press 1 for Web interface or 2 for PNAgent.
For my situation I needed both. So I ran this installer twice so that I had both options available. The installer essentially works the same for both options.
Select your option then enter in your zone data collector. I am not sure if you can add more than one here but you can edit the webinterface.conf file and find the line where that is entered and add your second ZDC. You will just add a comma after the other one and add the new one right after it.
Select the protocol. I am using http so I selected option 1.
Select the port that the XML service is running on.
Select the interface style you want. I am generally ok with the minimal as I do not need to give the users too many options. You can change this later in the webinterface.conf
I use dual mode so I selected that for the next option. You can just do this to be safe.
Select whether or not you want to upload the Citrix receiver to the web interface.
I elected not to at the moment and manually copied them over afterwards.
Press Enter here to save the generated XenApp.war file in the same directory that you uploaded the webinterface.jar file.
Press "Y" to create the file in the working directory.
You should now see the XenApp.war or PNAgent.war file in the folder.
Using WinSCP copy the XenApp.war or the PNAgent.war file back to your desktop.
After that open a web browser, log into tomcat web app manager.
Towards the bottom find the below section of the screen.
Choose the file you copied back to your workstation.
Now press the deploy button.
If you scroll back up towards the top you will see the XenApp or PNAgent site that you deployed. In my case both are listed.
You can click on the XenApp site and it will take you right into the XenApp / XenDesktop Web Interface.
To test the PNAgent site add config.xml at the end of the web address and you should see something similar to this.
Now the reason we installed apache was so you could set up a redirect from the default Apache site.
If your web interface is set up as http://citrix.mydomain.com
and users try to browse their the will get the good old Apache "IT WORKS!" page.
We want it to redirect to the new Citrix web interface site.
So what we need to do is putty into the server.
cd /var/wwwcp index.html index.html.baksudo vi index.htmldelete everything in the file.Then add your favorite method of redirection to the web interface site,I added this to mine.<meta HTTP-EQUIV="REFRESH" content="0; url=http://citrix.mydomain.com:8080/XenApp">
AutoLaunchDesktop=Off (you can decide change to on if you want a desktop to launch automatically)
UserInterfaceBranding=Desk
tops (Can also be set to Applications just changes the splash screen to say XenDesktop or XenApp is all this does)
ShowDesktopViewer=On (I like this so that the user can easily resize the desktop)
HideDomainField=Off (If you have a single domain you can set it then hide the domain field)
DomainSelection=DOMAIN1,DO
MAIN2 (These will show in a dropdown box if you only have one, enable the above option as well)
These are just a few of the options that I set.
After you change any options and save the webinterface.conf file you will need to restart the application. I believe you can stop then start it from the tomcat app manager or you can just restart tomcat6. (/etc/init.d/tomcat6 restart)
This process looks a lot worse than it actually is.
Once your options are configured correct you should be able to log into the web interface and execute your applications.
Your receiver should also be able to connect to the PNAgent site once the config is set properly.
Comments (0)