ubuntu 安装ftp nginx tomcat,mysql

tomcat

sudo apt-get install tomcat

访问方式,http://loclahost:8080

进入sbin目录下 sudo ./startup.sh开启

sudo ./shutdown 关闭

nginx服务器

sudo apt-get install nginx

访问方式,http://localhost

sudo service nginx start 开启

sudo service nginx stop 关闭

sudo service nginx restart 重启

sudo service nginx reload ,在不关闭的情况下,重新加载配置文件等

ftp服务器

sudo apt-get install vsftpd

自动安装使用的是主机的用户名和密码:liyafei,1367xxx

访问方式,ftp://localhost:21,ftp:localhost

可通过:filezilla客户端进行访问。sudo apt-get install filelizza

mysql安装:

sudo apt-get update
sudo apt-get install mysql-server
原文地址:https://www.cnblogs.com/liyafei/p/8678368.html