Sponsored Content
Top Forums Shell Programming and Scripting Apache tomcat startup script not booting at startup. Post 302885080 by Akshay Hegde on Thursday 23rd of January 2014 11:03:20 AM
Old 01-23-2014
Here is an example of rc.local which is running from 2 years on my server, if your tomcat starts only with sudo then its permission issue.

Code:
$ cat /etc/rc.local 
#!/bin/sh -e

# Start Tomcat 
JAVA_HOME="/usr/lib/jvm/jdk1.7.0_10"
JAVA_OPTS="-Djava.awt.headless=true"
CATALINA_PID="/usr/local/www/html/TOMCAT_DEMO/tomcat/webapps/UI_PID"
export JAVA_HOME JAVA_OPTS CATALINA_PID
exec /usr/local/www/html/TOMCAT_DEMO/tomcat/bin/catalina.sh start


exit 0

 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Run tomcat at startup

Is it possible to run tomcat automatically when Linux boots without having to log in? (4 Replies)
Discussion started by: Spetnik
4 Replies

2. Shell Programming and Scripting

Startup script

New in Unix, I am adding a line "route add 57.14.y.y 57.14.x.x" every day after rebooting the system. Where can I add the line so during boot up (the system is re-started every day by design (???) the line is executed? (I tried the /etc/rc2.d/S90 but for some reason the line needs to be added... (2 Replies)
Discussion started by: texaspanama
2 Replies

3. Shell Programming and Scripting

Solaris Startup script for Apache.

I'm running Solaris 5.9 and Apache 2.... I've created a startup script for Apache....but it doesn't work!!! it resides in /etc/init.d and has a link to /etc/rc3.d and if it run it as /etc/init.d/apache_start stop it stops the httpd services and /etc/init.d/apache_start start starts the... (3 Replies)
Discussion started by: Zak
3 Replies

4. UNIX for Dummies Questions & Answers

Startup Script Somewhere ?

Hello there! I need help. Everytime I login to my ssh, i see this: -bash: .export: command not found -bash: .export: command not found -bash: .export: command not found -bash: .export: command not found any help ? thanks (0 Replies)
Discussion started by: fbauto1
0 Replies

5. Shell Programming and Scripting

Apache Startup Fails with PHP Error

Great tins massive! Im Manqoba from Midrand, South Africa... I have installed Apache and PHP on a solaris 9 box, using the packages below: apache-2.2.14-sol9-sparc-local php-5.2.13-sol9-sparc-local After installing the packages I edited my httpd.conf file, to load the php5 module when... (10 Replies)
Discussion started by: Macarena S.A
10 Replies

6. Shell Programming and Scripting

how to delete files at booting of system (system startup)

hi all I have a problem how to write a shell script which delete files/folder form directory whenever system boot and copy last updated folder/file in the specified directory.pse help me ASAP. i write a script which copy files in directory.I want when system boot up using script it check whether... (1 Reply)
Discussion started by: shubhig15
1 Replies

7. Shell Programming and Scripting

Single Startup script for Apache/jboss

Hi, I have apache ,jboss and jon instances on various linux boxes.I need to create a generic startup script to restart those instances on server reboot.The script requirement is : It should take the name of instances from one text file named active-servers and recycle those instances. 1.... (6 Replies)
Discussion started by: saurau
6 Replies

8. Shell Programming and Scripting

Automatic shutdown and startup of Tomcat in Solaris

Dear Experts , I want to stop and Start tomcat at the time of shutdown and startup of our server . I was trying to stop tomcat with following command # su - dm -c "/export/home/Finder/FinderWeb/jakarta-tomcat-3.3.1a/bin/shutdown.sh" but i am getting following error. Please suggest .... (1 Reply)
Discussion started by: Amit.saini333
1 Replies

9. Shell Programming and Scripting

Startup script

I can't quite find a clear answer on how to properly write a start up script. Does anybody have any ideas?? (3 Replies)
Discussion started by: Huitzilopochtli
3 Replies
SAFE-RM(1)						User Contributed Perl Documentation						SAFE-RM(1)

NAME
safe-rm - wrapper around the rm command to prevent accidental deletions USAGE
safe-rm [ ... ] (same arguments as rm) DESCRIPTION
safe-rm prevents the accidental deletion of important files by replacing rm with a wrapper which checks the given arguments against a configurable blacklist of files and directories which should never be removed. Users who attempt to delete one of these protected files or directories will not be able to do so and will be shown a warning message instead. safe-rm is meant to replace the rm command so you can achieve this by putting a symbolic link with the name "rm" in a directory which sits at the front of your path. For example, given this path: PATH=/usr/local/bin:/bin:/usr/bin You could create the following symbolic link: ln -s /usr/local/bin/safe-rm /usr/local/bin/rm CONFIGURATION
Protected paths can be set both at the site and user levels. Both of these configuration files can contain a list of important files or directories (one per line): /etc/safe-rm.conf ~/.safe-rm If both of these are empty, a default list of important paths will be used. /usr/lib/* will protect all of the files inside the /usr/lib directory if they are referred to directly, but it will not protect your system against: rm -rf /usr/lib For a full protection, you should include both of these lines: /usr/lib /usr/lib/* EXIT STATUS
Same exit status as the real rm command. Note that if all file arguments are skipped by safe-rm then the exit status will be the same as the exit status of the real rm when no files arguments are present. BUGS AND LIMITATIONS
Note that if you put the following in your protected paths list: $ cat /etc/safe-rm.conf /usr/lib Then safe-rm will prevent you from deleting the directory: $ rm -rf /usr/lib Skipping /usr/lib /bin/rm: missing operand Try `/bin/rm --help' for more information. However it cannot protect you from the following: $ cd /usr/lib $ rm -f * AUTHOR
Francois Marier <francois@safe-rm.org.nz> SEE ALSO
rm(1) LICENSE AND COPYRIGHT
Copyright (C) 2008-2009 Francois Marier This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. perl v5.14.2 2012-05-28 SAFE-RM(1)
All times are GMT -4. The time now is 07:45 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy