Ubutu: mysql + jdk + tomcat installation
时间:2022-03-15 08:50
MySQL on Linux
下载安装包:https://dev.mysql.com/downloads/mysql/
Download the installation package and copy it to Linux machine under /home/agu/installer.
In the shell command, run following in order:
root@agu:~# dpkg -i /home/agu/installer/mysql-apt-config_0.8.10-1_all.deb root@agu:~# apt-get update
root@agu:~# apt-get install mysql-server
Till now, mysql is installed successfully, run following in order to check mysql status and start, stop the service
root@agu:~# service mysql status root@agu:~# service mysql stop root@agu:~# service mysql start