Posts

Showing posts from October, 2012

Cannot resolve SID in Windows Server 2008

Image
While performing file permissions in Windows Server, sometimes one may notice that the SID of the users are not resolve properly especially between child domain and parent domain. To resolve this issue, local policy of the affected system needs to be changed as shown below. Open up the local group policy editor by running the command gpedit.msc on the windows server and navigate through Computer Configuration > Security Settings > Local Policies > Security Options and disable the three components Domain Member: Digitally encrypt or sign secure channel data (always) Domain member: Digitally encrypt secure channel data (when possible) Domain member: Digitally sign secure channel data (when possible)  Restart the Server to refresh the policy settings. This resoved my issue.

Plone Installation with Apache SSL Redirection

Image
A fresh installation of Fedora 17 is taken. To get most of the dependencies installed in a easier way, a group install of Development Tools is performed with root permission. yum -y groupinstall "Development Tools" After some trial and error of missing dependencies while installing Plone and it's add-ons, the following are also installed to simplify Plone installation at the later stage yum -y install zlib-devel openssl-devel libjpeg-devel mod_ssl httpd Download the latest plone from  http://plone.org/ . untar it and install the plone as root. installation will take sometime to complete. If any error thorws up, read carefully and install the missing plugins. ./install.sh standalone Once the installation is complete, read the README.html under /usr/local/Plone/zinstance/README.html Start the Plone by running ./bin/plonectl start from within the directory /usr/local/Plone/zinstance/ Open up a browser and navigate to the site http://localhost:8080 to ch...