Toolpack Installation:toolpack validate Fedora Core8 2-3

From TBwiki
Jump to: navigation, search

If any of those steps fails, refer to the Fedora Core 8 installation guide

Contents

Yum Packages

  • Validation of the following package on the system using yum:
 yum list installed gcc
 yum list installed zlib-devel
 yum list installed mysql-server
 yum list installed mysql-devel
 yum list installed mysql-connector-odbc
 yum list installed fcgi
 yum list installed fcgi-devel
 yum list installed lighttpd
 yum list installed lighttpd-fastcgi
 yum list installed ruby
 yum list installed ruby-devel
 yum list installed rubygems
 yum list installed libxml2
 yum list installed libpcap

Example:

 [root@TL-FEDORA64-02 log]# yum list installed gcc
 Installed Packages
 gcc.x86_64                               4.1.2-42.el5           installed


Other Packages Installed

gem Installation

  • execute the following command:
 gem list --local
Result should contain:
 *** LOCAL GEMS ***
 
 fcgi (0.8.7)
     FastCGI library for Ruby.
 
 sources (0.0.1)
     This package provides download sources for remote gem installation


ODBC Configuration

  • Verify that the following file exists:
ls -al /lib/tb/toolpack/3rdparty/odbc-connector/libmyodbc3_r-3.51.27.so
  • Verify odbc config file:
 cat /etc/odbcinst.ini
Result should contain:
 # Driver from the MyODBC package
 # Setup from the unixODBC package
 [MySQL]                                                   <----- This line must NOT start with a '#'
 Description     = ODBC for MySQL
 Driver          = /usr/lib/libmyodbc3_r.so
 Setup           = /usr/lib/libodbcmyS.so
 FileUsage       = 1

MySQL Configuration

  • Verify MySQL config file:
 cat /etc/my.cnf
Result should contain under [mysqld]:
 log-bin
 server-id=[UniqueId]

Note: server-id value may vary, but server-id needs to be a non-zero value and unique when using more than one host.

  • Verify if the server is running
 service mysqld status
Result:
 mysqld (pid 5101) is running...
Personal tools