search
HomeDatabaseMysql TutorialCentOS 5.4 安装 Tuxedo 8.0 操作步骤

1.先下载tuxedo软件tuxedo81_linux.bin 这个软件起初在CentOS 5.5上安装。点击这里进入下载需要注册。一. 以root身份建立tuxedo

1.先下载tuxedo软件tuxedo81_linux.bin 这个软件起初在CentOS 5.5上安装。点击这里进入下载需要注册。

一. 以root身份建立tuxedo用户,,并以tuxedo用户登陆,此用户将做为以后tuxedo管理员,用户默认目录为/home/tuxedo;

二. 创建/opt/tuxedo目录,用来安装tuxedo,记得要chown tuxedo.tuxedo tuxedo,把tuxedo目录的属主和组都改成tuxedo;

三. 用ssh把安装文件(tuxedo81_linux.bin)和用户许可证书文件(lic.txt)传到/opt/tuxedo目录中;

四. 执行sh tuxedo81_linux.bin
问题:

出错1--------------------------------------------------
[tuxedo@TUXSVR4 tuxedo]$ sh tuxedo81_linux.bin
Preparing to install...
The included VM could not be uncompressed. Please try to download
the installer again and make sure that you download using 'binary'
mode.   Please do not attempt to install this currently downloaded copy.

解决办法:

脚本使用uncompress命令,但是linux下没有,使用cp /bin/gunzip   /bin/uncompress


出错2--------------------------------------------------
Preparing to install...
/tmp/install.dir.17644/Linux/resource/jre/bin/i386/native_threads/java: error wh
ile loading shared libraries: libstdc++-libc6.1-1.so.2: cannot open shared objec
t file: No such file or directory


解决:
从别处拷来libstdc++-libc6.1-1.so.2 放到usr/lib里或者安装libstdc++-2.95.3-0.20000503.1.i386.rpm 软件包
rpm -ivh libstdc++-2.95.3-0.20000503.1.i386.rpm --force进去
注:本人系统为centOs 5.4  /usr/lib/目录下 为libstdc++-libc6.2-2.so.3 版本 .  重命名为libstdc++-libc6.1-1.so.2

出错3
Preparing to install...
Error occurred during initialization of VM
Unable to load native library: /tmp/install.dir.14985/Linux/resource/jre/jre/lib/i386/libjava.so: symbol __libc_wait,
version GLIBC_2.0 not defined in file libc.so.6 with link time reference

解决:
建立libcwait.c内容如下:
     /* Compile with
gcc -shared -o libcwait.so libcwait.c -fpic -O
       and use it by adding
       LD_PRELOAD=/path/to/libcwait.so
       in the environment of the application with the bug.
*/

#include
#include
#include
#include

pid_t
__libc_wait (int *status)
{
       int res;
       asm volatile ("pushl %%ebx\n\t"
               "movl %2, %%ebx\n\t"
               "movl %1, %%eax\n\t"
               "int $0x80\n\t"
               "popl %%ebx"
               : "=a" (res)
               : "i" (__NR_wait4), "0" (WAIT_ANY), "c" (status), "d" (0),
               "S" (0));
       return res;
}
把它编译成libcwait.so

gcc -shared -fpic -o libcwait.so libcwait.c

然后:
export LD_PRELOAD=/opt/tuxedo/libcwait.so

 
chmod a+x /opt/tuxedo/tuxedo81_linux.bin
LD_PRELOAD=/opt/tuxedo/libcwait.so /opt/tuxedo/tuxedo81_linux.bin


  
出错4:
Invocation of this Java Application has caused an InvocationTargetException. Thi
s application will now exit. (LAX)

Stack Trace:
java.lang.NoClassDefFoundError
       at java.lang.Class.forName0(Native Method)
       at java.lang.Class.forName(Class.java:120)
       at java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(GraphicsEnvi
ronment.java:58)
       at java.awt.Window.(Window.java:188)
       at java.awt.Frame.(Frame.java:315)
       at java.awt.Frame.(Frame.java:262)
       at com.zerog.ia.installer.Main.b([DashoPro-V1.2-120198])
       at com.zerog.ia.installer.Main.main([DashoPro-V1.2-120198])
       at java.lang.reflect.Method.invoke(Native Method)
       at com.zerog.lax.LAX.launch([DashoPro-V1.2-120198])
       at com.zerog.lax.LAX.main([DashoPro-V1.2-120198])
GUI-
解决:
以非图形界面安装 LD_PRELOAD=/opt/tuxedo/libcwait.so /opt/tuxedo/tuxedo81_linux.bin  -i console无图形安装。

linux

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How to use MySQL functions for data processing and calculationHow to use MySQL functions for data processing and calculationApr 29, 2025 pm 04:21 PM

MySQL functions can be used for data processing and calculation. 1. Basic usage includes string processing, date calculation and mathematical operations. 2. Advanced usage involves combining multiple functions to implement complex operations. 3. Performance optimization requires avoiding the use of functions in the WHERE clause and using GROUPBY and temporary tables.

An efficient way to batch insert data in MySQLAn efficient way to batch insert data in MySQLApr 29, 2025 pm 04:18 PM

Efficient methods for batch inserting data in MySQL include: 1. Using INSERTINTO...VALUES syntax, 2. Using LOADDATAINFILE command, 3. Using transaction processing, 4. Adjust batch size, 5. Disable indexing, 6. Using INSERTIGNORE or INSERT...ONDUPLICATEKEYUPDATE, these methods can significantly improve database operation efficiency.

Steps to add and delete fields to MySQL tablesSteps to add and delete fields to MySQL tablesApr 29, 2025 pm 04:15 PM

In MySQL, add fields using ALTERTABLEtable_nameADDCOLUMNnew_columnVARCHAR(255)AFTERexisting_column, delete fields using ALTERTABLEtable_nameDROPCOLUMNcolumn_to_drop. When adding fields, you need to specify a location to optimize query performance and data structure; before deleting fields, you need to confirm that the operation is irreversible; modifying table structure using online DDL, backup data, test environment, and low-load time periods is performance optimization and best practice.

How to analyze the execution plan of MySQL queryHow to analyze the execution plan of MySQL queryApr 29, 2025 pm 04:12 PM

Use the EXPLAIN command to analyze the execution plan of MySQL queries. 1. The EXPLAIN command displays the execution plan of the query to help find performance bottlenecks. 2. The execution plan includes fields such as id, select_type, table, type, possible_keys, key, key_len, ref, rows and Extra. 3. According to the execution plan, you can optimize queries by adding indexes, avoiding full table scans, optimizing JOIN operations, and using overlay indexes.

How to use MySQL subquery to improve query efficiencyHow to use MySQL subquery to improve query efficiencyApr 29, 2025 pm 04:09 PM

Subqueries can improve the efficiency of MySQL query. 1) Subquery simplifies complex query logic, such as filtering data and calculating aggregated values. 2) MySQL optimizer may convert subqueries to JOIN operations to improve performance. 3) Using EXISTS instead of IN can avoid multiple rows returning errors. 4) Optimization strategies include avoiding related subqueries, using EXISTS, index optimization, and avoiding subquery nesting.

How to configure the character set and collation rules of MySQLHow to configure the character set and collation rules of MySQLApr 29, 2025 pm 04:06 PM

Methods for configuring character sets and collations in MySQL include: 1. Setting the character sets and collations at the server level: SETNAMES'utf8'; SETCHARACTERSETutf8; SETCOLLATION_CONNECTION='utf8_general_ci'; 2. Create a database that uses specific character sets and collations: CREATEDATABASEexample_dbCHARACTERSETutf8COLLATEutf8_general_ci; 3. Specify character sets and collations when creating a table: CREATETABLEexample_table(idINT

How to uninstall MySQL and clean residual filesHow to uninstall MySQL and clean residual filesApr 29, 2025 pm 04:03 PM

To safely and thoroughly uninstall MySQL and clean all residual files, follow the following steps: 1. Stop MySQL service; 2. Uninstall MySQL packages; 3. Clean configuration files and data directories; 4. Verify that the uninstallation is thorough.

How to rename a database in MySQLHow to rename a database in MySQLApr 29, 2025 pm 04:00 PM

Renaming a database in MySQL requires indirect methods. The steps are as follows: 1. Create a new database; 2. Use mysqldump to export the old database; 3. Import the data into the new database; 4. Delete the old database.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function