1. 文件读写权限
chmod 777 -R xxx
setenforce 0 //临时生效
2. Nginx、apache页面存放位置
/usr/share/nginx/html //nginx页面存放位置
/var/www/html //apache页面存放的位置
3. 各个应用配置文件位置
/etc/sysconfig/network-scripts/ifcfg-enp0s3 //网络配置文件
/etc/sysconfig/network-scripts/ifcfg-enp0s3 //IP修改地址
/etc/resolv.conf //添加DNS配置文件
/etc/httpd/conf/httpd.conf //apache配置文件
/etc/my.cnf //mysql配置文件
/etc/php.ini //php配置文件
/etc/nginx/conf.d/default.conf //nginx配置文件
/etc/redis/6379.conf //redis配置文件(视情况而定)
/usr/bin/memcached //memcache配置文件
/etc/vsftpd/vsftpd.conf //ftp配置文件
/etc/sysconfig/selinux //selinux配置文件
4. 各个应用启动、重启、停止等
systemctl start httpd.service(启动)
systemctl restart httpd.service(重启)
systemctl stop httpd.service
systemctl enable httpd.service(开机即启动)
systemctl status httpd.service(查看运行状态)
Redis服务重启
ps -ef|grep redis
kill -9 port
进入 /etc/redis/
执行 redis-server 6379.conf
开启memcahed
/usr/bin/memcached -d -l 127.0.0.1 -p 11211 -m 200 -u root
crontabs启动
/bin/systemctl restart crond.service #启动服务
/bin/systemctl reload crond.service #重新载入配置
设置防火墙、开放端口
firewall-cmd –zone=public –add-port=22/tcp –permanent
Linux启动redis客服端(先开启redis服务)
cd /usr/local/bin/
redis-cli