Linux命令行
方法一:
创建全局可执行指令
ln -s /home/可执行文件 /usr/local/bin/重命名
-----------两个都必须是绝对路径;
服务开机自启动:--------前提:添加全局可执行指令
chkconfig 服务名 on
若想关闭,将on改为off
方法二:
创建全局可执行指令————修改.bash_profile文件
[root@root ~]# vi /root/.bash_profile
在修改PATH=$PATH:$HOME/bin为:
PATH=$PATH:$HOME/bin:/usr/local/mysql/bin:/usr/local/mysql/lib //冒号分隔路径;
[root@root ~]# source /root/.bash_profile //使刚才的修改生效
服务开机自启动:
cp /home/可执行文件 /etc/init.d/重命名
例如Mysql:
cp support-files/mysql.server /etc/init.d/mysql-server
例如Apache:
cp apache/bin/apachectl /etc/init.d/apache
报错:service apache does not support chkconfig
需要在/etc/init.d/apache内添加chkconfig和description
# chkconfig: - 85 15
# description: nginx is a World Wide Web server. It is used to serve
命令杂项:
free -h
--------查看剩余内存和swap
ip -s link 或 ip -h link 或 ip -s addr 或 ip -h addr
--------查看ip
url
uri
如果需要自启动某些服务,只需使用chkconfig 服务名 on即可,若想关闭,将on改为off
Node内置模块:
http--------创建服务器
url---------对网络请求地址进行处理
path--------对服务器文件路径进行处理
fs----------对服务器文件进行处理
Nginx:
/root/vhost.sh xxx.com-----------添加域名(www和不带的都绑定)
nginx -s reload------------重启nginx