SecureCRT使用pem证书连接服务器步骤:
(1)选择PublicKey,点击Properties按钮,如下图示:
(2)选择pem证书文件,点击OK即可,如下图示:
(完)
SecureCRT使用pem证书连接服务器步骤:
(1)选择PublicKey,点击Properties按钮,如下图示:
(2)选择pem证书文件,点击OK即可,如下图示:
(完)
Linux删除文件名为乱码的文件:
1、使用ls -i命令获取文件的节点号;
2、使用find -inum 节点号 -delete命令删除指定节点号的文件;
[test@iZ2zegbfyk4ky0 /data/files]# ls -i
141817 ????̚??Bc 135875 _?J@???9V0?? 135604 demo
132431 business 137944 ?j?eJ?C@ 136454 file
[test@iZ2zegbfyk4ky0 /data/files]# find -inum 141817 -delete
[test@iZ2zegbfyk4ky0 /data/files]#
Redis安装完毕后,正常启动命令:
./redis-server /etc/redis/redis-6379.conf
关闭命令:
./redis-cli -p 6379 -a pass shutdown
常用Linux开机启动配置的两种方法:
(1)编辑/etc/rc.local,添加开机启动运行命令;
(2)添加/etc/init.d/redis,通过chkconfig配置开机启动服务;
Nginx安装完毕后,正常启动命令:
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
或
/usr/local/nginx/sbin/nginx
Nginx启动默认nginx.conf配置文件即为/usr/local/nginx/conf/nginx.conf,所以-c 配置文件可以不指定。
关闭命令:
/usr/local/nginx/sbin/nginx -s stop
常用Linux开机启动配置的两种方法:
(1)编辑/etc/rc.local,添加开机启动运行命令;
(2)添加/etc/init.d/nginx,通过chkconfig配置开机启动服务;
Linux使用rpm方式安装MySQL数据库主要分为以下几步:
MySQL下载地址:
http://downloads.mysql.com/archives/community/
1、Linux服务器检查是否安装MySQL服务
mysql --version
或
rpm -qa|grep -i mysql
2、下载和安装MySQL源:
wget https://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm
yum -y install mysql57-community-release-el7-10.noarch.rpm