<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jord Swart EDV</title>
	<atom:link href="http://www.jordswart.org/feed" rel="self" type="application/rss+xml" />
	<link>https://www.jordswart.org</link>
	<description>We have content written all over</description>
	<lastBuildDate>Tue, 29 Jan 2013 22:05:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Fix Time Machine Sparsebundle NAS Based Backup Errors</title>
		<link>https://www.jordswart.org/archives/1066</link>
		<comments>https://www.jordswart.org/archives/1066#comments</comments>
		<pubDate>Tue, 29 Jan 2013 22:04:20 +0000</pubDate>
		<dc:creator>Jord</dc:creator>
				<category><![CDATA[Just bloggin']]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">https://www.jordswart.org/?p=1066</guid>
		<description><![CDATA[My time machine backups go to an USB disc that is connected to my wifi router. For some reason I got regular problems with time machine. It tells me “Time Machine completed a verification of your backups. To improve reliability, Time<span class="ellipsis">&#8230;</span><div class="read-more"><a href="https://www.jordswart.org/archives/1066">Read more &#8250;</a></div><!-- end of .read-more -->]]></description>
				<content:encoded><![CDATA[<p>My time machine backups go to an USB disc that is connected to my wifi router. For some reason I got regular problems with time machine. It tells me “Time Machine completed a verification of your backups. To improve reliability, Time Machine must create a new backup for you.” Doing so deletes all past backups. It also takes hours to complete.</p>
<p>Someone made a <a title="Fix time machine sparsebundle" href="http://www.garth.org/archives/2011,08,27,169,fix-time-machine-sparsebundle-nas-based-backup-errors.html">nice post</a> on how to fix this situation. I haven&#8217;t tried it, my mac is already rebuilding the backup, but it will be something I will try next time this error pops up.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.jordswart.org/archives/1066/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Host subsonic at home with SSL (Ubuntu install)</title>
		<link>https://www.jordswart.org/archives/739</link>
		<comments>https://www.jordswart.org/archives/739#comments</comments>
		<pubDate>Sun, 09 Dec 2012 11:11:01 +0000</pubDate>
		<dc:creator>Jord</dc:creator>
				<category><![CDATA[Free software]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[private cloud]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[subsonic]]></category>

		<guid isPermaLink="false">http://www.jordswart.org/?p=739</guid>
		<description><![CDATA[Install subsonic at home on your own apache with https and access it over the internet.<div class="read-more"><a href="https://www.jordswart.org/archives/739">Read more &#8250;</a></div><!-- end of .read-more -->]]></description>
				<content:encoded><![CDATA[<p>I fell in love with <a title="Subsonic home" href="http://www.subsonic.org" target="_blank">subsonic</a>. It allows me to play my media (music and movies) while I am away from home, getting bored in a hotel. For the installation I had a couple of requirements:</p>
<ul>
<li>To prevent people from snooping on my passwords, https will be used as the protocol.</li>
<li>It must work on the default https port (443) to prevent potential problems with firewalls.</li>
</ul>
<p>Now on Ubuntu (the Linux of choice for this installation) any port below 1024 can only be used by a process running as root. Since I didn&#8217;t want to run subsonic itself as root, I decided to use Apache in front of my subsonic installation. Apache can bind the port as root and then drop its privileges to the &#8220;www-data&#8221; user, something I don&#8217;t think subsonic is able to do.</p>
<p>The result of my installation is the following setup:</p>
<ul>
<li>Apache running with https (ssl) on port 443. Apache will be reachable from the internet.</li>
<li>Subsonic running on port 4040 as a &#8220;normal&#8221; http service. Since the connection from apache to subsonic runs on the same machine, there is no need for encryption here. With this configuration subsonic itself is not directly reachable from the internet, but only through apache.</li>
<li>Apache will be configured as a so called reverse proxy to pass requests from apache to subsonic. This means your browser will talk to apache and Apache will talk to Subsonic.</li>
</ul>
<p><span id="more-739"></span></p>
<h3>Install Apache</h3>
<p>The following command will install apache with support for https:</p>
<pre>sudo apt-get install apache2 libapache-mod-ssl</pre>
<p>Take note that for https, you will need the libapache-mod-ssl package, apache2 alone will not do https.</p>
<p>For ssl encryption we need to generate a so called &#8220;self signed certificate&#8221;.  There are a couple of ways to do this, I used the one described <a title="How to setup a self-signed certificate" href="https://www.digitalocean.com/community/articles/how-to-create-a-ssl-certificate-on-apache-for-ubuntu-12-04">here</a>. The steps are:</p>
<pre>sudo mkdir /etc/apache2/ssl</pre>
<pre>sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/apache2/ssl/apache.key -out /etc/apache2/ssl/apache.crt</pre>
<p>This last one will ask you a lot of questions. The most important one however is the &#8220;common name&#8221;, which shall not be empty. Enter your official domain name, or your IP. If you don&#8217;t have an official domain name, or your IP keeps changing, Please set up a dynamic DNS somewhere on the net. I got mine at <a title="afraid.org, a free dynamic DNS provided" href="http://freedns.afraid.org/" target="_blank">afraid.org</a>. For the rest of the article I will assume that your host will be called supersonic.mydomain.com, you will need to replace that with your personal URL.</p>
<p>Now we need to configure in such a way that it will proxy all the requests to subsonic. Since subsonic will be installed on port 4040 afterwards, apache will forward all requests to port 4040. Create the following file for your domain /etc/apache2/sites-available/supersonic-mydomain.com-ssl with the following content:</p>
<pre>  
    ServerName supersonic.mydomain.com
    ServerAlias supersonic.mydomain.com
    ErrorLog ${APACHE_LOG_DIR}/error.log
    LogLevel warn
    CustomLog ${APACHE_LOG_DIR}/ssl_access.log combined
    SSLEngine on
    SSLCertificateFile /etc/apache2/ssl/apache.crt
    SSLCertificateKeyFile /etc/apache2/ssl/apache.key
    BrowserMatch "MSIE [2-6]" \
    nokeepalive ssl-unclean-shutdown \
    downgrade-1.0 force-response-1.0
    # MSIE 7 and newer should be able to use keepalive
    BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
    ProxyRequests Off

      Order allow,deny
      Allow from all

    ProxyPass / http://127.0.0.1:4040/
    ProxyPassReverse / http://127.0.0.1:4040/</pre>
<p>Now enable this configuration:</p>
<pre>sudo a2ensite supersonic-mydomain.com-ssl
sudo service apache2 reload</pre>
<h3>Install subsonic</h3>
<p>First you need to install some dependencies for the subsonic package:</p>
<pre>sudo apt-get install lame flac faad vorbis-tools ffmpeg openjdk-6-jre</pre>
<p>Then head over to <a title="Subsonic home" href="http://www.subsonic.org" target="_blank">subsonic.org</a> and download the latest package for your distribution. After you have downloaded change to the directory holding the package and type:</p>
<pre>sudo dpkg -i subsonic-4.7.deb</pre>
<p>Please note that we will install subsonic to run without https support. The https protocol will be handled by apache, so the communication between apache and subsonic is unencrypted. Since both services run on the same machine this should not be an issue at all. Now modify the file /etc/default/subsonic to look like the one below:</p>
<pre>#
# This is the configuration file for the Subsonic service
# (/etc/init.d/subsonic)
#
# To change the startup parameters of Subsonic, modify
# the SUBSONIC_ARGS variable below.
#
# Type "supersonic --help" on the command line to read an
# explanation of the different options.
#
# For example, to specify that Subsonic should use port 80 (for http)
# and 443 (for https), and use a Java memory heap size of 120 MB, use
# the following:
#
SUBSONIC_ARGS="--port=4040 --max-memory=512"

# The user which should run the Subrsonic process. Default "root".
# Note that non-root users are by default not allowed to use ports
# below 1024. Also make sure to grant the user write permissions in
# the music directories, otherwise changing album art and tags will fail.
SUBSONIC_USER=[the_name_of_your_unprivileged_user]</pre>
<p>Now restart subsonic</p>
<pre>sudo service subsonic restart</pre>
<p>and check in your browser whether it all worked as intended:</p>
<pre>https://supersonic.mydomain.com</pre>
]]></content:encoded>
			<wfw:commentRss>https://www.jordswart.org/archives/739/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Defaulting to SSL now</title>
		<link>https://www.jordswart.org/archives/1034</link>
		<comments>https://www.jordswart.org/archives/1034#comments</comments>
		<pubDate>Wed, 05 Dec 2012 17:46:24 +0000</pubDate>
		<dc:creator>Jord</dc:creator>
				<category><![CDATA[Just bloggin']]></category>
		<category><![CDATA[Site news]]></category>
		<category><![CDATA[https]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">https://www.jordswart.org/?p=1034</guid>
		<description><![CDATA[A new modification of the website: it now only supports https:// connections. As a result all communication with the site is now secure (we use 128 bit encryption).]]></description>
				<content:encoded><![CDATA[<p>A new modification of the website: it now only supports https:// connections.</p>
<p>As a result all communication with the site is now secure (we use 128 bit encryption).</p>
]]></content:encoded>
			<wfw:commentRss>https://www.jordswart.org/archives/1034/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Documentum datadictionary languages</title>
		<link>https://www.jordswart.org/archives/732</link>
		<comments>https://www.jordswart.org/archives/732#comments</comments>
		<pubDate>Fri, 05 Oct 2012 15:24:16 +0000</pubDate>
		<dc:creator>Jord</dc:creator>
				<category><![CDATA[Documentum]]></category>
		<category><![CDATA[Just bloggin']]></category>

		<guid isPermaLink="false">http://www.jordswart.org/?p=732</guid>
		<description><![CDATA[Always have the "en" locale set in the datadictionary of Documentum<div class="read-more"><a href="https://www.jordswart.org/archives/732">Read more &#8250;</a></div><!-- end of .read-more -->]]></description>
				<content:encoded><![CDATA[<p>One of my customers had some troubles installing Documentum, so I went out to support them. The first step I did was check some basic functionality of their current installation. So I tried to create a document.</p>
<p>For some reason I was unable to select the document type (dm_document). Neither could I select format. Funny, funny. Well since the customer said they had problems with the installation, I decided to reinstall. There was nothing in the repository anyway.</p>
<p>During the installation I normally change the datadictionary script to add support for the &#8220;de&#8221; locale. I noticed that the remarks in front of the &#8220;de&#8221; line had already been removed. But someone also included a remark in front of the &#8220;en&#8221; line. Now I didn&#8217;t really pay attention to it thinking that it might as well be correct.</p>
<p>How wrong I was. After the installation I still had the same problems creating a document. Turns out that enabling &#8220;en&#8221; in the repository and publishing the datadictionary fixed the issue.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.jordswart.org/archives/732/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally a good OS X music player</title>
		<link>https://www.jordswart.org/archives/723</link>
		<comments>https://www.jordswart.org/archives/723#comments</comments>
		<pubDate>Thu, 20 Sep 2012 09:03:31 +0000</pubDate>
		<dc:creator>Jord</dc:creator>
				<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://www.jordswart.org/?p=723</guid>
		<description><![CDATA[Finally, I hear you ask? But we have iTunes! Yeah right. I don&#8217;t mind how well iTunes might serve others, for me it is just not working at all. I have around 7500 Ogg Vorbis files that just won&#8217;t really<span class="ellipsis">&#8230;</span><div class="read-more"><a href="https://www.jordswart.org/archives/723">Read more &#8250;</a></div><!-- end of .read-more -->]]></description>
				<content:encoded><![CDATA[<p>Finally, I hear you ask? But we have iTunes!</p>
<p>Yeah right.</p>
<p>I don&#8217;t mind how well iTunes might serve others, for me it is just not working at all. I have around 7500 Ogg Vorbis files that just won&#8217;t really work. iTunes will play them, but forget about reading the metadata and artworks. You can workaround that issue, but to be honest, it is not worth the pain. The other main issue I have with the software is the inability to synchronise with the music collection I carry on a separate disk. This collection does not conform to the iTunes way of working, so syncing it to iTunes is a job I need to carry out manually. -For the iTunes lovers out there, there is a cool script that can handle that problem rather well. Get it at <a title="Sync iTunes with an external library" href="http://dougscripts.com/itunes/scripts/ss.php?sp=musicfolderfilesnotadded2" target="_blank">dougscript.com</a>.-</p>
<p>So since I bought a Mac, I have been looking for an alternative. Preferably an application with integration to the likes of last.fm, wiki and whatever else is out there. Something like <a title="Amarok, the KDE music player" href="http://amarok.kde.org/" target="_blank">Amarok</a>, which I used under Linux. I think I tried them all, but none of them really worked. The best match used to be <a title="Get Songbird" href="http://www.getsongbird.com/" target="_blank">songbird</a>, which, although being almost a perfect fit, just was not able to handle any collection with more than 20.000 songs.</p>
<p>To be honest: I had already given up. I even converted als my precious FLAC files to Apple Lossless, so I could at least import them in iTunes correctly. And then there was <a title="Spotify" href="http://www.spotify.com/" target="_blank">spotify</a>, which looked good enough, did the social thing and had almost everything I needed. So my music collection kinda became dusty and unused.</p>
<p>In comes <a title="It just plays" href="http://www.tomahawk-player.org/" target="_blank">Tomahawk</a> with a jawbreaking set of features:</p>
<ul>
<li>It will automatically sync one or more folders on your PC. Music management with a file manager is just such a great invention, Apple should claim it for themselves in the next release of iTunes! -On a Mac you have to unhide your /Volumes folder with the following command: &#8220;sudo chflags nohidden /Volumes/&#8221;. Execute it in Terminal and Tomahawk can use your drives.-</li>
<li>As they say on the website: it just plays. My Ogg Vorbis files are part of my collection again.</li>
<li>It is social. Integration with Twitter, Google Talk and Jabber are included, so you can share the music you play with people you want. It also integrates with music recommendation services like last.fm.</li>
<li>It integrates with metadata search engines like Musicbrainz.</li>
<li>It has multiple content sources. You can use a shared iTunes library, a local collection, spotify and a subsonic server to get access to music. Hell you can even share your whole collection with friends, they can then stream your music to their PCs (stream, not copy). Check with your lawyer, before using this one though.</li>
<li>It looks great. The first version I tested (0.4x) still looked like a ported application. The latest greatest (0.55) looks like a native Mac application.</li>
<li>It runs on Windows, Mac and Linux. What else could you want?</li>
<li>It is free and licensed under the GPL.</li>
</ul>
<div>Some screens of the Tomahawk radio (listen to related music), the artist info page and the song info page.</div>

<a href='https://www.jordswart.org/archives/723/tomahawk-radio' title='Tomahawk-radio'><img width="150" height="93" src="https://www.jordswart.org/wp-content/uploads/2012/09/Tomahawk-radio-150x93.png" class="attachment-thumbnail" alt="Tomahawk radio 150x93 Finally a good OS X music player"  title="Finally a good OS X music player" /></a>
<a href='https://www.jordswart.org/archives/723/tomahawk-artist-info' title='Tomahawk-artist-info'><img width="150" height="93" src="https://www.jordswart.org/wp-content/uploads/2012/09/Tomahawk-artist-info-150x93.png" class="attachment-thumbnail" alt="Tomahawk artist info 150x93 Finally a good OS X music player"  title="Finally a good OS X music player" /></a>
<a href='https://www.jordswart.org/archives/723/tomahawk-song-info' title='Tomahawk-song-info'><img width="150" height="93" src="https://www.jordswart.org/wp-content/uploads/2012/09/Tomahawk-song-info-150x93.png" class="attachment-thumbnail" alt="Tomahawk song info 150x93 Finally a good OS X music player"  title="Finally a good OS X music player" /></a>

<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>https://www.jordswart.org/archives/723/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It sure is hot in my car</title>
		<link>https://www.jordswart.org/archives/716</link>
		<comments>https://www.jordswart.org/archives/716#comments</comments>
		<pubDate>Tue, 14 Aug 2012 11:33:28 +0000</pubDate>
		<dc:creator>Jord</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Just bloggin']]></category>
		<category><![CDATA[hot]]></category>
		<category><![CDATA[Iphone]]></category>
		<category><![CDATA[summer]]></category>

		<guid isPermaLink="false">http://www.jordswart.org/?p=716</guid>
		<description><![CDATA[Just got my iPhone out of my car. I should not keep it there in summer, I guess.]]></description>
				<content:encoded><![CDATA[<p>Just got my iPhone out of my car. I should not keep it there in summer, I guess.</p>
<p><a href="https://www.jordswart.org/wp-content/uploads/2012/08/20120814-133110.jpg"><img class="alignnone size-full aligncenter" src="https://www.jordswart.org/wp-content/uploads/2012/08/20120814-133110.jpg" alt="20120814 133110 It sure is hot in my car"  title="It sure is hot in my car" /></a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.jordswart.org/archives/716/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One Macbook Pro two hard disks and encryption</title>
		<link>https://www.jordswart.org/archives/712</link>
		<comments>https://www.jordswart.org/archives/712#comments</comments>
		<pubDate>Wed, 01 Aug 2012 17:22:45 +0000</pubDate>
		<dc:creator>Jord</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[separate home drive]]></category>
		<category><![CDATA[SSD]]></category>
		<category><![CDATA[unlock]]></category>

		<guid isPermaLink="false">http://www.jordswart.org/?p=712</guid>
		<description><![CDATA[To celebrate Mountain Lion I decided to install a SSD in my aging but functioning Macbook Pro. I removed the optical drive, because I hardly use it anyway and installed the drive as a second drive. After that I installed<span class="ellipsis">&#8230;</span><div class="read-more"><a href="https://www.jordswart.org/archives/712">Read more &#8250;</a></div><!-- end of .read-more -->]]></description>
				<content:encoded><![CDATA[<p>To celebrate Mountain Lion I decided to install a SSD in my aging but functioning Macbook Pro. I removed the optical drive, because I hardly use it anyway and installed the drive as a second drive. After that I installed a fresh copy of Mountain Lion on the SSD. The &#8220;old&#8221; disk now holds my home directory. It just feels like a brand new laptop.</p>
<p>Next step: encryption, you never know if someone gets his hands on your laptop. Getting the encryption on the SSD (OS X installation disk) is easy, just do what you always do.</p>
<p>However the home disk is another story. Since OS X only asks for your password after logging in to the system and by that time you already need your home directory this is not something that can be done without any scripting.</p>
<p>Luckily those scripts are around. So after activating the encryption for your second drive fire up your browser and follow the instructions on <a href="https://github.com/jridgewell/unlock">https://github.com/jridgewell/unlock</a> (do read the read me, it will save you a lot of time downloading and stuff). Works like a charm.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.jordswart.org/archives/712/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The ten commandments of Bowieism</title>
		<link>https://www.jordswart.org/archives/705</link>
		<comments>https://www.jordswart.org/archives/705#comments</comments>
		<pubDate>Wed, 27 Jun 2012 22:32:02 +0000</pubDate>
		<dc:creator>Jord</dc:creator>
				<category><![CDATA[Just bloggin']]></category>

		<guid isPermaLink="false">http://www.jordswart.org/?p=705</guid>
		<description><![CDATA[&#160; Taken from Dangerous Minds]]></description>
				<content:encoded><![CDATA[<p><a href="https://www.jordswart.org/wp-content/uploads/2012/06/bowieism.jpeg"><img class="aligncenter size-full wp-image-706" title="bowieism" src="https://www.jordswart.org/wp-content/uploads/2012/06/bowieism.jpeg" alt=" The ten commandments of Bowieism" width="465" height="639" /></a></p>
<p>&nbsp;</p>
<p>Taken from <a title="Ten commandments of Bowieism" href="http://www.dangerousminds.net/comments/the_10_commandments_of_bowieism">Dangerous Minds</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.jordswart.org/archives/705/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good tabbed putty quest</title>
		<link>https://www.jordswart.org/archives/694</link>
		<comments>https://www.jordswart.org/archives/694#comments</comments>
		<pubDate>Wed, 25 Apr 2012 14:36:58 +0000</pubDate>
		<dc:creator>Jord</dc:creator>
				<category><![CDATA[Just bloggin']]></category>
		<category><![CDATA[putty]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[tabbed]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.jordswart.org/?p=694</guid>
		<description><![CDATA[We all know Putty and it has been a very useful tool over the years (on windows that is). However there are some features that are really lacking, especially if you compare it to the likes of KDE Konsole or<span class="ellipsis">&#8230;</span><div class="read-more"><a href="https://www.jordswart.org/archives/694">Read more &#8250;</a></div><!-- end of .read-more -->]]></description>
				<content:encoded><![CDATA[<p>We all know Putty and it has been a very useful tool over the years (on windows that is). However there are some features that are really lacking, especially if you compare it to the likes of KDE Konsole or iTerm on the Mac. The feature I miss most is the ability to use tabs. Now there are a lot of alternatives out there that are all very fancy looking and, most of the times, based on .NET.</p>
<p>I&#8217;ve found all of them to crash on me at least once a day. All, with one exception. The exception is called putty-nd. It is not fancy looking, but does what it should do. Now if it could only detach and reattach tabs&#8230;</p>
<p><a href="https://www.jordswart.org/wp-content/uploads/2012/04/Putty-nd.jpeg"><img class="aligncenter size-medium wp-image-1040" title="Putty-nd screenshot" src="https://www.jordswart.org/wp-content/uploads/2012/04/Putty-nd-300x180.jpeg" alt=" Good tabbed putty quest" width="300" height="180" /></a></p>
<p>Get it <a title="Putty ND on Sourceforge" href="http://sourceforge.net/projects/putty-nd/" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.jordswart.org/archives/694/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing the ID of the documentum installation owner on Unix</title>
		<link>https://www.jordswart.org/archives/690</link>
		<comments>https://www.jordswart.org/archives/690#comments</comments>
		<pubDate>Mon, 23 Apr 2012 12:08:12 +0000</pubDate>
		<dc:creator>Jord</dc:creator>
				<category><![CDATA[Documentum]]></category>
		<category><![CDATA[Just bloggin']]></category>

		<guid isPermaLink="false">http://www.jordswart.org/?p=690</guid>
		<description><![CDATA[Because of some NFS issues I needed to synchronize the unix user account IDs of my various documentum installation owner accounts. I had expected it to be as easy as changing the passwd file and updating the rights. However things<span class="ellipsis">&#8230;</span><div class="read-more"><a href="https://www.jordswart.org/archives/690">Read more &#8250;</a></div><!-- end of .read-more -->]]></description>
				<content:encoded><![CDATA[<p>Because of some NFS issues I needed to synchronize the unix user account IDs of my various documentum installation owner accounts. I had expected it to be as easy as changing the passwd file and updating the rights. However things are slightly more complicated. Here is what I did:</p>
<pre>usermod -u 1234 dmadmin
cd /opt/
chown -R dmadmin /opt/documentum
chown -R dmadmin [path_to_data_directory]</pre>
<p>This all seems to work, however you will notice that as soon as you try to logon you will get &#8220;logon denied&#8221; messages ruining your day. The simple and obvious fix for this one is to execute the following as root:</p>
<pre>sh /opt/documentum/dba/dm_root_task</pre>
<p>Oh so obvious, but it took me some time and a little help to get there.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.jordswart.org/archives/690/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
