You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2022/01/23 13:46:54 UTC

[GitHub] [dolphinscheduler-website] SunnyZ-L opened a new pull request #652: [Fix-7844][docs] fix nnfriendliness and errors in the 2.x deployment documents

SunnyZ-L opened a new pull request #652:
URL: https://github.com/apache/dolphinscheduler-website/pull/652


   This closes [apache/dolphinscheduler issues 7844](https://github.com/apache/dolphinscheduler/issues/7844)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [dolphinscheduler-website] SunnyZ-L edited a comment on pull request #652: [Fix-7844][docs] fix nnfriendliness and errors in the 2.x deployment documents

Posted by GitBox <gi...@apache.org>.
SunnyZ-L edited a comment on pull request #652:
URL: https://github.com/apache/dolphinscheduler-website/pull/652#issuecomment-1021011045


   > Well done, one more thing. we just release 2.0.3 document. Do you mind also changing 2.0.3 related doc? @SunnyZ-L
   
   ok, modification complete @zhongjiajie


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [dolphinscheduler-website] zhongjiajie commented on a change in pull request #652: [Fix-7844][docs] fix nnfriendliness and errors in the 2.x deployment documents

Posted by GitBox <gi...@apache.org>.
zhongjiajie commented on a change in pull request #652:
URL: https://github.com/apache/dolphinscheduler-website/pull/652#discussion_r790397367



##########
File path: docs/en-us/dev/user_doc/guide/installation/pseudo-cluster.md
##########
@@ -35,6 +35,9 @@ echo "dolphinscheduler" | passwd --stdin dolphinscheduler
 sed -i '$adolphinscheduler  ALL=(ALL)  NOPASSWD: NOPASSWD: ALL' /etc/sudoers
 sed -i 's/Defaults    requirett/#Defaults    requirett/g' /etc/sudoers
 
+# Unzip the downloaded DolphinScheduler binary package to the specified directory, such as creating /opt/dolphinscheduler, and rename the unzipped file name
+tar -zxvf apache-dolphinscheduler-2.0.3-bin.tar.gz -C /opt/dolphinscheduler
+mv apache-dolphinscheduler-2.0.3-bin  dolphinscheduler-bin
 # Modify directory permissions and grant permissions for user you created above
 chown -R dolphinscheduler:dolphinscheduler dolphinscheduler-bin

Review comment:
       I think use in regexp mode is better, eg `chown -R dolphinscheduler:dolphinscheduler apache-dolphinscheduler-*-bin` WDYT




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [dolphinscheduler-website] zhongjiajie commented on pull request #652: [Fix-7844][docs] fix nnfriendliness and errors in the 2.x deployment documents

Posted by GitBox <gi...@apache.org>.
zhongjiajie commented on pull request #652:
URL: https://github.com/apache/dolphinscheduler-website/pull/652#issuecomment-1020958364


   Well done, one more thing. we just release 2.0.3 document. Do you mind also changing 2.0.3 related doc? @SunnyZ-L 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [dolphinscheduler-website] SunnyZ-L commented on a change in pull request #652: [Fix-7844][docs] fix nnfriendliness and errors in the 2.x deployment documents

Posted by GitBox <gi...@apache.org>.
SunnyZ-L commented on a change in pull request #652:
URL: https://github.com/apache/dolphinscheduler-website/pull/652#discussion_r790915623



##########
File path: docs/en-us/dev/user_doc/guide/installation/pseudo-cluster.md
##########
@@ -35,6 +35,9 @@ echo "dolphinscheduler" | passwd --stdin dolphinscheduler
 sed -i '$adolphinscheduler  ALL=(ALL)  NOPASSWD: NOPASSWD: ALL' /etc/sudoers
 sed -i 's/Defaults    requirett/#Defaults    requirett/g' /etc/sudoers
 
+# Unzip the downloaded DolphinScheduler binary package to the specified directory, such as creating /opt/dolphinscheduler, and rename the unzipped file name
+tar -zxvf apache-dolphinscheduler-2.0.3-bin.tar.gz -C /opt/dolphinscheduler
+mv apache-dolphinscheduler-2.0.3-bin  dolphinscheduler-bin
 # Modify directory permissions and grant permissions for user you created above
 chown -R dolphinscheduler:dolphinscheduler dolphinscheduler-bin

Review comment:
       > I think use in regexp mode is better, eg `chown -R dolphinscheduler:dolphinscheduler apache-dolphinscheduler-*-bin` WDYT
   
   Modification complete




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [dolphinscheduler-website] zhongjiajie merged pull request #652: [Fix-7844][docs] fix nnfriendliness and errors in the 2.x deployment documents

Posted by GitBox <gi...@apache.org>.
zhongjiajie merged pull request #652:
URL: https://github.com/apache/dolphinscheduler-website/pull/652


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [dolphinscheduler-website] zhongjiajie commented on pull request #652: [Fix-7844][docs] fix nnfriendliness and errors in the 2.x deployment documents

Posted by GitBox <gi...@apache.org>.
zhongjiajie commented on pull request #652:
URL: https://github.com/apache/dolphinscheduler-website/pull/652#issuecomment-1020958364


   Well done, one more thing. we just release 2.0.3 document. Do you mind also changing 2.0.3 related doc? @SunnyZ-L 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [dolphinscheduler-website] SunnyZ-L commented on pull request #652: [Fix-7844][docs] fix nnfriendliness and errors in the 2.x deployment documents

Posted by GitBox <gi...@apache.org>.
SunnyZ-L commented on pull request #652:
URL: https://github.com/apache/dolphinscheduler-website/pull/652#issuecomment-1021011045


   > Well done, one more thing. we just release 2.0.3 document. Do you mind also changing 2.0.3 related doc? @SunnyZ-L
   
   ok


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [dolphinscheduler-website] SunnyZ-L edited a comment on pull request #652: [Fix-7844][docs] fix nnfriendliness and errors in the 2.x deployment documents

Posted by GitBox <gi...@apache.org>.
SunnyZ-L edited a comment on pull request #652:
URL: https://github.com/apache/dolphinscheduler-website/pull/652#issuecomment-1021011045


   > Well done, one more thing. we just release 2.0.3 document. Do you mind also changing 2.0.3 related doc? @SunnyZ-L
   
   ok, modification complete @zhongjiajie


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [dolphinscheduler-website] SunnyZ-L commented on pull request #652: [Fix-7844][docs] fix nnfriendliness and errors in the 2.x deployment documents

Posted by GitBox <gi...@apache.org>.
SunnyZ-L commented on pull request #652:
URL: https://github.com/apache/dolphinscheduler-website/pull/652#issuecomment-1021011045


   > Well done, one more thing. we just release 2.0.3 document. Do you mind also changing 2.0.3 related doc? @SunnyZ-L
   
   ok


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [dolphinscheduler-website] SunnyZ-L commented on a change in pull request #652: [Fix-7844][docs] fix nnfriendliness and errors in the 2.x deployment documents

Posted by GitBox <gi...@apache.org>.
SunnyZ-L commented on a change in pull request #652:
URL: https://github.com/apache/dolphinscheduler-website/pull/652#discussion_r790425358



##########
File path: docs/en-us/dev/user_doc/guide/installation/pseudo-cluster.md
##########
@@ -35,6 +35,9 @@ echo "dolphinscheduler" | passwd --stdin dolphinscheduler
 sed -i '$adolphinscheduler  ALL=(ALL)  NOPASSWD: NOPASSWD: ALL' /etc/sudoers
 sed -i 's/Defaults    requirett/#Defaults    requirett/g' /etc/sudoers
 
+# Unzip the downloaded DolphinScheduler binary package to the specified directory, such as creating /opt/dolphinscheduler, and rename the unzipped file name
+tar -zxvf apache-dolphinscheduler-2.0.3-bin.tar.gz -C /opt/dolphinscheduler
+mv apache-dolphinscheduler-2.0.3-bin  dolphinscheduler-bin
 # Modify directory permissions and grant permissions for user you created above
 chown -R dolphinscheduler:dolphinscheduler dolphinscheduler-bin

Review comment:
       OK,I'll change it




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org