Introduction to main Oracle monitoring tools in Linux

Source: Internet
Author: User
Article Title: Main Oracle monitoring tools in Linux. Linux is a technology channel of the IT lab in China. Including desktop applications, Linux system management, kernel research, embedded systems, open source, and other basic categories 1.top
 
The top command displays the process, CPU, memory, load, and other information of the Linux system in real time. It is the best tool for us to understand the overall state of the system.
 
The running status of the top Command is a real-time display process. We can monitor the system running status on this interface. We can use several buttons to control the top Command, such as pressing q to exit the top command status, and pressing s to update the information. These commands can be queried by pressing the h help key.
 
2. Ps
 
The ps command can query the Process status. The common command parameter is ps-aux. This command can display the processes of all users. If the process command is too long, the displayed process information is incomplete. We can use the ps-auxw command to lengthen the display. The w parameter can be added a few more, up to three can be added to display longer process information.
 
3. Kill
 
The kill command can terminate the process and then connect the process number.
 
4. Free
 
Free displays the memory usage of the system. -B,-k, and-m parameters indicate memory usage in bytes, kilobytes, and megabytes.
 
5. Vmstat
 
Run the vmstat 2 command to display a line of system information every two seconds, including CPU usage, memory usage, and disk IO. With this feature, we can monitor system resource usage in real time and optimize the system.
 
6. sar
 
The sar tool can help us collect dynamic system information. It has rich parameters and powerful functions. The sar tool periodically and quantitatively outputs system status information through counters and counting intervals.
 
7. watch
 
The watch command can repeatedly execute a command to monitor the command execution status. The following command allows us to monitor the size changes of Z2.log files.
 
Debian :~ # Watch-n 3 du/home/Jims/zope/log/Z2.log
 
-N 3 indicates that du/home/Jims/zope/log/Z2.log is executed every three seconds.
 
8. Sysctl
 
Use sysctl-a to display all running kernel parameters, and use sysctl-w fs. file-max = 10240 command can be modified fs. file-max Kernel Parameter Value, and make the parameter take effect immediately. However, after the system is restarted, the parameter settings will expire, because the command line can only modify the running kernel parameters. If you want to fix the parameters, you can write the kernel parameters to the/etc/sysctl. conf file. The file format is as follows:
 
  
#/Etc/sysctl. conf-Configuration file for setting system variables
# See sysctl. conf (5) for information.

# Controls IP packet forwarding
Net. ipv4.ip _ forward = 0

# Controls source route verification
Net. ipv4.conf. default. rp_filter = 1

# Controls the System Request debugging functionality of the kernel
Kernel. sysrq = 0

# Controls whether core dumps will append the PID to the core filename.
# Useful for debugging multi-threaded applications.
Kernel. core_uses_pid = 1

 
9. Ulimit
 
Use ulimit-a to display system resource limits.
 
10. Netstat
 
Netstat-nal displays all network connections.
 
11. Pppstat
 
You can use pppstats to obtain the status information of the ppp connection.
 
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.