工作一点总结

telnet

  1. 网络通
[root@leader ~]# telnet 192.168.52.19 8123
Trying 192.168.52.19...
Connected to 192.168.52.19.
Escape character is '^]'.
Connection closed by foreign host.
  1. 网络不通
[root@leader ~]# telnet 192.168.52.19 8123
Trying 192.168.52.19...
telnet: connect to address 192.168.52.19: Connection refused

curl

  1. 网络通
[root@leader ~]# curl 192.168.52.19:8123
Ok.
  1. 网络不通
[root@leader ~]# curl 192.168.52.19:8123
curl: (7) Failed connect to 192.168.52.19:8123; 拒绝连接

防火墙

  1. 没有开放8123端口:
[root@leader ~]# curl 192.168.52.19:8123
curl: (7) Failed connect to 192.168.52.19:8123; 没有到主机的路由
[root@leader ~]# telnet 192.168.52.19 8123
Trying 192.168.52.19...
telnet: connect to address 192.168.52.19: No route to host
  1. 防火墙放行8123端口:
[root@only ~]# firewall-cmd --list-ports

[root@only ~]# firewall-cmd --zone=public --add-port=8123/http --permanent
Error: INVALID_PROTOCOL: 'http' not in {'tcp'|'udp'|'sctp'|'dccp'}
[root@only ~]# firewall-cmd --zone=public --add-port=8123/tcp --permanent
success
[root@only ~]# firewall-cmd --list-ports

#需要重新加载防火墙!!!
[root@only ~]# systemctl reload firewalld
[root@only ~]# firewall-cmd --list-ports
8123/tcp
  1. 在开放8123端口,再次测试网络策略
[root@leader ~]# telnet 192.168.52.19 8123
Trying 192.168.52.19...
Connected to 192.168.52.19.
Escape character is '^]'.
Connection closed by foreign host.
[root@leader ~]# curl 192.168.52.19:8123
Ok.
  1. 查看本服务器端口状态
[root@only lib]# netstat -anp | grep 60010 #没有被占用,我也没起hbase服务
[root@only lib]# netstat -anp | grep 12345 #12345的tcp端口正在被占用,我起了apache dolphinscheduler
tcp6       0      0 :::12345                :::*                    LISTEN      28376/java
  1. ps查看特定的进程pid、进程名
  • 5.1. ps 带有dol的进程。下面一共有九个有效进程,一个为ps进程。
[root@only lib]# ps -ef | grep dol
dolphin+  20205      1  0 8月29 ?       00:02:11 /opt/jdk1.8.0_161/bin/java -Dzookeeper.log.dir=/opt/zookeeper-3.8.0/bin/../logs -Dzookeeper.log.file=zookeeper-dolphinscheduler-server-only.log -XX:+HeapDumpOnOutOfMemoryError -XX:OnOutOfMemoryError=kill -9 %p -cp /opt/zookeeper-3.8.0/bin/../zookeeper-server/target/classes:/opt/zookeeper-3.8.0/bin/../build/classes:/opt/zookeeper-3.8.0/bin/../zookeeper-server/target/lib/*.jar:/opt/zookeeper-3.8.0/bin/../build/lib/*.jar:/opt/zookeeper-3.8.0/bin/../lib/zookeeper-prometheus-metrics-3.8.0.jar:/opt/zookeeper-3.8.0/bin/../lib/zookeeper-jute-3.8.0.jar:/opt/zookeeper-3.8.0/bin/../lib/zookeeper-3.8.0.jar:/opt/zookeeper-3.8.0/bin/../lib/snappy-java-1.1.7.7.jar:/opt/zookeeper-3.8.0/bin/../lib/slf4j-api-1.7.30.jar:/opt/zookeeper-3.8.0/bin/../lib/simpleclient_servlet-0.9.0.jar:/opt/zookeeper-3.8.0/bin/../lib/simpleclient_hotspot-0.9.0.jar:/opt/zookeeper-3.8.0/bin/../lib/simpleclient_common-0.9.0.jar:/opt/zookeeper-3.8.0/bin/../lib/simpleclient-0.9.0.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-transport-native-unix-common-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-transport-native-epoll-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-transport-classes-epoll-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-transport-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-tcnative-classes-2.0.48.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-tcnative-2.0.48.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-resolver-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-handler-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-common-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-codec-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-buffer-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/metrics-core-4.1.12.1.jar:/opt/zookeeper-3.8.0/bin/../lib/logback-core-1.2.10.jar:/opt/zookeeper-3.8.0/bin/../lib/logback-classic-1.2.10.jar:/opt/zookeeper-3.8.0/bin/../lib/jline-2.14.6.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-util-ajax-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-util-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-servlet-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-server-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-security-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-io-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-http-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/javax.servlet-api-3.1.0.jar:/opt/zookeeper-3.8.0/bin/../lib/jackson-databind-2.13.1.jar:/opt/zookeeper-3.8.0/bin/../lib/jackson-core-2.13.1.jar:/opt/zookeeper-3.8.0/bin/../lib/jackson-annotations-2.13.1.jar:/opt/zookeeper-3.8.0/bin/../lib/commons-io-2.11.0.jar:/opt/zookeeper-3.8.0/bin/../lib/commons-cli-1.4.jar:/opt/zookeeper-3.8.0/bin/../lib/audience-annotations-0.12.0.jar:/opt/zookeeper-3.8.0/bin/../zookeeper-*.jar:/opt/zookeeper-3.8.0/bin/../zookeeper-server/src/main/resources/lib/*.jar:/opt/zookeeper-3.8.0/bin/../conf:.:/opt/jdk1.8.0_161/lib/dt.jar:/opt/jdk1.8.0_161/lib/tools.jar -Xmx1000m -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.local.only=false org.apache.zookeeper.server.quorum.QuorumPeerMain /opt/zookeeper-3.8.0/bin/../conf/zoo.cfg # zk进程
dolphin+  28215      1  0 8月29 ?       00:00:00 /bin/sh /opt/dolphinscheduler-3.0.0-installation/master-server/bin/start.sh #dolphinscheduler的master启动脚本进程;
dolphin+  28222  28215  1 8月29 ?       00:08:31 java -server -Duser.timezone=UTC -Xms4g -Xmx4g -Xmn2g -XX:+PrintGCDetails -Xloggc:gc.log -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=dump.hprof -cp /opt/dolphinscheduler-3.0.0-installation/master-server/conf:/opt/dolphinscheduler-3.0.0-installation/master-server/libs/* org.apache.dolphinscheduler.server.master.MasterServer # 执行dolphinscheduler master-server主类启动;master-server进程;
dolphin+  28266      1  0 8月29 ?       00:00:00 /bin/sh /opt/dolphinscheduler-3.0.0-installation/worker-server/bin/start.sh
dolphin+  28271  28266  0 8月29 ?       00:03:55 java -server -Duser.timezone=UTC -Xms4g -Xmx4g -Xmn2g -XX:+PrintGCDetails -Xloggc:gc.log -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=dump.hprof -cp /opt/dolphinscheduler-3.0.0-installation/worker-server/conf:/opt/dolphinscheduler-3.0.0-installation/worker-server/libs/* org.apache.dolphinscheduler.server.worker.WorkerServer
dolphin+  28322      1  0 8月29 ?       00:00:00 /bin/sh /opt/dolphinscheduler-3.0.0-installation/alert-server/bin/start.sh
dolphin+  28327  28322  0 8月29 ?       00:02:30 java -server -Duser.timezone=UTC -Xms1g -Xmx1g -Xmn512m -XX:+PrintGCDetails -Xloggc:gc.log -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=dump.hprof -cp /opt/dolphinscheduler-3.0.0-installation/alert-server/conf:/opt/dolphinscheduler-3.0.0-installation/alert-server/libs/* org.apache.dolphinscheduler.alert.AlertServer
dolphin+  28372      1  0 8月29 ?       00:00:00 /bin/sh /opt/dolphinscheduler-3.0.0-installation/api-server/bin/start.sh
dolphin+  28376  28372  0 8月29 ?       00:04:46 java -server -Duser.timezone=UTC -Xms1g -Xmx1g -Xmn512m -XX:+PrintGCDetails -Xloggc:gc.log -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=dump.hprof -cp /opt/dolphinscheduler-3.0.0-installation/api-server/conf:/opt/dolphinscheduler-3.0.0-installation/api-server/libs/* org.apache.dolphinscheduler.api.ApiApplicationServer
root      34842  17964  0 00:35 pts/3    00:00:00 grep --color=auto dol
  • 5.2. 查看pid为20205的进程。(仍然会有一个无效的进程)
[root@only lib]# ps -ef | grep 20205
dolphin+  20205      1  0 8月29 ?       00:02:11 /opt/jdk1.8.0_161/bin/java -Dzookeeper.log.dir=/opt/zookeeper-3.8.0/bin/../logs -Dzookeeper.log.file=zookeeper-dolphinscheduler-server-only.log -XX:+HeapDumpOnOutOfMemoryError -XX:OnOutOfMemoryError=kill -9 %p -cp /opt/zookeeper-3.8.0/bin/../zookeeper-server/target/classes:/opt/zookeeper-3.8.0/bin/../build/classes:/opt/zookeeper-3.8.0/bin/../zookeeper-server/target/lib/*.jar:/opt/zookeeper-3.8.0/bin/../build/lib/*.jar:/opt/zookeeper-3.8.0/bin/../lib/zookeeper-prometheus-metrics-3.8.0.jar:/opt/zookeeper-3.8.0/bin/../lib/zookeeper-jute-3.8.0.jar:/opt/zookeeper-3.8.0/bin/../lib/zookeeper-3.8.0.jar:/opt/zookeeper-3.8.0/bin/../lib/snappy-java-1.1.7.7.jar:/opt/zookeeper-3.8.0/bin/../lib/slf4j-api-1.7.30.jar:/opt/zookeeper-3.8.0/bin/../lib/simpleclient_servlet-0.9.0.jar:/opt/zookeeper-3.8.0/bin/../lib/simpleclient_hotspot-0.9.0.jar:/opt/zookeeper-3.8.0/bin/../lib/simpleclient_common-0.9.0.jar:/opt/zookeeper-3.8.0/bin/../lib/simpleclient-0.9.0.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-transport-native-unix-common-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-transport-native-epoll-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-transport-classes-epoll-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-transport-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-tcnative-classes-2.0.48.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-tcnative-2.0.48.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-resolver-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-handler-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-common-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-codec-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-buffer-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/metrics-core-4.1.12.1.jar:/opt/zookeeper-3.8.0/bin/../lib/logback-core-1.2.10.jar:/opt/zookeeper-3.8.0/bin/../lib/logback-classic-1.2.10.jar:/opt/zookeeper-3.8.0/bin/../lib/jline-2.14.6.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-util-ajax-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-util-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-servlet-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-server-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-security-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-io-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-http-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/javax.servlet-api-3.1.0.jar:/opt/zookeeper-3.8.0/bin/../lib/jackson-databind-2.13.1.jar:/opt/zookeeper-3.8.0/bin/../lib/jackson-core-2.13.1.jar:/opt/zookeeper-3.8.0/bin/../lib/jackson-annotations-2.13.1.jar:/opt/zookeeper-3.8.0/bin/../lib/commons-io-2.11.0.jar:/opt/zookeeper-3.8.0/bin/../lib/commons-cli-1.4.jar:/opt/zookeeper-3.8.0/bin/../lib/audience-annotations-0.12.0.jar:/opt/zookeeper-3.8.0/bin/../zookeeper-*.jar:/opt/zookeeper-3.8.0/bin/../zookeeper-server/src/main/resources/lib/*.jar:/opt/zookeeper-3.8.0/bin/../conf:.:/opt/jdk1.8.0_161/lib/dt.jar:/opt/jdk1.8.0_161/lib/tools.jar -Xmx1000m -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.local.only=false org.apache.zookeeper.server.quorum.QuorumPeerMain /opt/zookeeper-3.8.0/bin/../conf/zoo.cfg
root      37070  17964  0 00:40 pts/3    00:00:00 grep --color=auto 20205
  • 5.2.1.简化后的命令为:
java 	-Dzookeeper.log.dir=/opt/zookeeper-3.8.0/bin/../logs #指定zk日志
		-Dzookeeper.log.file=zookeeper-dolphinscheduler-server-only.log # 指定 dolphinscheduler的日志文件
		-XX:+HeapDumpOnOutOfMemoryError -XX:OnOutOfMemoryError=kill -9 %p # 遇到内存溢出错误进行命令:kill -9 pid
		-cp /opt/zookeeper-3.8.0/bin/../zookeeper-server/target/classes:/opt/zookeeper-3.8.0/bin/../build/classes:/opt/zookeeper-3.8.0/bin/../zookeeper-server/target/lib/*.jar:/opt/zookeeper-3.8.0/bin/../build/lib/*.jar:/opt/zookeeper-3.8.0/bin/../lib/zookeeper-prometheus-metrics-3.8.0.jar:/opt/zookeeper-3.8.0/bin/../lib/zookeeper-jute-3.8.0.jar:/opt/zookeeper-3.8.0/bin/../lib/zookeeper-3.8.0.jar:/opt/zookeeper-3.8.0/bin/../lib/snappy-java-1.1.7.7.jar:/opt/zookeeper-3.8.0/bin/../lib/slf4j-api-1.7.30.jar:/opt/zookeeper-3.8.0/bin/../lib/simpleclient_servlet-0.9.0.jar:/opt/zookeeper-3.8.0/bin/../lib/simpleclient_hotspot-0.9.0.jar:/opt/zookeeper-3.8.0/bin/../lib/simpleclient_common-0.9.0.jar:/opt/zookeeper-3.8.0/bin/../lib/simpleclient-0.9.0.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-transport-native-unix-common-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-transport-native-epoll-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-transport-classes-epoll-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-transport-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-tcnative-classes-2.0.48.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-tcnative-2.0.48.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-resolver-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-handler-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-common-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-codec-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/netty-buffer-4.1.73.Final.jar:/opt/zookeeper-3.8.0/bin/../lib/metrics-core-4.1.12.1.jar:/opt/zookeeper-3.8.0/bin/../lib/logback-core-1.2.10.jar:/opt/zookeeper-3.8.0/bin/../lib/logback-classic-1.2.10.jar:/opt/zookeeper-3.8.0/bin/../lib/jline-2.14.6.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-util-ajax-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-util-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-servlet-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-server-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-security-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-io-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/jetty-http-9.4.43.v20210629.jar:/opt/zookeeper-3.8.0/bin/../lib/javax.servlet-api-3.1.0.jar:/opt/zookeeper-3.8.0/bin/../lib/jackson-databind-2.13.1.jar:/opt/zookeeper-3.8.0/bin/../lib/jackson-core-2.13.1.jar:/opt/zookeeper-3.8.0/bin/../lib/jackson-annotations-2.13.1.jar:/opt/zookeeper-3.8.0/bin/../lib/commons-io-2.11.0.jar:/opt/zookeeper-3.8.0/bin/../lib/commons-cli-1.4.jar:/opt/zookeeper-3.8.0/bin/../lib/audience-annotations-0.12.0.jar:/opt/zookeeper-3.8.0/bin/../zookeeper-*.jar:/opt/zookeeper-3.8.0/bin/../zookeeper-server/src/main/resources/lib/*.jar:/opt/zookeeper-3.8.0/bin/../conf:.:/opt/jdk1.8.0_161/lib/dt.jar:/opt/jdk1.8.0_161/lib/tools.jar #指定classpath路径!
		-Xmx1000m #最大内存为1000M
		-Dcom.sun.management.jmxremote 
		-Dcom.sun.management.jmxremote.local.only=false 
		org.apache.zookeeper.server.quorum.QuorumPeerMain # 指定主类!!!
		/opt/zookeeper-3.8.0/bin/../conf/zoo.cfg # zk配置文件以参数传递!
  • 5.2.2. 从上面的分析,可以知道pid为20205的进程并非为 dolphinscheduler进程,而是zookeeper进程。下面用jps -ml来验证pid为20205。

  • 5.3. 使用jps -ml查看pid相关信息:

[root@only lib]# jps -ml | grep 20205
20205 org.apache.zookeeper.server.quorum.QuorumPeerMain /opt/zookeeper-3.8.0/bin/../conf/zoo.cfg #可以见到为zk服务!
  • 5.4. 总结:
    从第5步可以了解到,要仔细看清楚主类,并非一定为dol的直属进程。
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
### 回答1: 针对自己工作中的不足,我建议您可以考虑以下几点: 1. 学习新知识和技能:不断提高自己的专业技能和知识水平,可以让您更好地应对工作中遇到的问题和挑战。 2. 寻求反馈和建议:向同事、上级或其他有经验的人请教,听取他们的意见和建议,可以帮助您发现自身存在的不足并加以改进。 3. 制定计划和目标:制定一份明确的计划和目标,明确自己的工作重点和优先级,有助于您更好地管理时间和任务。 4. 反思和总结工作完成后及时进行反思和总结,找出自己的不足和不足之处,并思考如何改进和提高。 5. 加强沟通和协作:加强与同事、上级和客户之间的沟通和协作,提高工作效率和质量,也有助于发现自己的不足并及时改进。 ### 回答2: 在工作中,我发现自己存在以下不足之处:沟通能力不足、缺乏自我管理能力和缺乏创新意识。 首先,我的沟通能力不足导致与同事和领导之间的沟通不够流畅和有效。为了改进这一点,我计划参加沟通培训课程,学习如何更好地表达自己的想法,倾听他人的观点,并以清晰明了的方式传达信息。 其次,由于缺乏自我管理能力,我常常在处理多个任务时容易分心和失去集中注意力。为了解决这个问题,我计划学习时间管理技巧,制定详细的工作计划和优先事项,以确保任务能够按时完成并保持高效率。 最后,缺乏创新意识使我在工作中难以提出新的想法和解决问题的方法。为了改变这种状况,我决定积极参与团队讨论和项目研讨会,与团队成员分享和交流新的观点和创意,不断学习和尝试新的工作方法,以提高自己的创新能力。 总之,我意识到自己在沟通能力、自我管理能力和创新意识方面存在不足。为了改进这些问题,我将积极参与培训和学习,与团队合作,并不断尝试新的工作方法和解决问题的思路。通过这些努力,我相信我能够不断提升自己,取得更好的工作表现。 ### 回答3: 在工作中,我发现了一些自身的不足之处,并意识到需要改进和提升,以下是我为自己提供的改进建议: 首先,我发现我在时间管理方面还有待提高。有时候,我会因为过度纠结于细节而浪费过多的时间,导致任务进度延迟。为了解决这个问题,我计划加强自己的时间管理技巧。例如,我将学会合理规划每项任务所需时间,并设定优先级,以确保按时完成任务。我还会通过制定具体的计划和时间表,提高工作效率。 其次,我意识到我的沟通能力有待提升。有时候,在与同事和领导交流时,我发现自己缺乏清晰表达自己的观点和意图的能力。为了改进这一点,我计划加强自己的沟通技巧。通过参加相关的培训课程,提高我的口头和书面沟通能力。我还计划积极寻求反馈,并尝试在团队活动中更主动地参与和分享自己的意见。 另外,我发现我对新技术和工具的学习和应用速度相对较慢。随着科技的不断进步,我意识到了保持学习的重要性。为了弥补这一不足,我计划加强自己的自学能力,并提高学习新技术和工具的速度。我打算利用业余时间参加相关的培训课程,加强自己的专业知识储备,并将新学到的知识应用到工作中。 最后,我认识到要提高自己在工作中的创新能力。我发现自己有时过于依赖现有的解决方案,而不够勇于尝试新的方法。因此,我计划多思考和尝试创新思维,培养自己的创造力和解决问题的能力。我还会积极参与与其他部门的合作和交流,从不同的角度获取灵感和观点。 总之,为了改进自己的工作不足之处,我将加强时间管理、沟通能力、学习能力和创新能力的提升。通过持续努力和不断改进,我相信我能够在工作中获得更好的表现和成果。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值