DimDim - At first I noticed their free online hosted version.  But this is not what I'm looking for.  I'm trying to find something I can implement on my own servers.  Then I noticed they have a Vmware appliance version so I decided I would download it and give it a shot.\n \nAt first I can ping the vm from my laptop but not from another pc on my network .  So I need to troubleshoot the networking first by running ifconfig eth0 to see what the IP is.  I see it's assigned 192.168.2.113.\nGoing to try and manually set the IP\nvi /etc/sysconfig/network-scripts/ifcfg-eth0\nDEVICE=eth0 \nONBOOT=yes\nBOOTPROTO=none\nBROADCAST=192.168.2.255 \nIPADDR=192.168.2.3 \nNETMASK=255.255.255.0 \nNETWORK=192.168.2.0 \n \nnow press esc and :wq to save changes and quit\ngoing to edit the hostname now \nvi /etc/resolv.conf\n \nnext edit the gateway\nvi /etc/sysconfig/network \nand restart the network service\nservice network restart\n \nHave to push the IP address to all the settings within Dimdim\ncd /usr/local/dimdim\n./StopDimdim.sh\n./Config-ipaddress.pl 192.168.2.3 80 192.168.2.3\n./StartDimdim.sh\nWhen I tried to login to http://192.168.2.3/dimdim all I'm getting is a little cherry icon in the top left hand corner.  After searching the blogs I found a fix \nI had to edit this file\n/usr/local/dimdim/ConferenceServer/apache-tomcat-5.5.17/conf/wrapper.conf\nand add this to the end of it\n# Added by Stephan for http://forums.dimdim.com/forum/showt...p?t=560&page=2\nwrapper.cpu.timeout=maximum\nwrapper.debug=true\nwrapper.ping.timeout=1000\nJust as a note here I had to change my port # to 8080 because my ISP at home blocks access to port 80. I also had to NAT port 8080 and 1935 on my firewall to allow it to work from the outside.\n \n \n \n \n \n
Dimdim VMWare Appliance:\nDimdim VMWare Appliance is a VMWare based Dimdim Virtual Image containing all the required Dimdim Components.  Dimdim VMWare Appliance can\nbe run on any operating system\nIf you need to read more about VMWare please follow the below link.\nhttp://www.vmware.com/solutions/whitepapers/virtualization.html\nPre-requisite\nBelow are pre-requisites for running the Dimdim VMWare Image.\n1) You need to download VMWare Player to run the Dimdim VM Image http://www.vmware.com/products/player/\n2) In order to run the Dimdim VMWare Image you would need to be either on a DHCP Network so the Dimdim VMWare Image can acquire an IP Address\nor you need to have a public static IP Address which can be assigned to the Dimdim VMWare Image.\n3) The Dimdim VMWare Image to be downloaded is around 1GB size, you would need to download this image on the machine where you intend to run\nthis Dimdim VMWare Image.\nPlease follow the below steps to get your Dimdim VMWare Image up.\n1. unzip VMWare image.\n2. chmod +x * (In case you are on linux)\n3. Import the VMWare image to the VMWare Player.\n3. Start the VMWare image from the player.\n4. Please make sure your VMWare Network Settings is in Bridged mode.\n5. User credentials for Dimdim Virtual machine is as follows\nUsername : root\nPassword : dimdim\nAutomatic Network Setup:\nIf your network is a DHCP Enabled Network the Dimdim VMWare Image would automatically be assigned an IP Address at the time of loading, once\nthe VMWare Image is loaded please login to the VMImage and follow the below steps.\n      - After the VMWare image is booted, the startup scrip will configure the required details to run all the Dimdim Components and\n      Start the Dimdim components automatically.\n      - You can know the IP Address of the VMWare Image by typing ifconfig from the terminal.\n      \tExample:\n      \t\troot@localhost dimdim]# ifconfig eth0\n      \t\tThe output will look like:\n      \t\teth0      Link encap:Ethernet  HWaddr 00:0C:29:CA:FA:7C\n\t\t          inet addr:192.168.1.10  Bcast:125.255.255.255  Mask:255.0.0.0\n\t\tThe IP address for the above example is 192.168.1.10\n      - You can go to this URL http://<VMWareIPAddress>/dimdim/ i.e. http://192.168.1.10/dimdim to start/join the Dimdim Web Meeting\n      - You can go to this URL http://<VMWareIPAddress>/DimdimAdminConsole.html i.e. http://192.168.1.10/DimdimAdminConsole.html\n      to manage you Dimdim VMWare Image. You can login to this console using following credentials\n      Username : admin\n      Password : dimdim\nManual Network Setup:\nIf the Dimdim VMWare Image do not get the IP address automatically then you need to assign an IP Address to the Dimdim VMWare Image:\n   Please follow the below steps to assign a static IP Address to  your VMWare Image:\n        1. Specify IP Address in ifcfg-eth0 file\n          - Open the file by typing the below command from a terminal\n        \troot@localhost dimdim]#vi /etc/sysconfig/network-scripts/ifcfg-eth0\n          - Modify the below parameters in the file.\n\t\t DEVICE=eth0\n\t\t BOOTPROTO=static\n\t\t BROADCAST=XXX.XXX.XXX.255\n\t\t IPADDR=XXX.XXX.XXX.XXX\n\t\t NETMASK=255.255.255.0\n\t\t NETWORK=XXX.XXX.XXX.0\n\t\t ONBOOT=yes\n\t\t Please note that the hardware address should remain the same as it is for the vmware image.\n\t2. Specify Name Server IP Address in resolv.conf\n\t  - Open the file by typing the below command from a terminal\n\t\troot@localhost dimdim]#vi /etc/resolv.conf\n\t  - Modify the below parameters in the file.\n   \t         nameserver XXX.XXX.XXX.XXX\n\t\t nameserver XXX.XXX.XXX.XXX\n\t3. vi /etc/sysconfig/network\n\t\tNETWORKING=yes\n\t\tNETWORKING_IPV6=yes\n\t\tHOSTNAME=localhost.localdomain\n\t\tGATEWAY=XXX.XXX.XXX.1\n\t4. Restart the Network Service.\n\t  - Type the below command to restart the network service.\n\t\troot@localhost dimdim]#service network restart\n\t5. Confirm IP Address of your VMWare Image\n\t  - Type the below command to check IP Address of your VMWare Image\n\t\troot@localhost dimdim]#ifconfig eth0\n\t  Please ensure that you have provided the proper netmask / broadcast ip address / default gateway/ dns server address.\n      - After assigning the IP address to the Dimdim VMWare Image you would need to do certain configuration changes,To change the\n      configuration, from the browser please go to the URL http://<VMWareIPAddress>/DimdimAdminConsole.html\n      You can login to this console using following credentials\n            Username : admin\n            Password : dimdim\n      - Go to "Admin Console" page, provide the new IP Address of the VMWare Image. This IP Address will be used to configure all\n      required Dimdim Components\n      - Stop the Dimdim Server : Click on "Stop Dimdim Components". This will stop all the Dimdim components.\n      - Start the Dimdim Server : Click on "Start Dimdim Components". This will start all the Dimdim components.\n      - Now you can goto http://<VMWareIPAddress>/dimdim/ to start the Dimdim Web Meeting.\nPort Configuration:\n\tIf you have firewall in your network then you need to open Port 80,8088 and 1935 in order to access Dimdim from outside your network.\nVMWare Appliance Administration:\nDimdim Appliance Management Console:\nGoto URL http://<VMWareIPAddress>/DimdimAdminConsole.html.You can login to this console using following credentials\n       Username : admin\n       Password : dimdim\nStart Dimdim Components:\n      - Goto http://<VMWareIPAddress>/DimdimAdminConsole.html and click on "Start Dimdim Components". This will start all the\n      Dimdim components.\n      - Now, start the Dimdim meeting using http://<newIPAddress>/dimdim/\nStop Dimdim Components:\n      - To stop Dimdim, goto http://<VMWareIPAddress>/DimdimAdminConsole.html and click on "Stop Dimdim Components". This will stop all\n      the Dimdim components.\nStatus of Dimdim Components:\n      - To check the status of Dimdim Componets, goto http://<VMWareIPAddress>/DimdimAdminConsole.html and click on "Status of Dimdim Components".\n      This check status of all the Dimdim components and notify the status accordingly.\nChange IP Address:\n      - In case you have modified the IP Address of the VMWare Appliance you can change the IP Address in Dimdim Configuration files by\n      entering IP Address or Hostname in the Admin Console. Please note that you would need to stop and start the Dimdim Components\n      once you have changed the IP Address or Hostname\nDimdim SMTP Server Configuration :\nPlease note that the current smtp settings are just sample setting. It is adviced that you change these settings to your own smtp configuration.\nBelow is suggested way to modify the smtp configuration\n1) Open dimdim.properties configuration file\nGo to folder cd /<dimdim_home>/ConferenceServer/apache-tomcat-5.5.17/webapps/dimdim/WEB-INF/classes/resources/\ni.e. cd /usr/local/dimdim/ConferenceServer/apache-tomcat-5.5.17/webapps/dimdim/WEB-INF/classes/resources/\n2) Modify the below settings as suggested. Please note that setting "dimdim.smtptype" needs to be configured depending on the type of smtp server.\n##\tEmail Parameters that can be configured by the user.\n##\nemail.server=<gmail smtp server address>\nemail.user=<your gmail id>\nemail.password=<your gmail account password>\nemail.sender=<your gmail account id>\nemail.PORT=25\nemail.EMAIL_CC=\nemail.EMAIL_BCC=\n##\n##\nemail.PROTOCOL=smtp\nemail.DEBUG_MAIL_SESSION=false\nemail.BUFFER_SIZE=2048\nemail.EMAIL_SUBJECT = has invited you to a Dimdim web meeting.\nemail.EMAIL_FROM_PERSON=DimDim Invitations\nemail.EMAIL_FROM=<your gmail account id>\nemail.EMAIL_REPLY_TO=<your gmail account id>\nemail.EMAIL_TO=\nemail.EMAIL_CHARSET=utf-8\n##\n##\n##  This property refers to type of the SMTP Server\n##  1 : Non SSL SMTP Server i.e. Dimdim SMTP Server\n##  2 : SSL SMTP Server  i.e. gmail SMTP Server\ndimdim.smtptype=2\n##\n##