摘要: linux的scp命令linux 的 scp 命令 可以 在 linux 之间复制 文件 和 目录;==================scp 命令==================scp 可以在 2个 linux 主机间复制文件;命令基本格式:scp [可选参数] file_source file_target======从 本地 复制到 远程======* 复制文件:* 命令格式:scp local_file remote_username@remote_ip:remote_folder或者scp local_file remote_username@remote_ip:remote_f 阅读全文
posted @ 2011-08-05 17:30 xiao-yu 阅读(48613) 评论(1) 推荐(0) 编辑
摘要: linux忘记mysql密码处理方法:# /etc/init.d/mysql stop# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &# mysql -u root mysqlmysql> update user set password=password('newpassword') where user='root';mysql> flush privileges;mysql> quit# /etc/init.d/mysql restart# mys 阅读全文
posted @ 2011-08-05 14:28 xiao-yu 阅读(285) 评论(0) 推荐(0) 编辑