Installing Jinzora on Ubuntu
From Brandonhutchinson.com
| Line 15: | Line 15: | ||
* [http://lifehacker.com/software/home-server/geek-to-live-build-an-internet-jukebox-with-jinzora-254178.php Geek to Live: Build an internet jukebox with Jinzora] | * [http://lifehacker.com/software/home-server/geek-to-live-build-an-internet-jukebox-with-jinzora-254178.php Geek to Live: Build an internet jukebox with Jinzora] | ||
* [http://www.howtoforge.com/ultimate_freebsd_media_server The Ultimate Media Server - Apache+SSL , PHP, MySQL and Jinzora] | * [http://www.howtoforge.com/ultimate_freebsd_media_server The Ultimate Media Server - Apache+SSL , PHP, MySQL and Jinzora] | ||
| - | * [http://httpd.apache.org/docs/2.0/ssl/ssl_faq.html#aboutcerts SSL/TLS Strong Encryption: FAQ] | ||
| - | * [http://httpd.apache.org/docs/2.0/ssl/ssl_intro.html SSL/TLS Strong Encryption: An Introduction] | ||
| - | * Create a private server key. | ||
| - | $ openssl genrsa -des3 -out server.key 1024 | ||
| - | Generating RSA private key, 1024 bit long modulus | ||
| - | ..++++++ | ||
| - | ....................++++++ | ||
| - | e is 65537 (0x10001) | ||
| - | Enter pass phrase for server.key: | ||
| - | Verifying - Enter pass phrase for server.key: | ||
| + | $ openssl x509 -req -days 3650 -in server.csr -signkey server.key -out server.crt | ||
| + | Signature ok | ||
| + | subject=/C=US/ST=Minnesota/L=Minneapolis/O=Navitaire Ltd./CN=hutch.navitaire.com | ||
| + | Getting Private key | ||
| + | Enter pass phrase for server.key: | ||
| + | unable to write 'random state' | ||
| + | hutch@hutch:~$ ls -ld ~/.rnd | ||
| + | -rw------- 1 root root 1024 2007-08-20 17:17 /home/hutch/.rnd | ||
| + | $ sudo chown hutch:hutch ~/.rnd | ||
| + | $ openssl x509 -req -days 3650 -in server.csr -signkey server.key -out server.crt | ||
| + | Signature ok | ||
| + | subject=/C=US/ST=Minnesota/L=Minneapolis/O=Navitaire Ltd./CN=hutch.navitaire.com | ||
| + | Getting Private key | ||
| + | Enter pass phrase for server.key: | ||
| + | $ | ||
| - | + | $ sudo mv server.key server.crt /usr/lib/apache2/ | |
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
Revision as of 22:09, 3 October 2007
sudo perl -pi.bak -e 's/max_execution_time = \d+/max_execution_time = 300/;s/post_max_size = \d+M/post_max_size = 32M/;s/upload_max_filesize = \dM/upload_max_filesize = 32M/' /etc/php5/apache2/php.ini
wget http://www.jinzora.com/downloads/jz275.tar.gz sudo tar zxvf jz275.tar.gz -C /var/www/ ( cd /var/www/jinzora2 && sudo sh configure.sh )
$ sudo aptitude -y install apache2 libapache-mod-ssl php5 mysql-server php5-mysql php5-gd
$ sudo rm -r /var/www/jinzora2/install
- Apache2 SSL in Ubuntu
- Changing the root password on MySQL
- Geek to Live: Build an internet jukebox with Jinzora
- The Ultimate Media Server - Apache+SSL , PHP, MySQL and Jinzora
$ openssl x509 -req -days 3650 -in server.csr -signkey server.key -out server.crt
Signature ok
subject=/C=US/ST=Minnesota/L=Minneapolis/O=Navitaire Ltd./CN=hutch.navitaire.com
Getting Private key
Enter pass phrase for server.key:
unable to write 'random state'
hutch@hutch:~$ ls -ld ~/.rnd
-rw------- 1 root root 1024 2007-08-20 17:17 /home/hutch/.rnd
$ sudo chown hutch:hutch ~/.rnd
$ openssl x509 -req -days 3650 -in server.csr -signkey server.key -out server.crt
Signature ok
subject=/C=US/ST=Minnesota/L=Minneapolis/O=Navitaire Ltd./CN=hutch.navitaire.com
Getting Private key
Enter pass phrase for server.key:
$
$ sudo mv server.key server.crt /usr/lib/apache2/
