ServerECHOTcp자동실행 문의

christ17의 이미지

1.
자바로 ServerECHOTcp.java 소스를 컴파일 하여 실행 시켜봤습니다. (C로도 해볼 예정입니다)
라즈베리파이를 재부팅 했을 때, ServerECHOTcp가 자동실행 되도록 하려면 어떻게 해야할까요?
확인은 eZTerm이라는 프로그램으로 메시지를 보낼 것입니다.
ServerECHOTcp소스입니다

import java.net.*; 
import java.io.*; 
 
public class ServerECHOTcp
{ 
 public static void main(String[] args) throws IOException 
   { 
    ServerSocket serverSocket = null; 
 
    try { 
         serverSocket = new ServerSocket(1470); 
        } 
    catch (IOException e) 
        { 
         System.err.println("Could not listen on port: 1470."); 
         System.exit(1); 
        } 
 
    Socket clientSocket = null; 
    System.out.println ("Waiting for connection.....");
 
    try { 
         clientSocket = serverSocket.accept(); 
        } 
    catch (IOException e) 
        { 
         System.err.println("Accept failed."); 
         System.exit(1); 
        } 
 
    System.out.println ("Connection successful");
    System.out.println ("Waiting for input.....");
 
    PrintWriter out = new PrintWriter(clientSocket.getOutputStream(), 
                                      true); 
    BufferedReader in = new BufferedReader( 
            new InputStreamReader( clientSocket.getInputStream())); 
 
    String inputLine; 
 
    while ((inputLine = in.readLine()) != null) 
        { 
         System.out.println ("Server: " + inputLine); 
         out.println(inputLine); 
 
         if (inputLine.equals("Bye.")) 
             break; 
        } 
 
    out.close(); 
    in.close(); 
    clientSocket.close(); 
    serverSocket.close(); 
   } 
} 

2.
ServerECHOTcp.java 프로그램을 만들었습니다
컴파일은
javac ServerECHOTcp.java 명령어로
.class 파일을 만들어줍니다
실행은
java ServerECHOTcp 입니다.
소스 위치 경로는 /home/pi/OSJ/EchoTcp 이며,

라즈베리파이를 부팅 시켰을 때 ServerECHOTcp 를 자동실행 하려고 합니다

sudo nano /etc/rc.local
--------------------

fi
#ADD line :
su pi -c /usr/bin/java -classpath /home/pi/OSJ/EchoTcp/ ServerECHOTcp
exit 0

-------------------
라고 해줬는데
/home/pi/OSJ/EchoTcp/: lasspath: command not found
명령을 찾을수 없다고 나옵니다
왜 그런건가요? 그리고
-classpath 를 입력하면 -다음 c는 잘려서 나옵니다 lasspath만 나오는데 이것이 문제될까요?
-cp 라고 줄여서 써줘도 동일하게 맨 앞에 c는 안 보이네요
/home/pi/OSJ/EchoTcp/ p: command not found 이렇게요

rc.local 과 init.d의 차이점은 rc.local은 한 번만 실행 시킨 후 끝이고,
init.d는 등록해준 후 계속 쓸 수 있다는 서비스인건가요?
init.d 는
네트워크 수정 후 재실행 할때 많이 사용 해봤습니다
sudo /etc/init.d/networking restart
networking 소스 보고 EchoTcp 등록 해주면 될 것 같네요

ServerECHOTcp 자동실행 하는 법
이렇게 하면 되는건가요?

christ17의 이미지

해결 했습니다
경로 부분에 su pi -c "/usr/bin/java -classpath /home/pi/OSJ/EchoTcp/ ServerECHOTcp"
따옴표 붙여주니 잘 됩니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.