Moving from Google Reader to Tiny Tiny RSS

Written by
Date: 2013-05-27 10:22:35 00:00


Google reader replacement

Google reader is going to shut down its service in a little bit more than a month from now. They are doing that because there are very few people using their service.

Well RSS is something most of the people do not even know about, I know the readers of this blog know about it, so, I am not going to explain about it.

But "normal" people are using twitter, G+ or even Facebook, to get their daily dose of news, and they are following their favorite writers on those networks.

I still use rss to follow the sites I am interested in, rss, has a lot of advantages over the other methods that were not designed for that in the first place.

Just as one example, in all those social networks, if you miss an article, because you were too busy that day, chances are you will never be able to read it again, it will be lost below a pile of new posts, including those showing you the new cat of your friend, or that message telling you someone got eggs and bacon for his breakfast (not useful info, unless you get the recipe).

Well, as a rss user, and mostly as a Google Reader user, I have decided I need to switch to another service. My first option was to move to feedly, but then I have decided, I do not want to depend on the so called "cloud" for services I use everyday.

I have now decided to host my own service, and I have installed Tiny Tiny RSS.

Tiny Tiny RSS is an Open Source option to Google Reader, it can be hosted on your local machine (You are running Linux or Mac OS X right?), or you can host it online in any web hosting provider or your VPS provider.

Either way, you will have the data with you, and you will never have to suffer again from someone shutting down a service you rely on.

Well, enough blah blah. Let's now see how to install it.

There are a lot of ways, specially if you are using a shared hosting solution, I will show here how to install it on your own Unix like operating system.

Assumptions

  • You have access to root account
  • You have Apache, MySQL and PHP Installed

Let's first create the database that will hold your data, You can use either PostgreSQL or MySQL/MariaDB. I will use MySQL for this example.

mysql -u root -p

This will get you the prompt of MySQL. At that prompt enter these commands.

create database reader;
grant all privileges on reader.* to "mysql_user"@"localhost" identified by "strongpassword";
flush privileges;
exit

You now have the database ready. Just be sure to use some real strong password, and it will be better if you also use another user instead of mysql_user. The localhost part should also be changed in case your MySQL server in not in the same physical server as your Apache and PHP.

Let's now create the virtual Apache server to host Tiny Tiny RSS.

First the folder:

 mkdir -p /var/www/tt-rss/

And be sure the permissions are OK.

chown -R www-data:www-data /var/www/tt-rss
chmod 755 /var/www

www-data might be some other thing if you are not on Debian derivatives, in RedHat servers like CentOS it is www

Now the turn for the virtual server in Apache. As I am using Ubuntu this may very if you are using another distribution, unless Debian.

 vim /etc/apache2/sites-available/tt-rss.conf

Inside that file add these lines:

<VirtualHost *:80>
     ServerAdmin webmaster@example.com
     DocumentRoot /var/www/tt-rss
     ServerName rss.example.com
     ErrorLog /etc/var/www/tt-rss/error.log
     CustomLog /var/www/tt-rss/access.log
</VirtualHost>

This is a very basic example, you can check here If you would like for example to use PHP-FPM.

Install Tiny Tiny RSS

You have now set the environment, it is time to install the software itself.

First, download the latest version from its home page, then upload it to your server root folder. Unpack it:

tar xvzf Tiny-Tiny-RSS-1.x.x.tar.gz

Move it to your document root again.

cd Tiny-Tiny-RSS-1.x.x
mv * .[^.]* ..

You can now delete the folder.

cd ..
rmdir Tiny-Tiny-RSS-1.x.x

Configure Tiny Tiny RSS server.

Let's now go to http://rss.example.com and you will be asked some questions, like the database name, username and password for the database. Once that is done, you can log in, with the default user and password. (admin and password), be sure to change the password as soon as you can.