गैर-रूट के रूप में टॉमकैट सर्वर को पुनरारंभ करें


1

जानकारी: अपाचे टोमैट / 6.0.36 सेंटोस 2.6.32-279.14.1.el6.x86_64

क्या यह संभव है? मैंने किसी से सुना कि टॉमकैट के एक पुराने संस्करण में एक प्रबंधक उपकरण था, जिसने गैर-विशेषाधिकार प्राप्त उपयोगकर्ताओं को सर्वर को पुनरारंभ करने की अनुमति दी थी। मैंने प्रबंधक की जाँच की, लेकिन मुझे केवल सर्वर पर चलने वाले एप्लिकेशन को अक्षम करने के विकल्प दिखाई देते हैं, लेकिन सर्वर स्वयं।

जवाबों:


0

मैं टॉमकैट विकी पर वर्णित सेट्यूड वर्कअराउंड के लिए बस गया।

Another method is to use SetUID scripts (assuming you have the capability) to do this. Here's how I do it.

Create a file called foo.c with this content (replace "/path/startupscript" with the tomcat startup script):

#include <unistd.h> #include <stdlib.h>

int main( int argc, char *argv[] ) {

if ( setuid( 0 ) != 0 ) perror( "setuid() error" ); printf( "Starting ${APPLICATION}\n" ); execl( "/bin/sh", "sh", "/path/startupscript", 0 ); return 1; 

}

Run the following as root (replacing tmp with whatever you want the startup script to be and replacing XXXXX with whatever group you want to be able to start and stop tomcat:

gcc tmp.c -o tmp chown root:XXXXX tmp chmod ugo-rwx tmp chmod u+rwxs,g+rx tmp

Now members of the tomcat group should be able to start and stop tomcat. One caveat though, you need to ensure that that your tomcat startup script is not writable by anyone other than root, otherwise your users will be able to insert commands into the script and have them run as root (very big security hole).

स्रोत: http://wiki.apache.org/tomcat/HowTo#How_to_run_Tomcat_without_root_privileges.3F

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.