| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 5,244
» Latest member: dangyc
» Forum threads: 4,031
» Forum posts: 16,406
Full Statistics
|
| Online Users |
There are currently 405 online users. » 0 Member(s) | 403 Guest(s) Baidu, Google
|
| Latest Threads |
how to allow only steam t...
Forum: Xorg Problems
Last Post: moquber
2026-03-17, 09:40 PM
» Replies: 0
» Views: 299
|
Wi-Fi works for a few min...
Forum: Network Problems
Last Post: kabifff
2025-12-15, 12:57 AM
» Replies: 0
» Views: 673
|
How to install Archboot i...
Forum: Network Problems
Last Post: Meup
2025-05-13, 01:41 PM
» Replies: 0
» Views: 4,031
|
clear logs in smoothwall
Forum: Security and Firewalls
Last Post: amanda63
2024-03-10, 03:27 PM
» Replies: 8
» Views: 125,250
|
I cannot install RedHat 8...
Forum: Redhat
Last Post: hybrid
2023-11-11, 01:01 PM
» Replies: 1
» Views: 75,399
|
How things are done, usin...
Forum: Xorg Problems
Last Post: ross
2023-09-04, 09:03 AM
» Replies: 0
» Views: 5,407
|
Im back.....
Forum: Hello
Last Post: anyweb
2021-01-17, 11:36 AM
» Replies: 1
» Views: 9,230
|
add mp3 plugin to xmms in...
Forum: Fedora
Last Post: anyweb
2021-01-17, 11:30 AM
» Replies: 11
» Views: 47,571
|
Configuring VSFTPd Server
Forum: FTP Server
Last Post: Johnbaca
2020-10-14, 10:25 AM
» Replies: 32
» Views: 166,538
|
Wolf won't play sound!
Forum: Game Problems
Last Post: Guest
2020-10-03, 05:51 PM
» Replies: 1
» Views: 98,059
|
|
|
| How to Install Apache/Tomcat/Java/Tomcat-Connector |
|
Posted by: Strabo - 2004-01-16, 01:47 PM - Forum: LAMP
- Replies (4)
|
 |
This will tell you how to install apache tomcat java and tomcat connector step by step with screen shots so you wont get lost. I got ZERO help in doing this from anyone on IRC.
Here is the link to my doc but if you can't get it for some reason (1.2 mb big) i'll paste the instructions below wihtout scren shots.
[/url][url=http://www.xn85turbo.com/Apache-Tomcat-Tom...ector-Setup.doc]http://www.xn85turbo.com/Apache-Tomcat-Tom...ector-Setup.doc
[strabo]
These are the environment variables!
echo "#Set a few environmental variables for Tomcat, Java, and Apache" >> /etc/profile
echo "export CATALINA_HOME=/usr/local/tomcat/" >> /etc/profile
echo "export JAVA_HOME=/usr/local/java" >> /etc/profile
echo "export APACHE_HOME=/usr/local/apache" >> /etc/profile
echo "#Start Tomcat and Apache
echo "/usr/local/sbin/start.sh" >> /etc/rc.local
echo "#Set a few environmental variables for Tomcat, Java, and Apache" >> /etc/rc.local
echo "export CATALINA_HOME=/usr/local/tomcat/" >> /etc/rc.local
echo "export JAVA_HOME=/usr/local/java" >> /etc/rc.local
echo "export APACHE_HOME=/usr/local/apache" >> /etc/rc.local
Step 1:
Go get the apps listed in each install section!
Step 2:
Change to the directory with the applications> cd /usr/local/src/NfuseApache
Step 3:
Unpack Apache first: tar zxvf httpd-2.0.47.tar.gz
Step 4:
Change to the Directory with the apache installation files> cd /usr/local/src/NfuseApache/httpd-2.0.47
Step 5:
Configure Apache: ./configure --prefix=/usr/local/apache --enable-so
Step 6:
Make the package> make
Step 7:
Install the package> make install
Step 8:
Test Apache configuration> /usr/local/apache/bin/apachectl configtest
Step 9:
Set the Apache variable> export APACHE_HOME=/usr/local/apache
Verify that the variable is set> echo $ APACHE_HOME
Install Tomcat:
Step 1:
Change to the installation directory> cd /usr/local/src/NfuseApache
Step 2:
Copy tomcat to /usr/local/ > cp -p tomcat-4.1.27.tar.gz /usr/local/
Verify its there> ls /usr/local/
Step 3:
Change to the /usr/local directory > cd /usr/local/
Step 4:
Unpack Tomcat> tar zxvf tomcat-4.1.27.tar.gz
Step 5:
Make a symbolic link ot the tomcat installation directory> ln -s /usr/local/jakarta-tomcat-4.1.27 /usr/local/tomcat
Verify its there> ls
Step 6:
Set the tomcat directory variable> export CATALINA_HOME=/usr/local/tomcat
Step 7:
Verify that it now read the new variable> echo $CATALINA_HOME
Build install JAVA
Step 1:
Make the java package executable> chmod 777 chmod 777 j2sdk-1_4_2_03-linux-i586.bin
Step 2:
Copy the package to /usr/local/ > cp j2sdk-1_4_2_03-linux-i586.bin /usr/local/
Step 3:
Change to the /usr/local/ directory> cd /usr/local/
Step 2:
Unpack the Java package> ./ j2sdk-1_4_2_03-linux-i586.bin
Step 3:
Read the Disclaimer and except it at the end by typing> yes
The package will unpack and create a directory called j2sdk1.4.2_03
Step 4:
Make a symbolic link to the java directory> ln -s /usr/local/j2sdk1.4.2_03/ /usr/local/java
Step 5:
Verify the /usr/local/java symbolic link was created> ls /usr/local
Step 6:
Set the java directory variable> export JAVA_HOME=/usr/local/java
Verify the variable was set for java> echo $JAVA_HOME
Build Tomcat/Apache Connector:
Step 1:
Change to the installation directory> cd /usr/local/src/NfuseApache/
Step 2:
Unpack the connector package> tar xvzf jakarta-tomcat-connectors-jk-1.2-src-current.tar.gz
Step 3:
Set the Connector Home variable> export CONNECTOR_HOME=/usr/local/src/NfuseApache/jakarta-tomcat-connectors-jk-1.2.5-src
Verify the variable is correct> echo $ CONNECTOR_HOME
Step 4:
Change to the connector installation directory> cd $CONNECTOR_HOME/jk/native
Step 5:
Run the build command> ./buildconf.sh
Step 6:
Run the configure command to link it to apache> ./configure --with-apxs=/usr/local/apache/bin/apxs
Step 7:
Make the package> make
Step 8:
Install the package> make install
Step 9:
Verify it made the file mod_jk.so> find / -name mod_jk.so
|
|
|
| real player |
|
Posted by: tek-69 - 2004-01-16, 01:35 PM - Forum: Audio and Video
- Replies (2)
|
 |
as much as i hated real player for windows alot of net based video is in its format.
I couldnt find a linux version so i was wondering if anyone knew of a linux program that could
view real?
have fun
-tek-
|
|
|
| red hat 9 large file support |
|
Posted by: anyweb - 2004-01-16, 10:07 AM - Forum: Redhat
- No Replies
|
 |
fyi
Redhat 9 Large File Support
Here's a good table:
+---------------+------+------+------+------+
! ! ext3 !Reiser! XFS ! JFS !
+---------------+------+------+------+------+
! Max. Number ! ! ! ! !
! of Files ! 4GB ! 4GB ! 4GB ! 4GB !
+---------------+------+------+------+------+
!Subdiretories/ ! ! ! ! !
!Directories ! 32K ! 65K ! 4GB ! 65K !
+---------------+------+------+------+------+
!Maximum ! ! ! ! !
!File Size ! 2TB ! 16TB*! 16TB*! 16TB*!
+---------------+------+------+------+------+
!Maximum ! ! ! ! !
!FileSystem Size! 16TB ! 16TB*! 16TB*! 16TB*!
+---------------+------+------+------+------+
Notes:
Block device limit in 2.4.x kernel is 2TB
* - Issue in page cache has limit of 16TB
|
|
|
| So happy! |
|
Posted by: InaVirtualGhetto - 2004-01-16, 07:53 AM - Forum: Gentoo
- Replies (13)
|
 |
Well, screenshots will be posted in a matter of an hour. I finally got X to start up with KDE in gentoo... only took me about a week.
What I had to do: import the X86Config file from redhat 9. Initialize agpgart (or whatever) support. Tweak it so it would load the fonts right. Run xfs, emerge KDE and I am set.
So happy!
|
|
|
| largest file in a directory tree |
|
Posted by: hijinks - 2004-01-15, 08:00 PM - Forum: Filesystem Management
- Replies (3)
|
 |
So you did a df and noticed that /var was full or you just want to find what the biggest file in the directory tree is. Well run this command and it'll show you.
That will sort all of the files and place the largest files at the end.
|
|
|
| A little problem with my PC NTFS partition |
|
Posted by: Pandemonium - 2004-01-15, 03:43 PM - Forum: Fedora
- Replies (1)
|
 |
I've install Fedora Core 1... and now i have a problem with starting up my PC i can start him only with bootable disk and no partition on my PC is active. The thing is that i have NTFS partition and have a win on one of it, and i can start him (the windows) up, and if there is anythin what i can do to change this mad thing and to choose which one will start it...
Somebody told me that i can fix that with starting up the partition from bootloader but i dont know where can I set my partition active...
THanks...
CYA...
|
|
|
|