当前位置:  建站>运营/SEO
本页文章导读:
    ▪RHEL6下安装GPFS 3.5的具体过程      安装gpfs集群文件系统 已三台主机为例 1,    安装gpfs软件(三台主机上运行) 本次从db2 purescale安装介质中直接安装,其它安装方法见参考文献 yum install /tmp/gpfs/*.rpm rpm –qa gpfs验.........
    ▪RHEL6 修改口令报错passwd: Authentication token manipulation error      修改口令报错passwd: Authentication token manipulation error 原因:和之前的安全加固有关系,通过手工修改/etc/passwd等两个文件的属性即可成功修改密码 备注:chattr 改变文件属性。 i:即Immutable,系.........
    ▪Linux(八)——Vmware中的Linux与主机系统Windows交互          在已有的windows系统中学习使用LINUX,使用虚拟机是很方便高效的事,这种方法既不会真正弄瘫我们的系统,也能模拟出很多设备,比如加两块硬盘等.     我使用的虚拟机软.........

[1]RHEL6下安装GPFS 3.5的具体过程
    来源: 互联网  发布时间: 2013-10-31
安装gpfs集群文件系统

已三台主机为例
1,    安装gpfs软件(三台主机上运行)
本次从db2 purescale安装介质中直接安装,其它安装方法见参考文献
yum install /tmp/gpfs/*.rpm
rpm –qa gpfs验证软件是否已经正确安装
2,编译相关软件,安装并已后的rpm包
cd /usr/lpp/mmfs/src && make Autoconfig && make World && make InstallImages
[root@linux1 src]# make rpm
安装编译完自动生成的RPM 包
yum install /root/rpmbuild/RPMS/x86_64/gpfs.gplbin-2.6.32-131.0.15.el6.x86_64-3.5.0-0.x86_64.rpm
3,    修改PATH路径(三台主机上运行)

在3 台主机上修改HOME目录下的。bash_profile文件,在文件末尾增加
export PATH=$PATH:/usr/lpp/mmfs/bin
4,    新建目录,用做GPFS文件系统(三台主机上运行)
mkdir /db2fs
5,    创建gpfs 群集配置文件
[root@wtydb21 tmp]# vi /tmp/gpfsprofile
wtydb21:quorum-manager
wtydb22:quorum-manager
wtydb23:quorum-manager
6,创建集群,注意指定ssh方式
[root@wtydb21 pam.d]#
[root@wtydb21 gpfs]# mmcrcluster -N /tmp/gpfsprofile  -p wtydb21 -s wtydb22  -C gpfs_cluster -r /usr/bin/ssh -R /usr/bin/scp
Sat Apr  6 12:17:35 CST 2013: mmcrcluster: Processing node wtydb21
Sat Apr  6 12:17:35 CST 2013: mmcrcluster: Processing node wtydb22
Sat Apr  6 12:17:38 CST 2013: mmcrcluster: Processing node wtydb23
mmcrcluster: Command successfully completed
mmcrcluster: Warning: Not all nodes have proper GPFS license designations.
    Use the mmchlicense command to designate licenses as needed.
mmcrcluster: Propagating the cluster configuration data to all
  affected nodes.  This is an asynchronous process.

mmcrcluster 命令其中参数含义
-C bgbcrun 设定集群名称
-U bgbc 定义域名
-N /tmp/gpfs/nodefile 指定节点文件名
-p NSD1 指定主NSD 服务器为 NSD1
-s NSD1 指定备NSD 服务器为 NSD1
7,接受许可协议
[root@wtydb21 pam.d]# mmchlicense server --accept -N wtydb21,wtydb22,wtydb23
8,确认创建集群状况
[root@wtydb21 ~]# mmlscluster
[root@wtydb21 gpfs]# mmlscluster

GPFS cluster information
========================
  GPFS cluster name:         gpfs_cluster.wtydb21
  GPFS cluster id:           12146727015547904479
  GPFS UID domain:           gpfs_cluster.wtydb21
  Remote shell command:      /usr/bin/ssh
  Remote file copy command:  /usr/bin/scp

GPFS cluster configuration servers:
-----------------------------------
  Primary server:    wtydb21
  Secondary server:  wtydb22

 Node  Daemon node name  IP address   Admin node name  Designation
-------------------------------------------------------------------
   1   wtydb21           10.4.52.101  wtydb21          quorum-manager
   2   wtydb22           10.4.52.102  wtydb22          quorum-manager
   3   wtydb23           10.4.52.103  wtydb23          quorum-manager
9,生成nsd 盘,使用/dev/dm-3

[root@wtydb21 etc]# vi /tmp/nsdprofile
dm-3:::dataAndMetadata::
[root@wtydb21 gpfs]#  mmcrnsd -F /tmp/nsdprofile
mmcrnsd: Processing disk dm-3
mmcrnsd: Propagating the cluster configuration data to all
  affected nodes.  This is an asynchronous process.

此时系统自动修改/tmp/gpfsnsdprofile 文件内容如下:
[root@wtydb21 ~]# cat /tmp/nsdprofile
# dm-4:::dataAndMetadata::
gpfs1nsd:::dataAndMetadata:-1::system

10,启动集群
[root@wtydb21 /]# mmstartup -a
.
[root@wtydb21 src]# mmgetstate -a -L

 Node number  Node name       Quorum  Nodes up  Total nodes  GPFS state  Remarks    
------------------------------------------------------------------------------------
       1      wtydb21            2        2          3       active      quorum node
       2      wtydb22            2        2          3       active      quorum node
       3      wtydb23            2        2          3       active      
11,创建gpfs 文件系统
[root@wtydb21 src]# mmcrfs /db2fs gpfs_lv -F /tmp/nsdprofile -A yes -n 30 -v no

The following disks of gpfs_lv will be formatted on node wtydb21:
    gpfs1nsd: size 100829184 KB
Formatting file system ...
Disks up to size 848 GB can be added to storage pool system.
Creating Inode File
Creating Allocation Maps
Creating Log Files
Clearing Inode Allocation Map
Clearing Block Allocation Map
Formatting Allocation Map for storage pool system
Completed creation of file system /dev/gpfs_lv.
mmcrfs: Propagating the cluster configuration data to all
  affected nodes.  This is an asynchronous process.

参数含义如下:
/datafs 文件系统 mount 点名
gpfs_lv 指定文件系统 lv 名
-F 指定 NSD 的文件名
-A 自动 mount 选项为 yes
-B 块大小为64K
-n 挂载文件系统的节点估计数30 个
-v 校验建立磁盘是否已有文件系统 为否
12,挂载文件系统
[root@wtydb21 /]# mount /db2fs
[root@wtydb21 /]# df

13,设置gpfs 开机自启
[root@wtydb21 /]# mmchconfig autoload=yes

14,查询GPFS 配置信息
[root@wtydb21 share]# mmlsconfig

[root@wtydb21 share]# mmgetstate -a



15,备注:第一次安装gpfs后,版本不对,导致数据库不能正确启动,下载并升级后3.5.0.2后问题解决
[root@sdcmpdb1 ~]# mmstartup -a
mmstartup: Required service not applied. Install GPFS 3.5.0.1 or later.
mmstartup: Command failed.  Examine previous error messages to determine cause.

作者:hijk139 发表于2013-5-31 14:50:34 原文链接
阅读:0 评论:0 查看评论

    
[2]RHEL6 修改口令报错passwd: Authentication token manipulation error
    来源: 互联网  发布时间: 2013-10-31
修改口令报错passwd: Authentication token manipulation error

原因:和之前的安全加固有关系,通过手工修改/etc/passwd等两个文件的属性即可成功修改密码

备注:chattr 改变文件属性。
i:即Immutable,系统不允许对这个文件进行任何的修改。如果目录具有这个属性,那么任何的进程只能修改目录之下的文件,不允许建立和删除文件

解决问题的方法如下:先修改文件属性为可修改,再改回来,具体如下

[root@linux1 /]# passwd oracle
Changing password for user oracle.
New password:
Retype new password:
passwd: Authentication token manipulation error
[root@linux1 /]#
[root@linux1 /]#
[root@linux1 /]# ls -l /etc/passwd
-rw-r--r-- 1 root root 1831 May 30 14:24 /etc/passwd
[root@linux1 /]# ls -l  /etc/shadow
-rw-r--r-- 1 root root 1430 May 30 15:52 /etc/shadow
[root@linux1 /]#  chattr -i /etc/passwd
[root@linux1 /]#  chattr -i /etc/shadow
[root@linux1 /]#
[root@linux1 /]#
[root@linux1 /]# passwd oracle
Changing password for user oracle.
New password:
Retype new password:
passwd: all authentication tokens updated successfully.
[root@linux1 /]#
[root@linux1 /]#
[root@linux1 /]# chattr +i /etc/shadow
[root@linux1 /]# chattr +i /etc/passwd
[root@linux1 /]#


参考资料:http://blog.csdn.net/wyzxg/article/details/4069277

作者:hijk139 发表于2013-5-31 13:49:48 原文链接
阅读:78 评论:0 查看评论

    
[3]Linux(八)——Vmware中的Linux与主机系统Windows交互
    来源: 互联网  发布时间: 2013-10-31

    在已有的windows系统中学习使用LINUX,使用虚拟机是很方便高效的事,这种方法既不会真正弄瘫我们的系统,也能模拟出很多设备,比如加两块硬盘等.

    我使用的虚拟机软件是Vmware,是一款比较成熟好用的虚拟机软件.那么在虚拟机里装好LINUX后,怎么在windows系统和LINUX系统之间进行通信和文件共享呢?下面介绍几种常用方式:

    1.挂载u盘  

     在linux中挂上U盘步骤如下:

     #fdisk -l 查看设备状态

     如果是在虚拟机中的linux,插上u盘后,u盘的设备名字一般为/dev/sdb1

     #mkdir /mnt/usb 在mnt目录下建立一个叫usb的文件夹

     接着就是挂载U盘了:

     #mount -t msdos /dev/sdb1 /mnt/usb

     如果是fat16就使用下面的命令

     #mount -t msdos /dev/sdb1 /mnt/usb

     如果是fat32

     #mount -t vfat /dev/sdb1 /mnt/usb

     如果是ext2格式,就用命令:

     #mount -t ext2 /dev/sda1 /mnt/usb

     打开/mnt/usb 就可以看到你的U盘里的东西了!

     如果要在linux中拷文件到u盘,就把文件直接复制到 /mnt/usb

     不过在拔出u盘之前一定要运行卸载u盘的命令

     #umount /mnt/usb 否则u盘是没有你所拷进去的东西是无效的!!

 

     2.使用samba服务

     在局域网中,常常需要去访问其它Windows系统共享出来的目录,在Linux下,安装了samba后就可以使用samba中带的命令来访问Windows机器的共享资源。

     Samba使用 SMB协议通过网络连接来共享文件,支持该协议的操作系统包括windows,OS/2和LINUX.

     如果网络中既有windows机器又有LINUX机器,那么samba就发挥作用了,smba会允许文件被网络中的所有系统共享.

     在samba官网http://www.samba.org/samba/download/下载samba-latest.tar.gz

     或者直接使用yum -install samba进行安装,具体配置不在多说,网上很多.      

     用smbclient来列出Windows机器的共享资源

     smbclient -L 192.168.24.*

     windows系统里,可以直接在windows机器上通过ip地址来访问LINUX共享目录

     

    3.使用虚拟机(VM)中的共享文件夹选项

     (1) 在虚拟机中安装好linux

     (2)选择 虚拟机菜单-->VM-->Install VMwareTools并安装完

     (3)虚拟机菜单-->VM-->Setting-->Options-->SharedFolders-->Add-->Browse

-->选择windows中的一个目录作为共享目录(不需要在windows下把目录设成共享文

件夹)并填好文件夹在linux中显示的名字,比如aaa,然后ok.


     (4)在windows中把文件拷进共享文件夹.


    
最新技术文章:
▪SQVI和SAP查询QUERY的区别和使用注意事项    ▪彻底理解Cisco/Linux/Windows的IP路由    ▪Exchange 2010 处于禁止发送用户自动收到来自IT...
▪MB_CHANGE_DOCUMENT使用方法    ▪ALV的html表头    ▪【译】如何精确判断最终用户响应时间过长的...
▪apache2.4.4启用deflate压缩    ▪使用vmware 配置centos 6.0+ 网络出现的各种问题...    ▪十句话教你学会Linux数据流重定向
▪centos6.x已经安装的系统添加图形界面    ▪Linux查看CPU和内存使用情况    ▪win7问题解决,凭据管理器和无法访问,不允...
▪Dynamics CRM 2013 初体验(4):不再被支持的功...    ▪win7下制作ubuntu系统安装启动盘和U盘安装ubuntu...    ▪Linux cp -a用法
▪Windows Server时间服务器配置方法    ▪Tomcat+memcached实现Session共享    ▪Linux修改系统环境变量PATH路径的方法
▪Citrix 服务器虚拟化之二十七 XenApp6.5发布服务...    ▪搭建本地Ubuntu 镜像服务器    ▪Create local metadata resource of yum
▪tsm ANS0326E问题处理    ▪Windows SVN变化邮件通知(Python2.7实现)    ▪linux下的内核测试工具——perf使用简介
▪Nginx TCP Proxy模块的编译安装    ▪OSX: SSH密钥使用日记(2)    ▪OSX: SSH密钥使用日记(1)
▪Manually start and stop Oracle XE in Ubuntu    ▪Disable autostart of Oracle-xe in Ubuntu    ▪tar命令-linux
▪xtrabackup-2.1.2-611安装    ▪无废话ubuntu 13.4文件共享配置    ▪Unix文本处理工具之sed
▪hpux 操作系统 磁带备份与恢复    ▪HP DL360 G7通过iLO部署系统    ▪Redhat 6.0中VNC Server的配置方法
▪hpux 操作系统磁带备份与恢复    ▪用C++编程调用libvirt的API来创建KVM虚拟机    ▪hpux- hp小型机日常硬件故障处理case(一)
▪web集群时session同步的几种方法(统计)    ▪inux常用命令大全    ▪BAT 批处理实现循环备份N天文件夹
▪BIND9私有DNS服务器小环境搭建实验    ▪Exchange2013增量备份    ▪OSSEC Monitor your App log file
▪《深入理解Nginx》阅读与实践(三):使用upstre...    ▪如何给Fedora 15创建磁盘分区    ▪Packet Sniffer Code in C using sockets
▪Error, some other host already uses address    ▪修改uCOS_II以实现“优先级+时间片”联合调度    ▪weblogic开发模式与生产模式介绍
▪Wireshark 高级特性    ▪ubuntu13.04版本下安装RabbitVCS,类似windows的Tortoi...    ▪Apache 一台主机绑定多个域名及虚拟主机
▪linux安全设置    ▪RHEL双网卡绑定    ▪Linux shell if参数
▪Windows配置路由时可以指定源地址啦    ▪centos安装vim7.4    ▪S3C2410 实验三——块拷贝、字拷贝(寄存器的...
▪系统运维——日志处理    ▪ip_conntrack缓存neighbour    ▪关键在封装并发出了帧-IP冲突也无所谓
▪weblogic11g 安装——linux 无图形界面    ▪《数据通信与网络》笔记--SCTP    ▪《数据通信与网络》笔记--TCP中的拥塞控制
▪weblogic11g 安装集群 —— win2003 系统、单台主...    ▪weblogic11g 节点管理器 nodemanager    ▪Citrix 服务器虚拟化之二十六 应用程序虚拟化...
▪如何将windows下的文件夹挂载到linux虚拟机下    ▪在64位AIX6.1下安装SAP JCo    ▪Outlook启动时提示“找不到文件Outlook.pst文件”...
▪weblogic8.1 登陆5 ip 限制    ▪weblogic 内存 及 内存溢出    ▪手把手教你在Windows端搭建Redmine项目管理软件
▪启动及重新启动nginx,重启nginx后丢失nginx.pid问...    ▪Win7实现快速启动栏并实现靠左边的终极操作...    ▪《深入理解Nginx》阅读与实践(二):配置项...
▪显示grub引导菜单    ▪nagios监控主机    ▪linux各种数据流重定向
▪centOS安装chrome浏览器    ▪Slackware 14 安装完全指南    ▪SharePoint 2013的100个新功能之内容管理(三)
▪Citrix 服务器虚拟化之二十一 桌面虚拟化之部...    ▪[问,ask]ubuntu13.04安装vncserver后只显示桌面,不显...    ▪Win7中IIS出现“HTTP 错误 404.17 - Not Found 请求的...
▪CentOS快速安装最新版本的SaltStack    ▪CentOS 6.4 快速安装Nginx笔记    ▪磁盘管理——RAID 0
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3