Replies: 1 comment
-
To configure the Oracle SOA Suite Docker container to use an alternative privileged user instead of the SYS user, you can follow these steps: Steps to Use an Alternative Privileged User • In your Dockerfile, you can modify the entry point or initialization scripts to use your alternative user. Modify Environment Variables: Example Dockerfile FROM oracle/soasuite:12.2.1.4 ENV DB_USER=my_alternative_user COPY custom-init.sh /u01/oracle/ RUN chmod +x /u01/oracle/custom-init.sh Example Custom Initialization Script #!/bin/bash sed -i 's/SYS_USER/${DB_USER}/g' /u01/oracle/user_projects/domains/soa_domain/config/jdbc/datasource.xml /u01/oracle/startWebLogic.sh Additional Resources • Community Support: Check forums and community discussions for any additional tips or shared experiences from other users. By following these steps, you should be able to configure the Oracle SOA Suite Docker container to use your alternative privileged user. If you encounter any issues or need further assistance, feel free to ask! https://support.oracle.com/knowledge/Middleware/3046883_1.html Oracle SOA Suite Docker Configuration #2846 Oracle Support Document on Using Alternative User |
Beta Was this translation helpful? Give feedback.
-
I'm in the process of setting up Oracle SOA Suite using Docker documented here, and I've encountered a configuration issue. The container setup requires a parameter
DB_PASSWORD
for thesys
user password of the Oracle database as mentioned in this section 5. Create a container for the Administration Server. However, I have another database user with all the necessary privileges and would prefer to use this user instead of the SYS user.Does anyone know how I can configure or run the Oracle SOA Suite Docker container to use this alternative privileged user? Are there specific environment variables or configuration files that I need to adjust?
Thanks in advance for your help!
Beta Was this translation helpful? Give feedback.
All reactions