随笔分类 - Solaris操作系统
摘要:http://www.tokiwinter.com/configuring-transitive-ipmp-on-solaris-11/ We all know the pain of configuring probe-based IPMP under Solaris, with a slew of test addresses being required, and a long line o...
阅读全文
摘要:在安装过程中遇到了2个问题 1) 安装时无法识别硬RAID磁盘 T4-2的2块本地盘做了硬RAID,用jumpstart安装时无法识别硬RAID磁盘,报错信息如下: {0} ok boot net - install nowin
Boot device: /pci@400/pci@1/pci@0/pci@4/network@0 File and args: - install now...
阅读全文
摘要:简单记录一下使用命令行升级Firmware的过程。 升级前版本 -> version
SP firmware 3.2.1.8.a
SP firmware build number: 88456
SP firmware date: Thu Apr 10 11:54:49 PDT 2014
SP filesystem version: 0.2.7 配置一台TFTP服务器 使...
阅读全文
摘要:在ILOM中,root用户的缺省密码是changeme. 为了系统的安全性,通常情况下需要修改root密码. 如果忘了密码,可以参考以下步骤重置root密码。 用串口线连接Oracle服务器ILOM口 以default用户登录 SUNSP-0000000000 login: default
Press and release the phy...
阅读全文
摘要:假设需要配置从主机com00biiitf001登录主机ols00biiitf001时不需要密码,则采用以下步骤配置: com00biiitf001上产生公用/私有密钥对 $ ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/...
阅读全文
摘要:如何查看UFS文件系统创建命令 root@ofs0accmcc01 # mkfs -m /dev/md/rdsk/d100
mkfs -F ufs -o nsect=128,ntrack=48,bsize=8192,fragsize=1024,cgsize=16,free=1,rps=90,nbpi=4077,opt=t,apc=0,gap=0,nrpos=8,maxcontig=16,m...
阅读全文
摘要:在ssh的配置文件中有2个参数可以控制空闲连接超时断开。这2个参数是ClientAliveCountMax和ClientAliveInterval。 Solaris10上设置空闲ssh连接超时断开的方法如下: 修改/etc/ssh/sshd_config文件,在文件中加入以下内容:ClientAliveCountMax = 0ClientAliveInterval = ...
阅读全文
摘要:对于Oracle而言,如果数据库存储在UFS文件系统上,启用DirectIO能够提高数据库性能。Oracle有个参数filesystemio_options可以控制数据库是否使用DirectIO. 如果在Oracle已经设置了使用DirectIO,怎样才能确认DirectIO是否真起作用了呢?在Solaris10上,可以通过dtrace来确认DirectIO是否已经启用。 1. DirectI...
阅读全文
摘要:http://thegeekdiary.com/how-to-create-and-configure-solaris-10-zones/ Solaris zones enables a software partitioning of solaris 10 OS to support multiple independent, secure OS environments to run in ...
阅读全文
摘要:对于suspect状态的部件,可以用setchs命令清除其状态。如果ScApp的版本在5.20.15之前,需要进入service模式后才能使用setchs命令。如果ScApp版本 升级到5.20.15后,setchs命令可以直接使用,不需要使用service命令和向SUN索取密码,进入service模式。 清除过程如下所示: lom>showchs -bComponent ...
阅读全文
摘要:http://www.c0t0d0s0.org/archives/7675-Less-known-Solaris-features-svccfg-editprop.html Sometimes small features are really helpful. Nevertheless they are often relatively unknown. One of the examples...
阅读全文
摘要:允许root用户使用ftp - 修改/etc/ftpd/ftpusers文件,移除或注释掉"root"- 修改/etc/proftpd.conf文件,"RootLogin off" => "RootLogin on"- 重启ftp服务,svcadm restart ftp 允许root用户使用ssh登录 - 修改/etc/ssh/sshd_confi...
阅读全文
摘要:Solaris11的网络配置与Solaris10有很大不同,Solaris11通过network configuration profiles(NCP)来管理网络配置。 Solaris11网络配置分为Fixed Network Configuration和 Reactive Network Configuration两种。 Fixed Network是指网络配置不会根据网络环境自动适应的配置模...
阅读全文
摘要:在Solaris10中,主机名的修改是通过修改相关的配置文件实现的。在Solaris11中,主机名的配置信息已经转移到SMF配置库中,因此修改主机名的方式与Solaris10完全不同。以下是修改Solaris11.1主机名的两种方法。 1. 使用SMF命令修改SMF库 1.1 检查当前主机名 root@solaris11:~# hostnamesolaris11root@solaris...
阅读全文
摘要:通过Solaris与Active Directory的集成,Solaris可以使用Windows 2003 R2/ 2008 Active Directory来进行用户登录验证。以下是简要配置过程。 需要说明的是,系统上最好配置NTP时间同步。当系统时间差异过大时会导致AD用户无法登录Solaris的问题。 测试环境 域控制器1:Windows 2003R2 SP2Hostname =...
阅读全文
摘要:SSH登录速度慢可能有多种原因。 1. 与DNS有关 缺省情况下,当客户端用SSH登录solaris服务器时,服务器会试图反向解析客户端的IP 地址(即把IP地址解析成机器名)。如果Solaris系统中配置仅使用/etc/hosts文件来进行域名解析,服务器会通过hosts文件反向解析客户端IP,解析不成功会立即返回,不会影响SSH登录速度;如果Solaris系统中配置使用DNS进行域名解析,...
阅读全文
摘要:Solaris10安装光盘自带了iPlanet Directory Server安装包,系统管理员可以利用iPlanet Directory Server在Solaris系统创建一个LDAP Server。 LDAP Server : 10.0.22.20 LDAP Client : 10.0.22.30 1. 安装配置LDAP Server 1.1 在LDAP服务器上设置缺省域名 ...
阅读全文
摘要:If you need to change the controller numbers (c#) that a disk has assigned to it, whether it is for cluster, Solstice DiskSuite[TM]/Solaris[TM] Volume Manager, or just for ease of management. With Sol...
阅读全文
摘要:http://www.confignotes.com/2013/09/sparc-t4-raid-setup/ How to configure a RAID volume with the internal Hard Drives on Oracle/SUN SPARC T4-1 and T4-2. The RAID setup procedure below was tested in S...
阅读全文
摘要:在cron job的日志中发现以下报错: ! c queue max run limit reached Wed Aug 28 12:56:00 2013 ! rescheduling a cron job Wed Aug 28 12:56:00 2013 报错显示cron job达到了队列最大限制。 检查一下cron服务 #> svcs -p cron ...
阅读全文
浙公网安备 33010602011771号