linux
文章平均质量分 63
---清心寡欲---
这个作者很懒,什么都没留下…
展开
-
linux安装nginx
安装依赖 yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel 创建一个文件夹 cd /usr/local mkdir nginx 进入目录 cd nginx 下载Nginx tar包 和 解压 wget http://nginx.org/download/nginx-1.13.7.tar.gz tar -xvf...原创 2022-04-21 15:10:30 · 2217 阅读 · 0 评论 -
Starting MySQL... ERROR The server quit without updating PID file (/usr/local/mysql/localhost.local
现象安装mysql时候,执行命令 /usr/local/mysql/support-files/mysql.server start,启动mysql报错如下:[root@localhost local]# /usr/local/mysql/support-files/mysql.server startStarting MySQL... ERROR! The server quit without updating PID file (/usr/local/mysql/localhost.loca原创 2022-02-18 14:31:53 · 5083 阅读 · 2 评论 -
sudo 执行报错centos is not in the sudoers file. This incident will be reported.
执行sudo -i,提示如下信息[centos@localhost ~]$ sudo -i[sudo] password for centos:centos is not in the sudoers file. This incident will be reported.1.执行su,输入当前登录的用户密码,密码不可见,直接输入按回车[centos@localhost ~]$ suPassword:2.进入目录 cd /etc/sudoers,如果找不到,执行命令 chmod...原创 2022-02-10 15:43:49 · 2016 阅读 · 0 评论 -
Linux 常用命令
切换目录 cd /文件夹名称删除文件夹或者文件rm -rf 文件夹原创 2021-12-10 22:13:48 · 3288 阅读 · 0 评论 -
Linux系统间如何查看端口是否连接成功
方式一:ssh -v -p 端口号 登录名@ip地址例如:ssh -v -p 80root@192.168.75.6出现:Connection established.表示连接成功方式二:telnet ip地址 端口号例如:telnet 192.168.75.6 80出现:Connection established. 表示连接成功...原创 2021-08-04 14:32:06 · 2136 阅读 · 0 评论