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配置开机启动服务;
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配置开机启动服务;
MySQL数据库全量备份shell(Linux版)脚本,备份核心逻辑:
crontab配置如下:
0 2 * * * root /home/backup_mysql.sh 2>&1 | tee -a /opt/backup/mysql/mysql_backup.log
详细脚本如下:
vi/vim共分为三种模式,分别是一般模式,编辑模式和命令模式。
用户刚启动vi/vim,便进入了一般模式;
在一般模式下按下i就进入了编辑模式;
在一般模式下按下:就进入了命令模式;
复制:
yy 复制当前行
nyy 从光标向下复制n行