If you want to send us your comments, please do so. Thanks
More on comments
Installing Feed on Feeds on Debian 5 Lenny
Why? Because Feed on Feeds was made with software used on Debian 5 so everything should be compatible
Why not? Security issues. Later more about this in the IPtables and ssh setup part
Install Debian 5 Lenny
Install Debian 5 Lenny without Windowmanager / Desktopmanager on a PC. See also Installing Debian to get some help
Set the network to a fixed IP address
Remove with aptitude
vim-tiny
reportbug
Install with aptitude
When it shows up, unselect portmap
powertop (to check system load on slow computers)
powermgmt-base
apache2 this also will install, among other dependencies
apache2-utils
apache2.2-common
mysql-common
curl
fail2ban
libapache2-mod-php5
mysql-server this also will install, among other dependencies
mysql-server-5.0 (Give the mysql database a password)
Enter password: [The mysql password you entered when mysql was installed]
CREATE DATABASE feedonfeeds;
SHOW DATABASES; You should get something like
mysql> SHOW DATABASES;
+--------------------+
| Database |
+--------------------+
| information_schema |
| feedonfeeds |
| mysql |
+--------------------+
3 rows in set (0.00 sec)
USE feedonfeeds;
CREATE USER 'fof_user'@'localhost' IDENTIFIED BY 'the fof_user password'; The ' are needed
To change the password SET PASSWORD FOR fof_user@localhost = PASSWORD('new_fof_user password');
GRANT ALL PRIVILEGES ON * . * TO 'fof_user'@'localhost';
EXIT; (leave mysql)
In a bash terminal check with mysql -u fof_user -p if you can login to the mysql database. If not check the password for invalid characters like \. To directly login to the right database use mysql -h localhost -u fof_user -p feedonfeeds. The localhost part can be ommitted
cd /etc/apache2/mods-enabled/
ls -l and check if php5.conf and php5.load are present
Checking compatibility... PHP ok... XML ok... PCRE ok... MySQL ok...
Your PHP installation is either missing the cURL extension, or it is too old! cURL version 7.10.5 or later is required to be able to subscribe to https or digest authenticated feeds.
Zlib ok... iconv ok... mbstring ok...
Minimum requirements met!
Creating tables... Tables exist.
Inserting initial data... Done.
Checking cache directory... Cache directory exists and is writable.
You now need to choose an initial password for the 'admin' account:
Password:
Password again:
/etc/init.d/mysql restart
chmod 644 install.php
Errors
Error: cURL error 35: Unknown SSL protocol error in connection to www.example.com:443
Error: cURL error 35: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure
Error: cURL error 35: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version
Main subjects on this wiki: Linux, Debian, HTML, Microcontrollers, Privacy
This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies
installing_feedonfeeds_on_debian_5_lenny.txt · Last modified: 08-08-2021 11:38 by wim