1、先用top检查
2、启动tomcat服务发现启动初始化失败
3、检查mysql服务是否挂了,挂了放一边
4、再次启动tomcat,会发现初始化完成,检查没连接数据库
5、在启动mysql服务,发现mysql启动失败,Mysql启动失败:InnoDB: mmap(137428992 bytes) failed; errno 12
6、free指令查看内存:
free
total used free shared buff/cache available
Mem: 1016516 722544 70124 108428 223848 37380
Swap: 0 0 0
服务器没有配置Swap分区,关于Swap分区可以参见百度百科(Swap分区),知道了当前问题的源头就给机器配置一个Swap分区大小1G,关于设置Swap分区大小可以参考 linux SWAP大小与内存的关系
[root@VM_0_7_centos /]# sudo dd if=/dev/zero of=/swapfile bs=1M count=1024
1024+0 records in
1024+0 records out
1073741824 bytes (1.1 GB) copied, 33.4362 s, 32.1 MB/s
[root@VM_0_7_centos /]#
[root@VM_0_7_centos /]# sudo mkswap /swapfile
Setting up swapspace version 1, size = 1048572 KiB
no label, UUID=8b3622a0-b64d-479a-a93a-75f0ba430e32
[root@VM_0_7_centos /]#
[root@VM_0_7_centos /]# sudo swapon /swapfile
swapon: /swapfile: insecure permissions 0644, 0600 suggested.
[root@VM_0_7_centos /]#
[root@VM_0_7_centos /]# free
total used free shared buff/cache available
Mem: 1016516 757720 67688 41652 191108 52000
Swap: 1048572 66752 981820
[root@VM_0_7_centos /]#
[root@VM_0_7_centos /]# systemctl start mysqld.service
[root@VM_0_7_centos /]#
接着在启动mysql服务,重启tomcat服务,记得配置好腾讯云的安全组