<?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>ひろぽっぽれす &#187; proftpd</title>
	<atom:link href="http://hiropo.co.uk/archives/category/proftpd/feed" rel="self" type="application/rss+xml" />
	<link>http://hiropo.co.uk</link>
	<description>Web系エンジニアの適当なブログです。どうでも酔いものばかり作ってます。</description>
	<lastBuildDate>Mon, 12 Mar 2012 06:10:01 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>yumで、proftpd インストール &#8211; CentOS</title>
		<link>http://hiropo.co.uk/archives/213</link>
		<comments>http://hiropo.co.uk/archives/213#comments</comments>
		<pubDate>Sat, 22 Aug 2009 07:53:36 +0000</pubDate>
		<dc:creator>hirohi</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[proftpd]]></category>

		<guid isPermaLink="false">http://hiropo.co.uk/?p=213</guid>
		<description><![CDATA[SCPを使ってファイルのアップロードを行っていたが、WinSCPの使い勝手が悪いので、proftpdを突っ込んで、FTPサーバを作ることにした。やっぱりNeｘｔFTPを使いたい。 OSはCenｔOS、Fedora系は全般 &#8230; <a href="http://hiropo.co.uk/archives/213">続きを読む <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>SCPを使ってファイルのアップロードを行っていたが、WinSCPの使い勝手が悪いので、proftpdを突っ込んで、FTPサーバを作ることにした。やっぱりNeｘｔFTPを使いたい。</p>
<p>OSはCenｔOS、Fedora系は全般的にやり方は同じ。<br />
ソースからのコンパイルインストールではなく、yumでインストールすることにする。</p>
<p>proftpdを直接起動するのではなく、xinetd経由での起動にする。</p>
<pre>
[root@host ~]# rpm -q proftpd
パッケージ proftpd はインストールされていません。
[root@host ~]# yum install proftpd

[root@host ~]# rpm -q xinetd
パッケージ xinetd はインストールされていません。
[root@host ~]# yum install xinetd

[root@host ~]# vi /etc/proftpd.conf

▽変更箇所

#ServerType                     standalone
ServerType                      inetd

#DefaultRoot                    ~ !adm
DefaultRoot                     ~/public_html !wheel

[root@host ~]# vi /etc/xinetd.d/xproftpd

#disable                 = yes
disable                 = no

[root@host ~]# /etc/rc.d/init.d/xinetd start
</pre>
<p>xinetd経由でないと起動できないようにしたので、万が一、proftpdを単体起動しようとしても、エラーが出て起動できず。<br />
あとはFTPクライアントソフト（NextFTPやFFFTPなど）を使ってFTP接続できてるなら成功である。</p>
<p>繋がらない場合は、ファイヤーウォールなどポートの見直しなどをすること。</p>
]]></content:encoded>
			<wfw:commentRss>http://hiropo.co.uk/archives/213/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ProFTPで.htaccess等のドットファイルが見えない場合</title>
		<link>http://hiropo.co.uk/archives/40</link>
		<comments>http://hiropo.co.uk/archives/40#comments</comments>
		<pubDate>Wed, 23 Jul 2008 05:41:09 +0000</pubDate>
		<dc:creator>hirohi</dc:creator>
				<category><![CDATA[FedoraCore]]></category>
		<category><![CDATA[proftpd]]></category>

		<guid isPermaLink="false">http://hiropo.co.uk/archives/40</guid>
		<description><![CDATA[#vi /etc/proftpd.conf #追記↓ ListOptions "-a"]]></description>
			<content:encoded><![CDATA[<pre>
#vi  /etc/proftpd.conf

#追記↓
ListOptions  "-a"
</pre>
]]></content:encoded>
			<wfw:commentRss>http://hiropo.co.uk/archives/40/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

