> For the complete documentation index, see [llms.txt](https://docs.liman.dev/baslangic/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.liman.dev/baslangic/kurulum/oracle-linux-rhel-based-8.x-sunucu.md).

# Oracle Linux (RHEL based) 8.x Sunucu

### 1. PHP 8.4'in Etkinleştirilmesi

PHP'nin 8.4 sürümü için gerekli depolar eklenir ve sürüm etkinleştirilir.

```bash
sudo dnf install dnf-utils http://rpms.remirepo.net/enterprise/remi-release-8.rpm -y
yum module reset php -y
yum module enable php:remi-8.4 -y
```

### 2. Postgresql-15'in Etkinleştirilmesi

Postgresql-15 sürümü için gerekli depolar eklenir ve sürüm etkinleştirilir.

```bash
sudo dnf install https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm -y
yum module reset postgresql -y
yum module enable postgresql:15 -y
```

### 3. Kurulumun Gerçekleştirilmesi

Liman paketini indirebilmek için Açıklab deposundan indirilir.

```bash
curl -fsSL https://rpm.nodesource.com/setup_20.x | sudo bash -
yum install -y nodejs

sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -y
wget https://github.com/limanmys/core/releases/download/release.master.1064/liman-2.2.1-1064.deb -O liman.rpm
```

Paketler güncellenir ve liman paketi kurulur.

```bash
sudo yum update -y
sudo yum install ./liman-2.2.1-1064.rpm -y
```

### 4. Ek Yapılandırmalar Yapılır

LDAP sertifikalarını etkinleştirmek için aşağıdaki komut çalıştırılır. Aksi halde domain entegrasyonlarında bağlantı hatası alınacaktır.

```bash
file=/etc/openldap/ldap.conf; grep -q '^TLS_REQCERT' $file && sed -i 's/^TLS_REQCERT.*/TLS_REQCERT allow/' $file || echo 'TLS_REQCERT allow' >> $file
```

### 5. Yönetici Parolasının Oluşturulması

Kurulum sonrasında ilk yapılması gereken Yönetici parolası oluşturmak. Bunun için aşağıdaki komutlar ile sudo yetkili kullanıcı ile yönetici hesabı oluşturulur:

```bash
sudo limanctl administrator
```

Bu adım sonunda karşınıza liman web arayüzünden giriş yapacağınız kullanıcı adı ve parolanız çıkacaktır. Liman'ı kurduğunuz sunucunun ip adresini web tarayıcınız üzerine yazıp bu bilgiler ile giriş yaparsanız Liman'ın Web arayüzüne giriş yapmış olacaksınız.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.liman.dev/baslangic/kurulum/oracle-linux-rhel-based-8.x-sunucu.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
