Android with root Git for version control Lircd with Raspberry Pi for IR receiver and sender Tips for Windows Depolying your own password management tool -- KeeWeb Depoly your flask app into Heroku Fix shit IE code manually ISBN to Book Category by Scraping DangDang A Generic Makefile for C/C++ Program Configure Raspberry pi Remove watermark with PyPDF2 tips for docker Anaconda+TensorFlow+CUDA Snippets Configure Remote Mathematica Kernel Build your own ngrok server Access Array SSL VPN 使用Rstudio制作html5幻灯片 tips for Mac OS X system Tips for ipython notebook 配置Ubuntu server + Openbox (Obuntu) tips for Vimperator tips for Vim 安装CUDA My First Jekyll Blog rsync常见选项 在Linux中读取Ipod touch的文件 tip for texmacs 在VPS上建站的一些tip Gnuplot绘图札记 Samba系统和autofs自动挂载 Linux中alsamixer声卡无法录音 搭建自己的RSS订阅器——Tiny Tiny RSS Grub2引导安装Ubuntu awk tips 将Ubuntu系统装入U盘 The Great Rtorrent 编译GCC 再这样剁手!!!该死的libgd 使用ulimit进行资源限制 使用SSH代理上IPV6 使用RCurl抓取网页数据 修复Ubuntu Grub记 openbox中的文件关联 在Ubuntu 12.04下编译qtiplot 处理BCM4312网卡驱动纪实 配置我的Ubuntu Server记 Cygwin杂记 Linux 使普通用户具有以超级权限执行脚本 让firefox自定义地处理文件类型 WordPress优秀主题及插件 在phpcloud上搭建wordpress UBUNTU下用pptpd做VPN server ubuntu升级内核过后的一些问题 安装telnet服务 kubuntu札记 64位kubuntu札记 统计软件R Virtualbox stardict星际译王 Ubuntu重装windows系统后的grub引导修复 SSH服务及花生壳域名解析 采用cbp2make工具由code::blocks工程创建makefile文件 UBUNTU 札记

搭建自己的RSS订阅器——Tiny Tiny RSS

2014年06月04日

Google Reader后一直在纠结用什么RSS订阅器好,在线的离线的都试了一下,找到一个还过得去的”鲜果”,但是同步太慢、字太小伤眼…

不知道咋地知道了Tiny Tiny RSS这个php应用可以用来搭建自己的RSS订阅网站。刚好我的phpcloud还剩一个container,于是乎就决定自己架一个来玩一玩。(本博客就搭在phpcloud上)

安装TTRss很简单,和Wordpress类似,从github下载好源代码后上传到phpcloud就行了,在第一次访问时会要求输入数据库的信息,phpcloud的数据库链接方式如下:

Assuming your container name is mycontainer, you should use the following credentials to connect to your database:

    Database host: mycontainer-db.my.phpcloud.com

    Database port: 3306

    Database schema name: mycontainer
    Database user: mycontainer

    Database password: Your container password

初始用户名和密码分别是admin和password,进去了再修改。

phpcloud没有提供命令行CLI和定时任务crontab1,所以TTRss的feeds没有办法定时更新,一个简单粗暴的方式就是如这里所说的在自己的机器上设置crontab结合wget来更新feeds。

*/30 * * * * /usr/bin/wget --output-document=/dev/null --timeout=600 "http://www.your-site.xxx/backend.php?op=globalUpdateFeeds&daemon=1" 

也可以在phpcloud的控制面板上设置Job Rules让它定期访问这个地址。或者在config.php中设置SIMPLE_UPDATE_MODEtrue,保持TTRss网页在线即可定期更新。

TTRss还有安卓的客户端,和原来的gReader貌似差不多。

  1. 我曾经遇到过一个很奇怪的crontab问题,当root用户密码过期后,crontab任务不会执行,执行grep CRON /var/log/syslog查看系统日志发现Authentication token is no longer valid; new one requiredsudo passwd root更新密码或者使用chage命令设置密码过期时间即可。