我的linux相关

主要用于自己的简单操作

mysql相关
重启:systemctl start mysqld
默认配置文件路径:
配置文件:/etc/my.cnf
日志文件:/var/log/mysqld.log
服务启动脚本:/usr/lib/systemd/system/mysqld.service
socket 文件:/var/run/mysqld/mysqld.pid
查看信息:mysql -v

nginx相关:
配置文件:/etc/nginx/nginx.conf
重启:systemctl restart nginx
查看nginx -v

php相关:
重启:systemctl start php-fpm
查看php.ini位置 :php -i | grep php.ini
查看信息:php -v

域名入口:/usr/share/nginx/html

关闭防火墙:systemctl restart iptables.service

phpize位置:/usr/bin/phpize

扩展目录:/usr/lib64/php/modules/

memcache相关:
启动memcached:systemctl start memcached
查看memcache的端口:netstat -tunlp | grep memcached
ps uax | grep memcache
查看11211端口:netstat -tunlple | grep 11211

redis相关:
redis配置文件:/etc/redis.conf
启动redis:systemctl start redis
查看11211端口:netstat -tunlple | grep 6379
操作redis /usr/bin/redis-cli
备份文件保存地址:/var/lib/redis

mongodb
配置文件:/etc/mongod.conf
启动mongodb:systemctl restart mongod
查看27017端口:netstat -tunlple | grep 27017
操作mongodb:mongo

查看文件所在位置

phpinfo相关: curl 192.168.139.128/phpinfo.php |grep redis

你可能感兴趣的:(我的linux相关)