<?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>Daghosoft Blog</title>
	<atom:link href="http://blog.daghosoft.com/WP/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.daghosoft.com/WP</link>
	<description>Tecnical Resources</description>
	<lastBuildDate>Mon, 20 May 2013 09:57:20 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>How to protect alias with  htpasswd2 file</title>
		<link>http://blog.daghosoft.com/WP/how-to-protect-alias-with-htpasswd2-file/</link>
		<comments>http://blog.daghosoft.com/WP/how-to-protect-alias-with-htpasswd2-file/#comments</comments>
		<pubDate>Tue, 12 Mar 2013 09:58:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Http Apache Config]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[ap]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://blog.daghosoft.com/WP/?p=212</guid>
		<description><![CDATA[Just a simple reminder : 1) Create passwd file: htpasswd2 -c /etc/apache2/htpasswd USER -> insert password 2) verify grant on path 3) create alias Alias /protected /root/path &#60;Location /protected &#62; AuthType Basic AuthName &#34;download for protected &#34; AuthUserFile /etc/apache2/htpasswd Require valid-user &#60;/Location&#62;]]></description>
		<wfw:commentRss>http://blog.daghosoft.com/WP/how-to-protect-alias-with-htpasswd2-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to backup al database in mysql</title>
		<link>http://blog.daghosoft.com/WP/how-to-backup-al-database-in-mysql/</link>
		<comments>http://blog.daghosoft.com/WP/how-to-backup-al-database-in-mysql/#comments</comments>
		<pubDate>Tue, 19 Feb 2013 09:09:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[bash script]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://blog.daghosoft.com/WP/?p=207</guid>
		<description><![CDATA[This script will create a backup for every database in $DEST folder. #!/bin/sh NOW=$(date +&#8221;%u&#8221;) DEST=/backup/$HOSTNAME echo &#8220;######################## Start Backup &#8221; mkdir -p $DEST DBS=&#8221;$(mysql -Bse &#8216;show databases&#8217;)&#8221; for db in $DBS do mysqldump $db > $DEST/$db-$NOW.sql echo $db &#8220;Status : &#8221; $? done]]></description>
		<wfw:commentRss>http://blog.daghosoft.com/WP/how-to-backup-al-database-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to configure Apache Security on Ldap</title>
		<link>http://blog.daghosoft.com/WP/how-to-configure-apache-security-on-ldap/</link>
		<comments>http://blog.daghosoft.com/WP/how-to-configure-apache-security-on-ldap/#comments</comments>
		<pubDate>Wed, 04 Jul 2012 12:24:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Http Apache Config]]></category>
		<category><![CDATA[ldap]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[http apache]]></category>
		<category><![CDATA[LDAP]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.daghosoft.com/WP/?p=190</guid>
		<description><![CDATA[This is a simply configuration of apahce to use Ldap authentication, You need to enable ldap and ldap_auth modules. &#160; &#60;Location /ldaplocation &#62; &#160; AuthType Basic AuthName &#34;ldap auth&#34; AuthBasicProvider ldap AuthLDAPBindDN &#34;CN=ldapbind,O=test,C=it&#34; AuthLDAPBindPassword mypasswordhere AuthLDAPURL &#34;ldap://ldaphost:389/?uid?sub?(objectClass=inetOrgPerson)&#34; &#160; Options Indexes SetOutputFilter DEFLATE &#60;Limit OPTIONS PROPFIND GET REPORT MKACTIVITY PROPPATCH PUT CHECKOUT MKCOL MOVE COPY DELETE &#8230; </p><p><a class="more-link block-button" href="http://blog.daghosoft.com/WP/how-to-configure-apache-security-on-ldap/">Continue reading &#187;</a>]]></description>
		<wfw:commentRss>http://blog.daghosoft.com/WP/how-to-configure-apache-security-on-ldap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 simple step to use .htaccess &amp; .htpasswd</title>
		<link>http://blog.daghosoft.com/WP/3-simple-step-to-use-htaccess-htpasswd/</link>
		<comments>http://blog.daghosoft.com/WP/3-simple-step-to-use-htaccess-htpasswd/#comments</comments>
		<pubDate>Tue, 15 May 2012 10:06:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Http Apache Config]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[htpasswd]]></category>
		<category><![CDATA[http apache]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://blog.daghosoft.com/WP/?p=177</guid>
		<description><![CDATA[1) Create htpasswd htpasswd -c /srv/www/htpasswd username &#8212;-&#62; &#60;insert password&#62; 2) Put file named .htaccess containing this lines: ####################################### AuthUserFile  /srv/www/.htpasswd AuthType Basic AuthName &#34;backend&#34; Require valid-user ####################################### 3) allow override in http.con as follow: &#60;Directory &#34;/srv/www/htdocs&#34;&#62;; ... &#160; # AllowOverride controls what directives may be placed in .htaccess files. # It can be &#34;All&#34;, &#8230; </p><p><a class="more-link block-button" href="http://blog.daghosoft.com/WP/3-simple-step-to-use-htaccess-htpasswd/">Continue reading &#187;</a>]]></description>
		<wfw:commentRss>http://blog.daghosoft.com/WP/3-simple-step-to-use-htaccess-htpasswd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First DaghDocs Beta Release</title>
		<link>http://blog.daghosoft.com/WP/first-daghdocs-beta-release/</link>
		<comments>http://blog.daghosoft.com/WP/first-daghdocs-beta-release/#comments</comments>
		<pubDate>Thu, 10 May 2012 20:47:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.daghosoft.com/WP/?p=152</guid>
		<description><![CDATA[Today I&#8217;ve released the first DaghDocs Beta to the world. In the last 6 month I&#8217;ve work on developing, configuring, testing and developing and configuring and testing again and again and again, but now it&#8217;s ready ! I choose Google Code as platform of distribution. Feel free to ask and suggest new feature, bugs and &#8230; </p><p><a class="more-link block-button" href="http://blog.daghosoft.com/WP/first-daghdocs-beta-release/">Continue reading &#187;</a>]]></description>
		<wfw:commentRss>http://blog.daghosoft.com/WP/first-daghdocs-beta-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to export Tivoli Directory Server to .ldif file</title>
		<link>http://blog.daghosoft.com/WP/how-to-export-tivoli-directory-server-to-ldif-file/</link>
		<comments>http://blog.daghosoft.com/WP/how-to-export-tivoli-directory-server-to-ldif-file/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 13:47:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[ibm]]></category>
		<category><![CDATA[LDAP]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sistem admin]]></category>

		<guid isPermaLink="false">http://blog.daghosoft.com/WP/?p=119</guid>
		<description><![CDATA[This script is simply and usefull to backup all users in a tivoli directory server to an ldif file. When schedule by crontab it&#8217;s possible to add in command line destination folder by $1 param, so you can have different versions of backup. 1 2 3 4 5 6 7 8 9 10 11 12 &#8230; </p><p><a class="more-link block-button" href="http://blog.daghosoft.com/WP/how-to-export-tivoli-directory-server-to-ldif-file/">Continue reading &#187;</a>]]></description>
		<wfw:commentRss>http://blog.daghosoft.com/WP/how-to-export-tivoli-directory-server-to-ldif-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql Usefull Commands</title>
		<link>http://blog.daghosoft.com/WP/mysql-usefull-commands/</link>
		<comments>http://blog.daghosoft.com/WP/mysql-usefull-commands/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 13:21:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[sistem admin]]></category>

		<guid isPermaLink="false">http://blog.daghosoft.com/WP/?p=37</guid>
		<description><![CDATA[Here some usefull command to administer Mysql Database Server: #Access command line: mysql -uroot -upassword #Viev all user: select user,password,host from mysql.user; #Enable root remote login : GRANT ALL PRIVILEGES ON *.* TO &#8216;root&#8217;@'%&#8217; IDENTIFIED BY &#8216;password&#8217;; FLUSH PRIVILEGES; exit; #Execute Mysql command from bash: mysql -uroot -e &#8220;create database prod&#8221; mysql -uroot -e &#8220;CREATE &#8230; </p><p><a class="more-link block-button" href="http://blog.daghosoft.com/WP/mysql-usefull-commands/">Continue reading &#187;</a>]]></description>
		<wfw:commentRss>http://blog.daghosoft.com/WP/mysql-usefull-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Imagemagick power resizer command</title>
		<link>http://blog.daghosoft.com/WP/imagemagick-power-resizer-command/</link>
		<comments>http://blog.daghosoft.com/WP/imagemagick-power-resizer-command/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 13:16:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bash script]]></category>
		<category><![CDATA[Developing Tool]]></category>
		<category><![CDATA[imagemagik]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.daghosoft.com/WP/?p=34</guid>
		<description><![CDATA[This command is usefull to resize only images greater than x in a folder.It put resized images in a folder called thumbs but you can convert file implace deleting &#8220;thumb/&#8221; string. 1 for i in `ls *.jpg`; do convert $i -resize 800x800\&#38;gt; thumb/$i ; done]]></description>
		<wfw:commentRss>http://blog.daghosoft.com/WP/imagemagick-power-resizer-command/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Lvm Extend Volume Group adding new Disk</title>
		<link>http://blog.daghosoft.com/WP/lvm-extend-volume-group-adding-new-disk/</link>
		<comments>http://blog.daghosoft.com/WP/lvm-extend-volume-group-adding-new-disk/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 11:38:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[disk management]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sistem admin]]></category>

		<guid isPermaLink="false">http://blog.daghosoft.com/WP/?p=31</guid>
		<description><![CDATA[These are the step to add space to and existing Logical Volume on a Volume Group: 1) add disk and perform  rescan-scsi-bus.sh 2) Add Physical Volume available for LVM: pvcreate (-t)* /dev/sdc 3) Exteng the volume group (here namend system) with new create physical volume: vgextend (-t)* system /dev/sdc 4) Extend target logical volume (here &#8230; </p><p><a class="more-link block-button" href="http://blog.daghosoft.com/WP/lvm-extend-volume-group-adding-new-disk/">Continue reading &#187;</a>]]></description>
		<wfw:commentRss>http://blog.daghosoft.com/WP/lvm-extend-volume-group-adding-new-disk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hotw to tunnel by ssh from local server to remote One.</title>
		<link>http://blog.daghosoft.com/WP/hotw-to-tunnel-by-ssh-from-local-server-to-remote-one/</link>
		<comments>http://blog.daghosoft.com/WP/hotw-to-tunnel-by-ssh-from-local-server-to-remote-one/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 11:33:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Lan]]></category>
		<category><![CDATA[lan]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[ssh tunnel]]></category>

		<guid isPermaLink="false">http://blog.daghosoft.com/WP/?p=26</guid>
		<description><![CDATA[Taken From : http://www.revsys.com/writings/quicktips/ssh-tunnel.html ssh -f user@personal-server.com -L 2000:personal-server.com:25 -N (working example ssh -f root@192.168.40.91 -L 0.0.0.0:8585:192.168.40.91:8585 -N) The -f tells ssh to go into the background just before it executes the command. This is followed by the username and server you are logging into. The -L 2000:personal-server.com:25 is in the form of -L local-port:host:remote-port. Finally &#8230; </p><p><a class="more-link block-button" href="http://blog.daghosoft.com/WP/hotw-to-tunnel-by-ssh-from-local-server-to-remote-one/">Continue reading &#187;</a>]]></description>
		<wfw:commentRss>http://blog.daghosoft.com/WP/hotw-to-tunnel-by-ssh-from-local-server-to-remote-one/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
