imagen empresa sostenible, blog de SIXE

Does your server need replacing? The right to repair says no

The new European Right to Repair Directive is putting an end to one of the most expensive myths in the IT sector: that switching to “more efficient” hardware is always more sustainable. Right to Repair makes products easier and faster to refurbish. And in the IT world, this means completely rethinking our relationship with hardware.

The myth of “new hardware is always better”.

For years we have heard the same speech: “this server is already 5 years old, it has to be replaced”. But is that really the case, have you looked on paper if it is really worth changing that IBM Power9 just because it is no longer supported? Because you may be in for a surprise. The reality is much more complex and, above all, more expensive than it looks.

When you buy a new server, you don’t just pay sticker price. You pay:

  • The carbon footprint of its manufacture
  • Transportation from the factory
  • Waste management of previous equipment
  • Migration and configuration costs
  • Lost productivity time during the transition

On the contrary, when you renew your existing hardware, you make the most of an already amortized investment and drastically reduce the environmental impact.

Let’s do green math: numbers don’t lie

The new right-to-repair regulations can extend the useful life of products by up to 10 years, which in IT terms translates into:

Why are these numbers so favorable? Because the manufacturing phase accounts for 70-85% of the total carbon footprint of any IT equipment. Keeping a server running for 8-10 years instead of 3-5 is literally doubling its environmental efficiency.

Right to repair in IT and sustainable technology

Beyond hardware: software also counts

The right to repair in IT is not limited to hardware. It includes:

  • Extended support for operating systems outside the official cycle. At SIXE we are committed to support outside the imposed life cycle and we can extend the useful life of Linux, AIX, Ceph, and other systems.
  • Independent maintenance of databases such as DB2, Oracle or Informix.
  • Security upgrades without the need to migrate the entire platform
  • Continuous performance optimization instead of mass replacements

The right to redress: more than a law, a philosophy

“My supplier says it’s insecure.”

Manufacturers have obvious business incentives to sell new hardware. However, a properly maintained 2018 server can be more secure than a poorly configured new one.

“No spare parts available.”

With independent maintenance providers, the availability of spare parts extends years beyond what is offered by the original manufacturers.

“Performance will be lower.”

A 5-year-old optimized system can outperform a new one without proper configuration.

Our sustainable commitment at SIXE: to make it last as long as the hardware itself allows

At SIXE, we have been advocating this philosophy for years. Not because it’s a trend, but because the numbers prove it: an approach based on preventive maintenance, continuous optimization and intelligent reuse of resources generates better ROI than the traditional buy-use-pull cycle.

Our commitment to “make it last forever” is not marketing. It is engineering applied with economic and environmental criteria.

Conclusion: the future is circular, not linear.

The right to repair in IT is not a regulatory imposition. It is an opportunity to rethink how we manage enterprise technology. An approach where maintaining, optimizing and extending the life of equipment is not only greener, but also more cost-effective.

The question is not whether your company will adapt to this reality. The question is whether it will do so before or after your competition.

Ready to make the leap to more sustainable and efficient IT? Discover our sustainable technology services and start optimizing your infrastructure today.

And if your system is giving you problems, we can assess its efficiency before replacing it.

👉Our consulting / service portfolio

Soporte técnico y consultoría en Ceph

How to fix the most common error in Ceph

Ceph is a powerful and flexible solution for distributed storage, but like any complex tool, it is not exempt from errors that are difficult to diagnose. If you get the message “could not connect to ceph cluster despite configured monitors”, you know that something is wrong with your cluster. And no, it’s not that the monitors are asleep. This error is more common than it seems, especially after network changes, reboots or when someone has touched the configuration “just a little bit”.

In this article we get to the point: we tell you the real causes behind this problem and most importantly, how to fix it without losing your data or your sanity in the process.

What does the error “could not connect to ceph cluster despite configured monitors” really mean?

When Ceph tells you that it cannot connect to the cluster “despite configured monitors”, what is really happening is that the client or daemon can see the configuration of the monitors, but cannot establish communication with any of them. It’s like being ghosting, no matter how much you call, they don’t pick it up.

Ceph monitors are the brains of the cluster: they maintain the topology map, manage authentication, and coordinate global state. Without connection to the monitors, your Ceph cluster is basically a bunch of expensive disks with no functionality.

Troubleshoot Ceph errors

The 5 most common causes (and their solutions)

Network and connectivity problems

The number one cause is usually the network. Either because of misconfigured firewalls, IP changes or routing problems.

Rapid diagnosis:

# Verifica conectividad básica
telnet [IP_MONITOR] 6789
# o con netcat
nc -zv [IP_MONITOR] 6789

# Comprueba las rutas
ip route show

Solution:

  • Make sure that ports 6789 (monitor) and 3300 (msgr2) are open.
  • Verify that there are no iptables rules blocking communication.
  • If you use firewalld, open the corresponding services:
firewall-cmd --permanent --add-service=ceph-mon
firewall-cmd --reload

2. Monmap out of date after IP change

If you have changed node IPs or modified the network configuration, it is likely that the monmap (monitor map) is obsolete.

Diagnosis:

# Revisa el monmap actual
ceph mon dump

# Compara con la configuración
cat /etc/ceph/ceph.conf | grep mon_host

Solution:

# Extrae un monmap actualizado de un monitor funcionando
ceph mon getmap -o monmap_actual

# Inyecta el monmap corregido en el monitor problemático
ceph-mon -i [MON_ID] --inject-monmap monmap_actual

3. Time synchronization problems

Ceph monitors are very strict with time synchronization. An offset of more than 50ms can cause this error.

Diagnosis:

# Verifica el estado de NTP/chrony
chrony sources -v
# o con ntpq
ntpq -p

# Comprueba el skew entre nodos
ceph status

Solution:

# Configura chrony correctamente
systemctl enable chronyd
systemctl restart chronyd

# Si tienes servidores NTP locales, úsalos
echo "server tu.servidor.ntp.local iburst" >> /etc/chrony.conf

4. Critical or corrupted monitors

If the monitors have suffered data corruption or are in an inconsistent state, they may not respond correctly.

Diagnosis:

# Revisa los logs del monitor
journalctl -u ceph-mon@[MON_ID] -f

# Verifica el estado del almacén del monitor
du -sh /var/lib/ceph/mon/ceph-[MON_ID]/

Solution:

# Para un monitor específico, reconstruye desde los OSDs
systemctl stop ceph-mon@[MON_ID]
rm -rf /var/lib/ceph/mon/ceph-[MON_ID]/*
ceph-objectstore-tool --data-path /var/lib/ceph/osd/ceph-0 --journal-path /var/lib/ceph/osd/ceph-0/journal --type bluestore --op update-mon-db --mon-store-path /tmp/mon-store
ceph-mon --mkfs -i [MON_ID] --monmap /tmp/monmap --keyring /tmp/ceph.mon.keyring

5. Incorrect client configuration

Sometimes the problem is on the client side: outdated configuration, incorrect keys or poorly defined parameters.

Diagnosis:

# Verifica la configuración del cliente
ceph config show client

# Comprueba las claves de autenticación
ceph auth list | grep client

Solution:

# Regenera las claves de cliente si es necesario
ceph auth del client.admin
ceph auth get-or-create client.admin mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *'

# Actualiza la configuración
ceph config dump > /etc/ceph/ceph.conf
When to ask for help (before it’s too late)

This error can escalate quickly if not handled correctly. If you find yourself in any of these situations, it’s time to stop and seek professional help:

  • All monitors are down simultaneously
  • You have lost quorum and cannot regain it.
  • Data appears corrupted or inaccessible
  • The cluster is in production and you can’t afford to experiment.

Ceph clusters in production are not trial and error territory. One false move can turn a connectivity problem into a data loss.

The best solution to the error “could not connect to ceph cluster despite configured monitors” : prevent

To avoid encountering this error in the future:

Proactive monitoring:

  • Configure alerts for monitor status
  • Monitors network latency between nodes
  • Monitors time synchronization

Best practices:

  • Always deploy at least 3 monitors (better 5 in production).
  • Keep regular backups of the monmap and keys.
  • Document any network configuration changes
  • Uses automations (Ansiblefor example, is perfect for configuration changes).

Regular testing:

  • Periodically tests connectivity between nodes
  • Simulates monitor failures in development environment
  • Verify that your recovery procedures are working

Need help with your Ceph cluster?

Distributed storage clusters such as Ceph require specific expertise to function optimally. If you have encountered this error and the above solutions do not solve your problem, or if you simply want to ensure that your Ceph infrastructure is properly configured and optimized, we can help.

Our team has experience solving complex Ceph problems in production environments, from urgent troubleshooting to performance optimization and high availability planning.

We offer help with

Don’t let a connectivity problem become a major headache. The right expertise can save you time, money and, above all, stress.

IBM Power11 | Descubre todas las novedades

IBM Power11 : Discover all the news

🆕 IBM Power11 is here

The wait is over: today IBM Power11 is officially presented, the new generation of servers that seeks to consolidate Power as a benchmark in performance, efficiency and openness.New IBM Power11

What’s new with the new Power servers?

IBM is committed to a full-stack design, with integration from the processor to the cloud, designed to simplify management, reduce costs and enable AI without the need for GPUs. Power11 offers us:

  • IBM Spyre Accelerator for Generative AI and Business Processes

  • Up to 25% more cores per chip compared to Power10

  • DDR5 memory with improved bandwidth and efficiency

  • Concurrent maintenance, quantum-secure cryptography, and automated energy-efficient mode

  • Full support for AIX, IBM i, Linux, and hybrid deployments (Power Virtual Server)

See the Power11 models available today:

  • 🔹 IBM Power S1122

    Compact 2U server, ideal for space-constrained environments. Up to 60 Power11 cores, 4TB of DDR5 RAM and advanced cyber resiliency and energy efficiency capabilities. Perfect for Linux, AIX or IBM i loads in mixed production environments.

    🔹 IBM Power S1124

    Designed to consolidate critical loads in 4U form factor with up to 60 cores, 8 TB of memory and dual socket. Ideal for medium to large enterprises that want cloud flexibility, without sacrificing performance or security.

    🔹 IBM Power E1150

    Intermediate model with high scalability, designed for demanding loads and SAP deployments, databases or intensive virtualization.

    🔹 IBM Power E1180

    The most powerful of the Power11 family. Up to 256 cores, 64 TB of memory and improved energy efficiency up to 28%. Designed for AI, advanced analytics and massive consolidation in mission-critical environments with 99.9999% availability.

More open and hybrid-ready power

All Power11 models can also be deployed on Power Virtual Server, integrating AIX, IBM i and Linux loads in hybrid environments, without the need to rewrite applications. In addition, KVM and PowerVM support allows you to choose the hypervisor that best fits your environment.

Availability: IBM Power11 will be available globally starting July 25, 2025. The IBM Spyre accelerator will be available in the fourth quarter of 2025.

What about the future?

Power11 ushers in a new era where AI, quantum security and energy efficiency are no longer promises, but native features.

If you like the new Power11 models, we have good news for you, because at SIXE we sell and migrate Power11 (and Power10, 9…). At SIXE we have been helping our customers to make the most of the power of Power for years.

agente con watsonx.ai y langgraph despliegue en ibm cloud

Learn how to build and deploy AI agents with LangGraph using watsonx.ai

Artificial intelligence no longer just responds, it also makes decisions. With frameworks like LangGraph and platforms like watsonx.ai , you can build agents that reason and act autonomously 🤯.

In this article, we will explain how to implement a ReAct (Reasoning + Action) agent locally and deploy it on IBM Cloud, all this with a practical example that includes a weather query tool 🌤️.

A practical guide to using your agents with LangGraph and Watsonx.ai

Project architecture

  • Machine with local project
    • Here you develop and test the agent with Python, LangGraph and dependencies.
  • ZIP (pip-zip)
    • Package with your code and additional tools.
  • Software Specification
    • Environment with libraries necessary to execute the agent.
  • watsonx.ai
    • Platform where you deploy the service as a REST API.
  • IBM Cloud Object Storage
    • Stores deployment assets.

Let’s prepare the environment for our agent

We need:

  • Python 3.12 installed
  • Access to IBM Cloud and watsonx.ai
  • Poetry for dependency management

Have you got everything? Well, first things first, clone the repository that we will use as an example. It is based on the official IBM examples.

git clone https://github.com/thomassuedbroecker/watsonx-agent-langgraph-deployment-example.git 
cd ./agents/langgraph-arxiv-research

First of all, let’s understand the example project.

[Developer Workstation] → [CI/Build Process] → [Deployment] ↓
[IBM Cloud / watsonx.ai]

The main files of the agent are:

ai_service.py
Main file that starts the agent service in production.
agent.py
Core logic of the AI agent based on LangGraph. Defines the workflow.
tools.py
Tools connected to the agent (Weather API).

Diagram of the Langgraph and watson.ai example repo

Let’s configure the environment

python3.12 -m venv .venv
source ./.venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install poetry

We also recommend the use of Anaconda or miniconda. It allows us to manage virtual environments or Python packages in a simple way and is widely used in ML.

In order for Python to find our custom modules (such as agents and tools), we need to include the current directory in the environment variable PYTHONPATH

 

export PYTHONPATH=$(pwd):${PYTHONPATH}

echo ${PYTHONPATH}

 

Once we have the environment ready, it is time for the variables. You must create a config.toml file if you don’t already have one and use your IBM Cloud credentials:

[deployment]
watsonx_apikey = "TU_APIKEY"
watsonx_url = "" # Tiene que seguir el siguiente formato: `https://{REGION}.ml.cloud.ibm.com0`
space_id = "SPACE_ID"
deployment_id = "YOUR_DEPLOYMENT_ID"
[deployment.custom]
model_id = "mistralai/mistral-large" # underlying model of WatsonxChat
thread_id = "thread-1" # Más información: https://langchain-ai.github.io/langgraph/how-tos/persistence/
sw_runtime_spec = "runtime-24.1-py3.11"

You will find your variables here:

https://dataplatform.cloud.ibm.com/developer-access

Once there, select your deployment space and copy the necessary data (API Key, Space ID, etc.).

Execution at the agent’s premises

It is time to test the agent:

source ./.venv/bin/activate
poetry run python examples/execute_ai_service_locally.py

Since it’s a weather agent why don’t you try it with something like something like…?

“What is the current weather in Madrid?”

The console should give you the time in Madrid. Congratulations! we only need to do the deploy in watsonx.ai

Agent deployment in watsonx.ai

source ./.venv/bin/activate
poetry run python scripts/deploy.py
This code will deploy the agent in Watsonx.ai
deploy.py does the following:
  1. Read the configuration (config.toml) with your credentials and deployment space.
  2. Package your code in a ZIP file for uploading to IBM Cloud.
  3. Creates a custom software specification based on a base environment (such as runtime-24.1-py3.11).
  4. Deploy the agent as a REST service in watsonx.ai.
  5. Save the deployment_id , needed to interact with the agent later.

In short:
takes your local agent, prepares it and turns it into a cloud-accessible service.

We check that everything is correct in watsonx.ai and go to the “Test” section. There we paste the following json (it is only one question)
{
"messages": [
{
"content": "What is the weather in Malaga?",
"data": {
"endog": [
0
],
"exog": [
0
] },
"role": "User"
}
] }
Click on predict and the agent will use the weather_service.
In the response json you will see the agent process -> call tool -> collect city -> process and return temperature.
Your agent is up and running on watsonx.ai!
If you want to test it from the terminal to make sure that it works, just use
source ./.venv/bin/activate
poetry run python examples/query_existing_deployment.py
Conclusions

If you have any doubts, we recommend the following video tutorial where you can follow step by step the development connected with watsonx.ai

🚀 "AI Agents: A Complete Guide to Developing and Deploying on watsonx.ai with IBM Cloud" 🚀🚀 "AI Agents: A Complete Guide to Developing and Deploying on watsonx.ai with IBM Cloud" 🚀

If you want to continue exploring these types of implementations or learn more about cloud development and artificial intelligence, we invite you to explore our AI courses.👇

IBM LinuxOne5

SIXE: Your partner specialized in LinuxONE 5

Can you imagine what it would be like to have a powerful infrastructure without paying proprietary licenses? Well… you can🥳 with LinuxONE 5

In an ever-evolving technology environment, choosing a critical infrastructure based on Linux and AI requires not only advanced technology, but also a partner that masters every technical and strategic layer. IBM LinuxONE Emperor 5 , powered by the IBM Telum II processor and its integrated AI accelerators are a milestone in security, performance and scalability. At SIXE , we are experts in designing, implementing and supporting IBM LinuxONE 5 solutions, combining our expertise in IBM technologies with our role as a strategic partner of Canonical, Red Hat and SUSE .

What is IBM LinuxONE 5?

IBM LinuxONE Emperor 5 is a next-generation platform designed for companies that need maximum levels of security, energy efficiency… as well as the ability to manage AI and hybrid cloud workloads. It includes new features such as:

  • IBM Telum II processor : With multiple on-chip AI accelerators, ideal for inference on co-located data.
  • Confidential Containers : Advanced protection for applications and data in multi-tenant environments.
  • Quantum-safe encryption : Preparing for future threats from quantum computing.
  • 99% availability : Architecture designed to minimize critical outages.
Features of IBM LinuxOne5 | SIXE Partner

This system is not just hardware: it is a comprehensive solution that integrates software, security and sustainability, positioning itself as an ally for complex digital transformations. In addition, with the advantage of opensource: not being dependent on licenses.

OpenSource and IBM experts

At SIXE, we are not intermediaries: we are certified engineers in IBM Power and open source technologies . Unlike large partners that outsource complex projects, at SIXE we lead each LinuxONE 5 implementation with an internal team specialized in:

  • IBM Power Hardware : Configuration and optimization of IBM LinuxONE Emperor 5 and Power10 (and future Power11) systems.
  • Operating Systems : Support for Red Hat Enterprise Linux (RHEL) SUSE Linux Enterprise Server (SLES) and Ubuntu.
  • AI and hybrid infrastructure : Integration of containers, Kubernetes and AI tools (such as IBM Watsonx) with LinuxONE 5.
  • Security and compliance : We are experts in IBM security audits and licensing.

What do we offer at SIXE to make you stay with us?

Large enterprises often treat LinuxONE 5 implementation projects as one-off transactions. At SIXE, we work closely with your technical teams to ensure that the solution is tailored to your specific needs. We offer you a differential:

  • Respond quickly to changes in requirements or architectures.
  • Maintain direct communication with systems managers.
  • Design migration plans from legacy (IBM i, AIX) to LinuxONE 5. You can see more details here.

Long-term relationships: Are you looking for a supplier or a strategic partner?

We don’t just work to close deals: we build lasting relationships. Once you’ve implemented LinuxONE Emperor 5, we’re still there for you. We offer technical support, training and upgrades , ensuring that your investment continues to generate long-term value.

Return on investment: SIXE is a safe investment.

At SIXE, every euro invested translates into real value . Without unnecessary layers of management or empty meetings, we focus resources on engineers and experts with more than 15 years of experience in IBM, Canonical and open source technologies. We are part of a global network of specialists recognized by leaders such as IBM and Canonical , which reinforces our ability to deliver exceptional results.

Not only LinuxONE 5

Although much of our business is focused on IBM solutions, we are also strategic partners of Canonical (Ubuntu), Red Hat and SUSE , as well as using technologies such as QRadar XDR . This diversity allows us to offer comprehensive solutions for your infrastructure.

Choosing SIXE as a partner for IBM LinuxONE 5 means betting on a human, technical and strategic approach. Don’t leave your critical infrastructure in the hands of intermediaries: trust a team that is as committed as you are to the success of your project.

👉 Find out more about our IBM LinuxONE 5 offering here.

Ready to transform your infrastructure with IBM LinuxONE 5 and SIXE? Contact us and let’s get started together.

¿ IBM i 7.6 o Ubuntu ?

IBM i 7.6 vs Ubuntu: analysis to choose (or combine) wisely

When it comes to IBM Power servers, many decisions seem like a battle between two worlds: the almost legendary robustness of IBM i 7.6 and the freedom of Ubuntu Linux. But what if the best choice is not one or the other, but both? In this article we cut to the chase: we tell you what no one else can explain clearly, without selling you smoke and mirrors, without marrying ourselves to a single approach. Just the technical truth, well told.


IBM i: a closed (but very efficient) fortress

If you’ve worked with IBM i, you know what we’re talking about: stability, performance and a database that won’t crash even if you throw a nasty core dump on it.

IBM i is not just an operating system, but an integrated platform: OS, database (Db2 for i), security, backups, virtualization and native HA (PowerHA, Db2 Mirror) in a single environment optimized for Power10. The integration of these layers avoids intermediate layers or dependencies between external tools.

Technical matters: IBM i runs on a microkernel that manages persistent objects on disk with a native object-oriented, non-file-based model. Its journaling system guarantees consistency even in the face of power outages, and allows remote journaling for DR replication without the need for snapshots.

IBM i 7.6 improves native SQL performance, strengthens security (with integrated multi-factor authentication and more object-level encryption), and enables more modern APIs (REST, OpenAPI, JSON), which allow traditional business logic (RPG, COBOL) to be exposed as microservices. At SIXE we already have an analysis of all the new features of IBM i. If you want to take a look , click here.


Ubuntu in Power: freedom, but with responsibilities

On the other hand, if you are from the Linux team, you already know what Ubuntu brings: DevOps ecosystem, containers, microservices and official Canonical support for Power for years, with optimized images for the ppc64le architecture.

Ubuntu is not plug-and-play like IBM i, but it doesn’t pretend to be either. You can deploy PostgreSQL, MongoDB, Redis, Apache Kafka, Ceph… you name it. And if you mount KVM (already integrated into PowerVM), you can use LXD, OpenStack or orchestrators like MAAS or Juju to manage the environment at scale.

Ubuntu or IBM i

But yes: there is no magic. You’ll have to build the stack yourself: HA with Pacemaker, backups, security with SELinux… And that implies having good Ansible playbooks or well-defined CI/CD pipelines. Nothing is done by yourself.

In HPC and AI, Ubuntu on Power is taking off strong: Power10 (and soon Power11) has brutal bandwidth, and with the upcoming IBM Spyre accelerator on the horizon, you can train models without relying on NVIDIA GPUs.


What about security?

This is where IBM i shines by design: the entire system is security-oriented. Each object has its own authority, with highly granular user profiles and an audit journal that logs everything that happens, without having to install and configure syslog-ng or ELK stack.

Ubuntu, on the other hand, has everything you need: ufw, auditd, encryption with LUKS, application-level protection with AppArmor or SELinux… but you have to integrate it manually and maintain it. A poorly patched Ubuntu environment is an easy target.

On IBM i, security patches are few and far between and controlled; on Ubuntu there are almost daily updates. That’s not a bad thing, but it requires well automated patch management processes.


Costs: beware of what looks cheap

Many people see Ubuntu and say “free!”. But not all that glitters is gold. On Power servers, the hardware is the same, and the operating cost can skyrocket if you don’t automate well or if you need to replicate services that IBM i comes ready to use.

IBM i has a more expensive license, yes. But you can do more with less staff. If your load is critical, stable and doesn’t vary every week, in the medium term TCO can play in your favor.


Modernization: Do I stay with RPG or switch to microservices?

If you have code in RPG, IBM i 7.6 lets you continue to use it… and even modernize it with REST APIs, Node.js or Python (via PASE). VS Code is also getting into the game and is gaining more traction so you can modernize and write code more easily.

Does your team prefer to work in containers, use CI/CD and deploy? Ubuntu. Nothing more to say.


Conclusion: one, the other… or both?

Sometimes it’s not a matter of choosing black or white. In many Power environments, what really works is combining the best of each world. Here are some recommendations:

Scenario Recommendation
You already have IBM i with RPG 💡 Follow and modernize from the inside
New apps in Power

🐧 Ubuntu with containers

Minimal downtime, no hassle 🛡️ IBM i + Db2
Total freedom 🧩 Ubuntu on Power
Reduce dependence on IBM in the future 🔄 Ubuntu with progressive migration
Mixed Linux + IBM i equipment

🐧🛢️Hybrid approach: back IBM i, front Ubuntu


What if I don’t want to choose?

Good question. In fact, many companies don’t. They use IBM i for critical and stable loads (billing, ERP, etc.), and Ubuntu for everything new: APIs, frontends, microservices, AI.

This hybrid approach gives you the best of both worlds: the reliability of IBM i, with the agility and ecosystem of Ubuntu.


What’s next?

If you are in doubt, in the middle of planning or directly with the licensing Excel open… in SIXE we help you to analyze your environment and design the most realistic way: either maintain, migrate or combine. Fill out the form here and we will contact you.

No smoke. No impossible promises. Only solutions that work (really) and face to face with our engineers.

ibm i 7.6 novedades

IBM i 7.6 | Everything you need to know about the latest version of IBM’s operating system

IBM i 7.6 will be available on April 18, 2025. IBM i is the latest evolution of IBM’s enterprise operating system, designed exclusively to run on IBM Power servers (which, by the way, we support). This version maintains the integrated platform philosophy that characterizes IBM i, but adds new features relevant to modern environments in security, availability and support for open source technologies.

In this article, we will explore all the new features, requirements and benefits of the latest IBM i 7.6 update.

Post in continuous update. On 10/04/2025 at the IBM webcast we will get all the details of IBM i 7.6 and update with news.

Click here to access the webcast of the day 10/04/2024

Whats new in IBM i 7.6Index

  1. News
  2. Requirements
  3. Licenses
  4. Life Cycle
  5. Linux or IBM i 7.6?
  6. IBM i 7.6 in 2025 and beyond?
An all-in-one system

IBM i 7.6 is much more than just an operating system: it integrates middleware, the Db2 for i database engine and a wide range of native tools for management, development and high availability. This means that, unlike models that require the integration of various components, with IBM i you have the advantage of a turnkey solution optimized for transactional workloads and legacy applications written in RPG or COBOL.

Main new features of IBMi 7.6

🛡️Safety as a fundamental pillar

  • Integrated multi-factor authentication (MFA):
    • Support for time-based one-time passwords (TOTP), such as Google Authenticator.
    • MFA available even without internet connection.
    • Extended protection for critical profiles such as QSECOFR.
    • Independent implementation for System Service Tools (SST) and Dedicated Service Tools (DST).
  • Protection of credentials and sensitive data:
    • New cryptographic APIs, such as PBKDF-2 and ECC/SHA3 algorithms.
    • Support for ASP 1 (Auxiliary Storage Pool) encryption.
    • Improvements in Digital Certificate Manager (DCM) to facilitate TLS certificate management.
  • Simplified regulatory compliance:
    • Advanced tools to comply with strict regulations, such as GDPR or HIPAA.

🧠 Improvement of Db2 for i

    • New SQL functionalities such as data-change-table-reference at UPDATE and DELETE
    • New table SQLSTATE_INFO for debugging SQL errors
    • Enhancement of DUMP_PLAN_CACHE with optional filters
    • Direct view of BLOB columns from ACS
    • SQL services for new auditing and security functions

💻 Development with Code for IBM i (VS Code)

    • Support for free and fixed RPG.
    • DDS compilation from Git.
    • Batch Debug and Service Exit Point support.
    • Integrated Db2 extension: SQL validation, editable results, hover help.
    • Integration with AI for code analysis and natural language queries.

It appears that Code for IBM i (VS Code) is displacing RDi as the tool of choice for the community.


☁️ High availability and disaster recovery ( HA/DR )

  • PowerHA expands its integration with IBM Cloud, offering new capabilities to replicate and protect data in the cloud:
    • Cloud replication:
      • Support for IASP Volume (LUN-Level) Switching and FlashCopy.
      • Full automation to minimize downtime.
    • Hybrid scalability:
      • Resilient design for hybrid environments (on-premises + cloud).
      • Ideal for companies seeking business continuity without investing in additional hardware.

🧰 Navigator for i: new interface and more control

    • Full support for MFA from Navigator.
    • License expiration view from the dashboard + expiration alerts.
    • Commands such as CFGHOSTSVR to manage unsecured connections.
    • More secure connection and system monitoring tools.

IBM i 7.6 requirements

Only compatible with IBM Power10 servers with firmware level FW1060 or higher.

    • IBM recommends using HMC v10 or higher.
    • Power9 is not officially supported for this release.
    • Requires updated VIOS and PowerVM.

💰IBMi 7.6 Licenses

IBM maintains the model by core in different levels (P05, P10…). The base license includes:

  • IBM i + Db2 + Navigator + PASE
  • Access to open source tools and integrated middleware
Licenses with additional costs:
    • PowerHA
    • Db2 Mirror
    • BRMS
    • RDi (if still in use)

Life Cycle

  • IBM i 7.6 will be supported until the middle of the next decade.

  • IBM i 7.4 enters the “fixes only” phase, with no new features.

  • IBM is committed to a release cycle every 3 years, and has been since 7.2


Ubuntu or IBM i 7.6?

It depends on what you are looking for:

  • Linux (Ubuntu, RHEL): modular, open, low initial cost, more specialized staff, but you need to integrate the whole stack yourself (OS, database, HA, security…).

  • IBM i 7.6: all integrated, excellent performance per core, embedded security, legendary stability, fewer technical staff required.

We will soon make an in-depth analysis of both OS, so stay tuned to our blog, because in these days we will be bringing you all the updated information on how to choose the best option for your company.


IBM i 7.6 in 2025 and beyond? Conclusions

Is IBMi 7.6 for you? Well…

  • ✔️ You use Power10
  • ✔️ You depend on RPG or Db2 for i
  • ✔️ You want maximum security without complications

➡️ Then IBM i 7.6 is for you.

At SIXE we can help you with:

Want to know if IBM i 7.6 is right for your company? Contact us and we will help you.

And if you are passionate about the world of IBM Power, for the inauguration of our web Dame Power, the IBM Power Hispanic Communitywe are giving away free WEBINARS.

The next one is on 04/24/2025 . We will inform you about news, tips and tricks of AIX 7.3.

We have limited places, so don’t think too much about it ;) Click here for more information about the webinars.

References

Webinars de IBM Power en Dame Power. Cursos de IBM i , AIX , Linux , Kubernetes

IBM Power 2025 Webinars: Learn for free with experts

Can you imagine finding solutions to your Linux, AIX, IBM i, etc… all in one?!🙀 Well, now it is possible thanks to Dame Power, the Spanish-speaking community of IBM Power.

At SIXE, we’re excited to be a part of the exclusive Dame Power webinars. A series of free sessions designed to help you dive deeper into the IBM Power ecosystem.

If you work with IBM i, AIX, Linux, PowerVM or Kubernetes, this is your opportunity to learn directly from experts and apply the knowledge in your projects. Discover the most innovative trends from experts, one-on-one.

📅 IBM Power 2025 WebinarsFree Webinars of IBM Power | AIX , IBM i , Linux , Kubernetes and more

Throughout the year, Dame Power will offer a series of webinars focused on key topics for IBM Power professionals:

Linux in Power: Truths, myths and tips to maximize your performance.
AIX 7.3: The evolution of modern UNIX and its impact on the enterprise.
KVM in PowerVM: Exploring new possibilities in virtualization.
Kubernetes on Power: Efficient container deployment and management.
IBM Power Security: Beyond marketing, real strategies to protect your systems.

Why join these webinars?

By attending these sessions, you will be able to:

✔️ Get practical troubleshooting tips for IBM i, AIX, Linux and more.
✔️ Discover trends in security, cloud, AI and edge computing.
✔️ Learn from IBM Champions working with Power on real-world cases.
✔️ Follow step-by-step advanced configurations and server optimization.

How to register for Dame Power webinars?

It’s easy! All you have to do is:

1️⃣ Click here to subscribe to the Dame Power Substack.
2️⃣ Check the welcome email, where you will find the registration form.
3️⃣ Once you fill it out, you will receive the date, time and link to access the webinar. Access the webinars at this link.
4️⃣ Join, ask questions and boost your knowledge.

🎁 Additional benefits for attendees

If you register for these webinars, you will also gain access to:

🎓 Exclusive discounts on SIXE courses.
📄 Premium content: Offline access to webinars.
🤝 Community: Be part of the largest group of IBM Power experts in Spanish.

Get ready to learn #FullOfPower.

These webinars are more than just lectures: they are a real opportunity to improve your skills, connect with experts and apply new knowledge in your day-to-day work.

📢 Share this event so that other IT teams can benefit from this knowledge.

ML en sixe

How to implement an ML architecture without failing in the attempt

📌 Are you interested in automation, AI, etc? You are in the right place. At SIXE we are going to tell you how to set up a ML architecture avoiding the most common mistakes.

Machine Learning (ML) is no longer the future, it is the present. Companies from all sectors are betting on artificial intelligence to improve processes, automate tasks and make smarter decisions.

But here comes a reality check that you may not want to hear.

Most ML project models fail

🔴 80% of ML models never make it to production.
🔴 6% of companies are investing in training their team in AI.
🔴 Many infrastructures are not ready to scale ML projects.

And therein lies the problem. It’s not enough to have powerful AI models if the infrastructure they run on is a shambles. If your architecture is not scalable, secure and efficient, your ML project is doomed to failure.

Here’s how to avoid these mistakes and design a Machine Learning infrastructure that really works.


Stop reinventing the wheel: use what you already have

One of the most common mistakes is to think that you need a completely new infrastructure to implement ML. False.

Many companies already have underutilized resources that they can leverage for Machine Learning:

GPUs with spare capacity (often only used for graphics tasks).
Underutilized servers that can be assigned to ML workloads.
Access to public clouds that could be better optimized.

📌 Exclusive advice from SIXE: Big companies will sell you that you need to buy and buy. A efore spending on more hardware or hiring more, analyze what you can optimize within what you already have. If you don’t know how, we can do it for you.. We perform audits to make your infrastructure greener and make the most of your resources. Spend less, produce more.


GPUs: Are you taking advantage of them?

Here’s a bombshell: More than 50% of GPUs in enterprises are underutilized.

Yes, they bought powerful hardware, but they are not using it efficiently. Why?

❌ They do not have GPU management tools.
❌ GPUs are assigned to projects that don’t even need them.
❌ Capacity is wasted due to lack of planning.

📌 Solutions you can apply TODAY:

✅ Implements a job manager and GPU scheduler.
✅ Use Kubernetes to orchestrate ML models efficiently.
✅ Adopt a workload scheduler.

If you are thinking of buying more GPUs because “there is not enough capacity”, do an audit first. It is quite possible that you can free up resources and delay purchases. In many cases, it is possible to free up resources and delay purchases by optimizing existing infrastructure. Systems such as AIX, Linux, IBM i, RHEL, SUSE may have untapped capacity that can be reallocated with technical adjustments. At SIXE we audit all these systems to identify opportunities for improvement without the need to change hardware, prioritizing efficiency over investment.


If you do not automate you are living in the past.

The lack of standardization in ML is a serious problem. Each team uses different tools, processes are not replicable and everything becomes chaotic.

This is where MLOps comes in.

MLOps is not just a term bandied about lately, it is a necessity for ML models to move from the experimentation phase to production without headaches.

📌 Benefits of MLOps:

Automates repetitive tasks (validation, deployment, security).
Reduces human errors in model configuration and execution.
Improves reproducibility of experiments.

If you don’t have a clear MLOps strategy, your team will end up doing the same work over and over again. We recommend you train your team on MLOps to stop wasting time on repetitive tasks. At SIXE, we understand the challenge of ML and we offer a MLOps course with Ubuntu Linux designed to help you implement efficient and scalable workflows.


Hybrid cloud: The perfect balance between cost and flexibility

The eternal debate between public and private cloud has generated more than one headache in companies. Should you opt for the agility of the public cloud or prioritize the control and security of a private cloud? The good news is that you don’t have to choose. There is an in-between solution that combines the best of both worlds: the hybrid cloud.

Public cloud only: Can be costly and raises security concerns.
Private cloud only: Requires investment in hardware and maintenance.

🔹Use the public cloud for quick experiments and initial testing.
🔹Migrate models to private cloud when you need more control and security.
🔹Make sure your infrastructure is portable to move between clouds, avoiding environment incompatibility.

Thanks to the ability to seamlessly interconnect between environments, the hybrid cloud eliminates vendor lock-in and optimizes operational costs. A hybrid architecture gives you the best of both worlds: agility to innovate and stability to scale.


ML Security: Don’t wait until it’s too late

Many people think about security when it is already too late. An attack on your ML models or a data breach can have disastrous consequences.

Best practices to protect your ML infrastructure:

Perform at least one annual security audit of your infrastructure.
Implement strong authentication and identity management.
Encrypt data before using it in ML models.

Remember: Security is never enough. The more “layers” of security you have, the less likely you are to be in the news for a data breach ;)


Training: Without a trained team, how will you manage your infrastructure?

AI and ML are constantly evolving. If your equipment is not upgraded, it will be left behind.

🔹 Training in MLOps workshops.
🔹 Internal learning. Foster a culture of continuous learning within your organization through mentoring, collaborative documentation and practical sessions.

💡 At SIXE we offer MLOps training to help companies build scalable and efficient architectures. If your team needs to get up to speed, we can adapt to your company’s specific needs.


Don’t waste hours chasing an error

If your ML infrastructure fails and you don’t have monitoring, you ‘re going to spend hours (or days) trying to figure out what happened.

📊 Essential tools for observability in ML:

Real-time dashboards for model and hardware monitoring.
Automatic alerts to detect problems before they become critical.
Detailed logs for process traceability and error resolution.

If you don’t have full visibility over your infrastructure, sooner or later you will have problems.


Conclusion

Building a scalable and efficient architecture for Machine Learning is not just a technical challenge, but a change of mindset. Leverage your current resources, optimize the use of GPUs and adopt MLOps to automate key processes.

Do you want to design an ML architecture that really works? We can help you.

👉 Contact us and we will help you create a scalable, secure and AI-optimized infrastructure.

IBM Power11: everything we know so far

Constantly updated post (based exclusively on SIXE’s opinions and expectations)

The evolution of Power architecture has always sparked curiosity and debate in our community. While IBM strives to balance innovation with market demands in each new generation, results haven’t always met expectations. Now, with Power11 on the horizon, we explore its potential and the lessons IBM might have learned. Plus, discover our “wishlist” for Power11 (if dreams came true…🙄).

Which models might be released?

We expect, as with Power10, 1, 2, 4 and up to 16 socket models. With equivalents to the S1012, S1022, S1024, E1050 or E1080, these future models will be unveiled soon, along with rPerf metrics to understand equivalence to current models and those they will replace

Since 2010, each Power generation has adapted to shifting markets. Today, with competitors like DeepSeek and optimized AI chips, new inference options are emerging—reducing reliance on NVIDIA GPUs. A prime example? The confirmed integration of IBM’s Spyre Accelerator.

Why is the IBM Spyre accelerator important?

Image of the spyre coprocessor Everything we know about IBM Power11

IBM Spyre Accelerator

Designed for AI workloads, this component could revolutionize generative AI and complex model processing. From modernizing RPG code to enhancing DB2 with AI, and supporting Open Source on ppc64le (Linux on Power) and HPC, its versatility stands out. Notably, Power’s bandwidth between processors, memory, and accelerators could outperform x86/ARM systems at a fraction of the cost of high-end NVIDIA GPUs. Its final impact will depend on IBM’s implementation and real-world benchmarks.

Power11 processor innovations

Power11 delivers three key upgrades:
Higher clock speeds and 25% more cores per chip than Power10.
Enhanced reliability, power efficiency, and quantum security (building on Power10’s foundation).

Innovation in processor manufacturing technologies

Power11 leverages Integrated Stacked Capacitor (ISC) technology and improved cooling systems (heat sinks, fans). Together, these boost core density and computational power while optimizing energy use.

DDR5 memory: Better performance

Thnks to DDR5 support, Power11 gains higher bandwidth and efficiency. Importantly, not just a Power11 feature: DDR5 also works with Power10 (and possibly DDR4), allowing memory reuse from older systems. Looking ahead, DDR6 integration in future Power servers could push performance even further.

What role does KVM play in Power11?

Virtualization is critical, and Power11’s KVM integration strengthens its Linux compatibility. Since Power10, KVM has operated within PowerVM, enabling hybrid environments (e.g., mixing Power nodes in OpenStack). While KVM doesn’t replace PowerVM (IBM’s free, feature-rich hypervisor), it offers flexibility for Linux-native tools like Canonical’s LXD. We’ve covered this in depth before.

Conclusion

Power11 isn’t just hardware—it’s IBM’s chance to reconnect with its community. By blending cutting-edge tech with openness, IBM could deliver a versatile platform for today’s flexible, innovation-driven market. If IBM successfully balances these innovations with market demands, Power11 could be a major turning point.

Want to transform your infrastructure with Power? At SIXE, we specialize in Power systems—whether you’re migrating or optimizing existing setups.

SIXE