psql: command not found when running bash script in eclipse












0














I'm writing a Java method to run a local bash script using Eclipse. The code is showing as below:



public static void setUp() throws IOException, InterruptedException {
Runtime rt = Runtime.getRuntime();
Process p;
String filePath = new File("").getAbsolutePath();
filePath = filePath.concat("/path/to/the/script");
String command = String.format("sh %s/setUp.sh", filePath);
System.out.println(command);
try {
p = rt.exec(command);
final int errorValue = p.waitFor();
if (errorValue != 0) {
System.out.println("error detected!");
InputStream error = p.getErrorStream();
BufferedReader br = new BufferedReader(new InputStreamReader(error));
String line = "";
while ((line = br.readLine()) != null) {
System.out.println(line);
}
p.destroy();
}
} catch (Exception e) {
e.printStackTrace();
}
}


AND the bash file is very simple:



#!/bin/bash
#create a local db and import some data
createdb -U dummy -O dummy -h localhost dbname
psql -h localhost -d dbname --file $1


The issue is



line 4: createdb: command not found
line 5: psql: command not found


I can run the script in terminal and I can copy line4 and line5 in terminal, and I can run mvn exec command in the terminal to run the method. All works.



Only thing not working is it was executed in eclipse.



I'm open to any opinion or advices, please let me know if you need more information.



Thanks for all the helps in advance!










share|improve this question



























    0














    I'm writing a Java method to run a local bash script using Eclipse. The code is showing as below:



    public static void setUp() throws IOException, InterruptedException {
    Runtime rt = Runtime.getRuntime();
    Process p;
    String filePath = new File("").getAbsolutePath();
    filePath = filePath.concat("/path/to/the/script");
    String command = String.format("sh %s/setUp.sh", filePath);
    System.out.println(command);
    try {
    p = rt.exec(command);
    final int errorValue = p.waitFor();
    if (errorValue != 0) {
    System.out.println("error detected!");
    InputStream error = p.getErrorStream();
    BufferedReader br = new BufferedReader(new InputStreamReader(error));
    String line = "";
    while ((line = br.readLine()) != null) {
    System.out.println(line);
    }
    p.destroy();
    }
    } catch (Exception e) {
    e.printStackTrace();
    }
    }


    AND the bash file is very simple:



    #!/bin/bash
    #create a local db and import some data
    createdb -U dummy -O dummy -h localhost dbname
    psql -h localhost -d dbname --file $1


    The issue is



    line 4: createdb: command not found
    line 5: psql: command not found


    I can run the script in terminal and I can copy line4 and line5 in terminal, and I can run mvn exec command in the terminal to run the method. All works.



    Only thing not working is it was executed in eclipse.



    I'm open to any opinion or advices, please let me know if you need more information.



    Thanks for all the helps in advance!










    share|improve this question

























      0












      0








      0


      0





      I'm writing a Java method to run a local bash script using Eclipse. The code is showing as below:



      public static void setUp() throws IOException, InterruptedException {
      Runtime rt = Runtime.getRuntime();
      Process p;
      String filePath = new File("").getAbsolutePath();
      filePath = filePath.concat("/path/to/the/script");
      String command = String.format("sh %s/setUp.sh", filePath);
      System.out.println(command);
      try {
      p = rt.exec(command);
      final int errorValue = p.waitFor();
      if (errorValue != 0) {
      System.out.println("error detected!");
      InputStream error = p.getErrorStream();
      BufferedReader br = new BufferedReader(new InputStreamReader(error));
      String line = "";
      while ((line = br.readLine()) != null) {
      System.out.println(line);
      }
      p.destroy();
      }
      } catch (Exception e) {
      e.printStackTrace();
      }
      }


      AND the bash file is very simple:



      #!/bin/bash
      #create a local db and import some data
      createdb -U dummy -O dummy -h localhost dbname
      psql -h localhost -d dbname --file $1


      The issue is



      line 4: createdb: command not found
      line 5: psql: command not found


      I can run the script in terminal and I can copy line4 and line5 in terminal, and I can run mvn exec command in the terminal to run the method. All works.



      Only thing not working is it was executed in eclipse.



      I'm open to any opinion or advices, please let me know if you need more information.



      Thanks for all the helps in advance!










      share|improve this question













      I'm writing a Java method to run a local bash script using Eclipse. The code is showing as below:



      public static void setUp() throws IOException, InterruptedException {
      Runtime rt = Runtime.getRuntime();
      Process p;
      String filePath = new File("").getAbsolutePath();
      filePath = filePath.concat("/path/to/the/script");
      String command = String.format("sh %s/setUp.sh", filePath);
      System.out.println(command);
      try {
      p = rt.exec(command);
      final int errorValue = p.waitFor();
      if (errorValue != 0) {
      System.out.println("error detected!");
      InputStream error = p.getErrorStream();
      BufferedReader br = new BufferedReader(new InputStreamReader(error));
      String line = "";
      while ((line = br.readLine()) != null) {
      System.out.println(line);
      }
      p.destroy();
      }
      } catch (Exception e) {
      e.printStackTrace();
      }
      }


      AND the bash file is very simple:



      #!/bin/bash
      #create a local db and import some data
      createdb -U dummy -O dummy -h localhost dbname
      psql -h localhost -d dbname --file $1


      The issue is



      line 4: createdb: command not found
      line 5: psql: command not found


      I can run the script in terminal and I can copy line4 and line5 in terminal, and I can run mvn exec command in the terminal to run the method. All works.



      Only thing not working is it was executed in eclipse.



      I'm open to any opinion or advices, please let me know if you need more information.



      Thanks for all the helps in advance!







      java eclipse bash postgresql maven






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 12 '18 at 19:12









      Xiangyu Zhao

      54




      54
























          1 Answer
          1






          active

          oldest

          votes


















          0














          I suspect that the Runtime that is used to execute the script won't have the paths set correctly. Try using full paths for the commands in the script, and see if that works (you can find the full paths by running which createdb and which psql in the terminal).






          share|improve this answer





















          • Ahhh, thanks so much!
            – Xiangyu Zhao
            Nov 12 '18 at 19:54











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53268638%2fpsql-command-not-found-when-running-bash-script-in-eclipse%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          I suspect that the Runtime that is used to execute the script won't have the paths set correctly. Try using full paths for the commands in the script, and see if that works (you can find the full paths by running which createdb and which psql in the terminal).






          share|improve this answer





















          • Ahhh, thanks so much!
            – Xiangyu Zhao
            Nov 12 '18 at 19:54
















          0














          I suspect that the Runtime that is used to execute the script won't have the paths set correctly. Try using full paths for the commands in the script, and see if that works (you can find the full paths by running which createdb and which psql in the terminal).






          share|improve this answer





















          • Ahhh, thanks so much!
            – Xiangyu Zhao
            Nov 12 '18 at 19:54














          0












          0








          0






          I suspect that the Runtime that is used to execute the script won't have the paths set correctly. Try using full paths for the commands in the script, and see if that works (you can find the full paths by running which createdb and which psql in the terminal).






          share|improve this answer












          I suspect that the Runtime that is used to execute the script won't have the paths set correctly. Try using full paths for the commands in the script, and see if that works (you can find the full paths by running which createdb and which psql in the terminal).







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 12 '18 at 19:32









          Henning Koehler

          1,129610




          1,129610












          • Ahhh, thanks so much!
            – Xiangyu Zhao
            Nov 12 '18 at 19:54


















          • Ahhh, thanks so much!
            – Xiangyu Zhao
            Nov 12 '18 at 19:54
















          Ahhh, thanks so much!
          – Xiangyu Zhao
          Nov 12 '18 at 19:54




          Ahhh, thanks so much!
          – Xiangyu Zhao
          Nov 12 '18 at 19:54


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53268638%2fpsql-command-not-found-when-running-bash-script-in-eclipse%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          Tangent Lines Diagram Along Smooth Curve

          Yusuf al-Mu'taman ibn Hud

          Zucchini