摘要:
deepin系统防火墙设置 deepin firewall 安装服务 sudo apt-get install firewalld systemd -y 查看服务器上是否安装了firewall systemctl status firewalld 开启防火墙 systemctl start fire 阅读全文
摘要:
Deepin系统安装mysql5.7 mysql卸载 sudo apt-get --purge remove mysql-server sudo apt-get --purge remove mysql-client sudo apt-get --purge remove mysql-common 阅读全文
摘要:
deepin安装Redis 一、安装Redis sudo apt-get install redis-server安装完成之后,Redis服务器会自动启动 二、检查Redis服务器系统进程(非必要) ps -aux|grep redis 三、查看Redis端口状态(非必要) netstat -nlt 阅读全文
摘要:
deepin安装nginx服务器 (1)安装gcc g++的依赖库 sudo apt-get install build-essential && sudo apt-get install libtool (2)安装pcre依赖库 sudo apt-get install libpcre3 libp 阅读全文
摘要:
deepin下安装jdk 1、jdk 下载 官网下载地址如下: 注意区分是哪个版本的 2、安装deb包 终端进入到deb文件所在目录,执行安装命令: sudo dpkg -i jdk-11.0.15.1_linux-x64_bin.deb 当然可以管理员用户 直接双击快捷安装 3、配置环境变量 终端 阅读全文
摘要:
Deepin安装SSH服务器 一、安装ssh sudo -i #切换到root用户 apt-get install openssh-server #安装ssh服务器端 在终端输入SSH获得如图1所示提示命令说明成功安装 图1 ssh命令的参数 二、配置SSH 配置ssh配置文件 vi /etc/ss 阅读全文