Mycat 基础8

2021-12-03 20:35:02 浏览数 (1)

停止

代码语言:javascript复制
[root@h102 bin]# ./mycat  stop 
Stopping Mycat-server...
Stopped Mycat-server.
[root@h102 bin]# 

命令汇总

  • java -version
  • wget https://github.com/MyCATApache/Mycat-download/raw/master/1.5-GA/Mycat-server-1.5-GA-20160217103036-linux.tar.gz
  • tar -xzvf Mycat-server-1.5-GA-20160217103036-linux.tar.gz
  • tree mycat/
  • vim conf/wrapper.conf
  • grep Xm conf/wrapper.conf
  • grep MaxDirectMemorySize conf/wrapper.conf
  • grep -v "^#" conf/wrapper.conf | grep -v "^$"
  • ./mycat start
  • ps faux | grep mycat
  • ps faux | grep java | grep MYCAT
  • ps -Lf 32758
  • ps -Lf 32760
  • netstat -ant | grep 8066
  • lsof -i :8066
  • iptables -L -nv | grep 8066
  • mysql -utest -ptest -P8066 -h 192.168.100.102
  • mysql -uuser -puser -P8066 -h 192.168.100.102
  • ./mycat stop

原文地址

0 人点赞